@font-face {
  font-family: "Satoshi-Variable";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2"),
    url("../fonts/Satoshi-Variable.woff") format("woff");
  font-weight: 300 900;
}

:root {
  --body-font-family: "Poppins", sans-serif;
  --heading-font-family: "Satoshi-Variable";
  --body-font: 16px;
  --small-text: 14px;
  --large-text: 1.75rem;
  --medium-text: 1.5rem;
  --padding-tb-small: 60px;
  --padding-tb-medium: 120px;
  --padding-tb-large: 150px;
  --white-color: #ffffff;
  --black-color: #000000;
  --light-color: #fff4f0;
  --dark-color: #1a1a1a;
  --grey-color: #767676;
  --light-grey-color: #d9d9d9;
  --misty-rose-color: #fddfd5;
  --hot-pink-color: #f27aa7;
  --plum-color: #dfa5d7;
  --lavender-blush-color: #e0d0eb;
  --alice-blue-color: #c8ddf8;
  --royal-blue-color: #4c60ff;
  --gradient-01: linear-gradient(to right,
      var(--plum-color) 0%,
      var(--royal-blue-color) 100%);
  --gradient-02: linear-gradient(90deg,
      var(--alice-blue-color),
      var(--plum-color),
      var(--hot-pink-color),
      var(--lavender-blush-color),
      var(--misty-rose-color),
      var(--alice-blue-color));
  --gradient-03: linear-gradient(var(--misty-rose-color) 0%,
      var(--light-color) 72%,
      var(--white-color) 100%);
  --gradient-04: linear-gradient(to right,
      var(--hot-pink-color),
      var(--royal-blue-color));
  --gradient-05: linear-gradient(150deg,
      rgba(200, 221, 248, 0.6) -20%,
      rgba(255, 255, 255, 0.6) 60%);
  --box-shadow-01: 0px 0px 6px var(--plum-color),
    inset 0px 0px 6px var(--royal-blue-color);
  --box-shadow-blue: 0px 0px 60px 0px rgb(76 96 255 / 20%);
  --gradient-border: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, var(--hot-pink-color) 0%, #FFFFFF 50%, var(--hot-pink-color) 100%) border-box;
  --gradient-border-hover: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, var(--royal-blue-color) 0%, var(--hot-pink-color) 50%, var(--royal-blue-color) 100%) border-box;
  --td-3s: all 0.3s ease-in-out;
  --td: all 0.5s ease-in-out;
}

/** Start Global CSS Properties  **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

html,
body,
p,
li {
  font-weight: 400;
  font-family: var(--body-font-family);
  font-size: var(--body-font);
  line-height: 26px;
  color: var(--grey-color);
}

body {
  overflow-x: hidden;
}

h1 {
  font-size: 3.125rem;
  margin-bottom: 0;
  color: var(--white-color);
  font-family: var(--heading-font-family);
  line-height: 4.25rem;
  font-weight: 700;
}

h2 {
  font-size: 2.625rem;
  color: var(--royal-blue-color);
  margin-bottom: 48px;
  font-family: var(--heading-font-family);
  line-height: 3.125rem;
  font-weight: 700;
}

h3,
article h2 {
  font-size: 1.875rem;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  line-height: 2.625rem;
}

h4,
article h3 {
  font-size: 1.75rem;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  line-height: 2.625rem;
  font-weight: 700;
}

h5,
article h4,
.heading-5 {
  font-size: 1.5rem;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  line-height: 2.125rem;
  font-weight: 400;
}

h6 article h5 {
  font-size: 1rem;
  color: var(--black-color);
  font-family: var(--heading-font-family);
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--td);
}

a:hover {
  color: var(--royal-blue-color);
}

ul,
ol,
figure {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section,
article,
main {
  position: relative;
  z-index: 1;
  background: var(--white-color);
}

.large-text,
.large-text p {
  font-family: var(--heading-font-family);
  font-size: var(--large-text);
  line-height: 2.625rem;
  color: var(--dark-color);
}

.medium-text p {
  font-family: var(--heading-font-family);
  font-size: var(--medium-text);
  line-height: 2.125rem;
  color: var(--dark-color);
}

.contact-hero .icon-box a {
  color: var(--white-color);
}

.sticky-md-top {
  top: 150px;
}

.gradient-border {
  border: 1px solid transparent;
  background: var(--gradient-border);
}

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

.misty-rose-bg {
  background: var(--misty-rose-color);
}

.lavender-blush-bg {
  background: var(--lavender-blush-color);
}

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

.alice-blue-bg {
  background: var(--alice-blue-color);
}

section:has(+ .footer-top),
section:has(+ .footer-top-new) {
  padding-bottom: var(--padding-tb-medium);
}

.points li,
article li:not(.blog article li,
  .archive article li,
  .category article li,
  .single-footer li) {
  list-style: inherit;
  margin: 0 0 15px 15px;
  color: var(--grey-color);
  padding-left: 10px;
}

.points li a {
  color: var(--grey-color);
}

.points li a:hover {
  color: var(--dark-color);
}

.points li::marker,
article li:not(.blog article li,
  .archive article li,
  .category article li,
  .single-footer li)::marker {
  content: "\2B24 ";
  color: var(--hot-pink-color);
}

.team-members+section:not(.footer-top),
.industry-list+section:not(.footer-top),
.service-details-list+section:not(.footer-top),
.teampic-wrapper+section:not(.footer-top),
.fetured-img+section:not(.footer-top),
.points-list[style*="background"]+section:not(.footer-top),
.agency-logos-slider+section:not(.footer-top),
.horizontal-scrolling-cards+section:not(.footer-top),
.services-hvac-sec+section:not(.footer-top),
.wp-block-image+section:not(.footer-top) {
  padding-top: var(--padding-tb-medium);
}

section:has(+ .team-members),
section:has(+ .industry-list),
section:has(+ .service-details-list),
section:has(+ .teampic-wrapper),
section:has(+ .fetured-img),
section:has(+ .points-list[style*="background"]),
section:has(+ .agency-logos-slider),
section:has(+ .horizontal-scrolling-cards),
section:has(+ .services-hvac-sec),
section:has(+ .wp-block-image) {
  padding-bottom: var(--padding-tb-medium);
}

.white-hero {
  background: var(--white-color) !important;
}

.white-hero p,
.white-hero h1 {
  color: var(--dark-color) !important;
}

.light-font p,
.light-font a,
.light-font h2,
.light-font li {
  color: var(--white-color) !important;
}

/** End Global CSS Properties  **/
/** Start Animation Property **/
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes scroll-gradient {
  0% {
    background-position: 200% 0%;
  }

  100% {
    background-position: 0% 0%;
  }
}

@keyframes move-vertical-hover {
  0% {
    transform: translateY(0);
  }

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

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

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

@keyframes move-vertical-out {
  0% {
    transform: translateY(0);
  }

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

  50.1% {
    transform: translateY(-100px);
  }

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

/** End Animation Property **/
/** Start Forms Property **/
input::-webkit-input-placeholder {
  color: var(--light-grey-color) !important;
}

input::-moz-placeholder {
  color: var(--light-grey-color) !important;
}

input::-ms-input-placeholder {
  color: var(--light-grey-color) !important;
}

input:-moz-placeholder {
  color: var(--light-grey-color) !important;
}

input:not(input[type="button"], input[type="submit"]) {
  border: 1px solid var(--light-grey-color);
  border-radius: 60px !important;
  padding: 15px 30px;
}

/** End Forms Property **/
/** Start Buttons Property **/
.btn,
button,
input[type="button"],
input[type="submit"],
.nav-btn a {
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 60px !important;
  background: var(--gradient-01);
  transition: var(--td);
  position: relative;
  border: 0;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.nav-btn a:hover {
  box-shadow: 0px 0px 16px var(--plum-color),
    0px 0px 16px var(--royal-blue-color);
  color: var(--white-color);
}

.btn:focus {
  box-shadow: none;
}

.btn-full-width {
  width: 100%;
}

.outline-btn,
.nav-outline-btn a,
.mailerlite-subscribe-submit {
  color: var(--royal-blue-color);
  background: transparent;
}

.outline-btn:before,
.nav-outline-btn a::before,
.mailerlite-subscribe-submit:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 100px;
  background: var(--gradient-01);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.outline-btn:hover,
.nav-outline-btn a:hover,
.mailerlite-subscribe-submit:hover {
  box-shadow: var(--box-shadow-01);
  color: var(--royal-blue-color);
}

.white-btn {
  background: var(--white-color);
  color: var(--royal-blue-color);
}

.white-btn:hover {
  color: var(--royal-blue-color);
}

.plain-btn {
  padding: 10px 0px;
  border-bottom: 2px solid;
  background: var(--gradient-01);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--td);
  border-image: linear-gradient(to right, transparent 0%, transparent 100%) 1;
}

.plain-btn:hover {
  border-image: var(--gradient-01) 1;
  box-shadow: none;
}

i.icon-btn {
  background: var(--lavender-blush-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  min-height: 36px;
  min-width: 36px;
  transition: all 0.5s linear;
}

i.icon-btn:before {
  color: var(--white-color);
}

a:hover i.icon-btn,
i.icon-btn:hover {
  background: var(--gradient-04);
}

/** End Buttons CSS Property **/
/*Start mouse cursor animation CSS effect property*/
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: var(--black-color);
  pointer-events: none;
  will-change: transform;
  filter: invert(1);
  mix-blend-mode: difference;
  animation: pulse 2.5s linear infinite;
}

.small {
  width: 10px;
  height: 10px;
  z-index: 999;
  transition: transform 0.1s ease-out;
  top: 26px;
}

.large {
  width: 20px;
  height: 20px;
  z-index: 999;
  transition: transform 0.2s ease-out;
}

.hovered-small {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid var(--black-color);
  top: 10px;
  left: -25px;
}

.hovered-large,
.hero-large {
  width: 0px;
  height: 0px;
}

.hero-small {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  filter: invert(0);
  mix-blend-mode: normal;
  top: -50px;
  left: -150px;
}

/*End mouse cursor animation CSS effect property*/
/** Start Social Media Links CSS Property **/
.social-media-links {
  display: flex;
  column-gap: 20px;
  justify-content: end;
}

.social-media-links li a {
  font-size: 24px;
}

.social-media-links li a i:before {
  transition: var(--td);
  color: var(--dark-color);
}

.social-media-links li a i.icon-instagram .path1:before {
  color: var(--dark-color);
}

.social-media-links li a[href*="linkedin"]:hover i:before {
  color: #0077b5;
}

.social-media-links li a[href*="facebook"]:hover i:before {
  color: #1877f2;
}

.social-media-links li a[href*="x"]:hover i:before,
.social-media-links li a[href*="twitter"]:hover i:before {
  color: #000000;
}

.social-media-links li a[href*="instagram"]:hover .path1 {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/** End Social Media Links SS Property **/
/** Start Header CSS Property **/
header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 99;
}

header nav {
  width: 100%;
  padding: 18px 48px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .main-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  align-items: center;
}

header .main-nav li {
  padding-right: 24px;
  margin-bottom: 0;
}

header .main-nav li.current-menu-item>a {
  color: var(--royal-blue-color);
}

header .main-nav li:nth-last-child(-n + 2) {
  padding-right: 0;
}

header.sticky-menu {
  position: fixed;
  animation: slideDown 0.5s ease-out;
  top: 20px;
}

header .hamburger div {
  width: 26px;
  height: 2px;
  background: var(--dark-color);
  border-radius: 50px;
  margin: 5.5px;
  transition: all 0.3s ease;
}

header .hamburger {
  display: none;
}

header .toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

header .toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

header .toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/** End Header CSS Property **/


/** Start Footer CSS Property **/
footer {
  background: var(--white-color);
  padding-top: 70px;
  color: var(--dark-color);
  /* position: sticky;
  left: 0;
  bottom: 0; */
}

footer :where(p, li, a, span) {
  color: var(--dark-color);
}

@media (min-width: 575px) {
  footer .footer-nav {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

.footer-nav li a {
  padding: 5px 0px;
  display: block;
}

.body-text-semibold {
  font-size: var(--body-font);
  font-weight: 600;
  line-height: 162%;
  margin-bottom: 0;
}

.footer-contact-info .title {
  text-align: right;
}

.footer-contact-info li a,
.footer-contact-info li span {
  padding: 5px 0px;
  display: block;
}

.mailerlite-form-field label {
  margin-bottom: 18px;
  font-weight: 600;
  display: none !important;
}

.subscriber-form .input-group {
  gap: 15px;
}

.second_footer {
  margin-top: 50px;
  border-bottom: 1px solid var(--light-grey-color);
}

.footer-logo {
  padding: 0 5%;
}

.copyright_footer {
  padding: 24px 0;
}

footer .mailerlite-form .mailerlite-form-inputs {
  display: flex;
  align-items: end;
  gap: 20px;
}

footer .mailerlite-form .mailerlite-form-inputs .mailerlite-form-field {
  display: inline-block;
  margin: 0;
  width: 100%;
}

footer .mailerlite-form .mailerlite-form-inputs input {
  width: 100%;
  display: block;
}

footer .mailerlite-form .mailerlite-form-title,
footer .mailerlite-form .mailerlite-form-description {
  text-align: center;
}

.mailerlite-subscribe-button-container {
  width: 50%;
}

.mailerlite-form-error {
  margin-bottom: -35px;
  padding-top: 10px;
}

footer .ftr-logos-row {
  margin: clamp(30px, 3vw, 64px) 0;
  text-align: center;
}

footer .promotion_block {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-grey-color);
  display: flex;
  align-items: center;
}

footer .promotion_block p {
  margin-bottom: 0;
}

footer .promotion_block .plain-btn {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 !important;
  margin-left: 0.5rem;
}

footer .add-block {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 100%;
  gap: 1rem;
}

footer .add-block a {
  display: inline-block;
}

footer .add-block img {
  width: 115px;
  /* filter: invert(1); */
  transition: var(--td-3s);
}

footer .add-block:hover img {
  animation: airLogo 0.5s linear;
}

footer .add-block p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #0A2342;
  font-family: var(--heading-font-family);
  font-weight: 400;
}

footer .add-block p span {
  line-height: 1;
}

.hvac-footer-row .Col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding-left: 50px;
}

.hvac-footer-row h3 {
  position: relative;
}

.hvac-footer-row h3 i {
  position: absolute;
  top: 5px;
  left: -45px;
}

.hvac-footer-row h3 i::before {
  color: var(--black-color);
}

.hvac-footer-row a {
  display: table;
}


@media only screen and (max-width: 1200px) {
  .mailerlite-form:has(.mailerlite-form-error) .mailerlite-subscribe-button-container {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding-top: var(--padding-tb-medium);
  }

  .hvac-footer-row h3 i {
    left: -35px;
  }
}

@media only screen and (max-width: 575px) {
  footer .mailerlite-form .mailerlite-form-inputs {
    flex-direction: column;
  }

  .mailerlite-subscribe-button-container {
    width: 100%;
  }
}

/** End Footer CSS Property **/
/** Start Case Study Hero CSS Property **/
.case-study-hero {
  background: var(--black-color);
  min-height: 650px;
  padding: var(--padding-tb-medium) 0;
  align-content: center;
  text-align: center;
}

.case-study-hero .content-box {
  margin-bottom: 50px;
  text-align: left;
}

.case-study-hero .content-box .btn {
  float: right;
}

.case-study-hero .content-box p {
  color: var(--white-color);
  margin: 30px 0 0;
}

.case-study-hero .container {
  margin-top: 60px;
}

.case-study-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  background: var(--gradient-02);
  background-size: 200%;
  animation: scroll-gradient 6s linear infinite;
}

.case-study-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 100%;
  background: var(--gradient-02);
  background-size: 200%;
  animation: scroll-gradient 6s linear infinite;
  filter: blur(36px);
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .case-study-hero .content-box .btn {
    float: none;
  }
}

/** End Case Study Hero CSS Property **/
/** Start Case Study Meta CSS Property **/
.case-study-meta {
  padding: var(--padding-tb-small) 0;
}

.case-study-meta .meta-list {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-color);
  row-gap: 20px;
}

.case-study-meta .meta-item {
  display: flex;
  column-gap: 10px;
  align-items: start;
}

@media only screen and (max-width: 991px) {
  .case-study-meta .meta-list {
    padding-bottom: 40px;
  }
}

/** End Case Study Meta Property **/


/** Start Blogs List CSS Property **/
.blog-hero {
  background: var(--black-color);
  min-height: 500px;
  padding: var(--padding-tb-medium) 0;
  align-content: center;
  text-align: center;
}

.blog-hero .container {
  margin-top: 60px;
}

.blog-hero h1 {
  margin-bottom: 30px;
}

.blog-hero a {
  color: var(--white-color);
  margin-bottom: 20px;
  display: block;
  transition: var(--td);
}

.blog-hero a:hover {
  color: var(--royal-blue-color);
}

.blog-hero p {
  color: var(--white-color);
  margin: 0;
}

.blog-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  background: var(--gradient-02);
  background-size: 200%;
  animation: scroll-gradient 6s linear infinite;
}

.blog-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 100%;
  background: var(--gradient-02);
  background-size: 200%;
  animation: scroll-gradient 6s linear infinite;
  filter: blur(36px);
  opacity: 1;
}

.custom-pagination {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
}

.custom-pagination li a,
.custom-pagination li:has(:not(.custom-pagination li a)) {
  display: block;
  padding: 8px 16px;
  min-width: 40px;
  text-align: center;
  border-radius: 5px;
  transform: var(--td);
}

.custom-pagination li:hover a,
.custom-pagination li:has(:not(.custom-pagination li a)) {
  background: var(--royal-blue-color);
  color: var(--white-color);
}

/**/
.blogs-list {
  padding: var(--padding-tb-small) 0;
}

.blog .blogs-list,
.archive .blogs-list,
.category .blogs-list {
  padding: var(--padding-tb-medium) 0;
}

.blogs-list .posts-element>.row {
  row-gap: var(--padding-tb-small);
  margin: var(--space-48) 0;
  --bs-gutter-x: 2.25rem;
}

.blogs-list .posts-element>.row [class*="col-"] {
  position: relative;
}

@media (min-width: 768px) {
  .blogs-list .posts-element>.row [class*="col-"]:not(:last-child):after {
    content: "";
    width: 1px;
    height: calc(100% - 45px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(76, 96, 255, 0.1) 40%, #4C60FF 100%);
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (min-width: 992px) {
  .blogs-list .posts-element>.row [class*="col-"]:nth-child(3n):after {
    display: none;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .blogs-list .posts-element>.row [class*="col-"]:nth-child(2n):after {
    display: none;
  }
}

.blogs-list .title-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* .blogs-list .title-element h2 {
  margin: 0;
} */

.blogs-list .post-item .post-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  /* background-color: #e5d0e5; */
  background: linear-gradient(145deg, #ddc7dd 0%, transparent 30%);
}

.blogs-list .post-item img {
  width: 100%;
  mix-blend-mode: multiply;
  transition: var(--td);
}

.blogs-list .post-item:hover img {
  transform: scale(1.05);
}

.blogs-list .post-content {
  padding: 20px 0;
  padding-bottom: 0;
}

.blogs-list .post-item h5 {
  /* padding-bottom: 15px; */
  margin-bottom: 16px;
  /* border-bottom: 1px solid var(--grey-color); */
  /* min-height: 120px; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: var(--td);
}

.blogs-list .entry-meta-list {
  display: flex;
  justify-content: space-between;
}

.blogs-list .entry-meta-list,
.blogs-list .entry-meta-list a {
  color: var(--grey-color);
  font-size: var(--small-text);
}

.blogs-list .entry-meta-list a:hover,
.blogs-list .post-item:hover h5 {
  color: var(--royal-blue-color);
}

.blogs-list .post-Category {
  color: var(--royal-blue-color);
  font-size: var(--small-text);
  transition: var(--td);
}

.blogs-list .post-item:hover .post-Category {
  color: var(--black-color);
}

/** Start Blogs List CSS Property **/
/** Start Blogs Single CSS Property **/
.blog-hero:has(+ .post-single-page) {
  min-height: 700px;
}

.blog-hero:has(+ .post-single-page) .content-box {
  margin-top: -100px;
}

.post-single-page .post-thumbnail {
  margin-top: -150px;
}

.post-single-page .post-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.post-single-page .article-body-container {
  padding: var(--padding-tb-small) 0;
}

.post-single-page .article-body-container :where(p, li, li a:not(:hover)),
.post-single-page .article-body-container .rank-math-answer {
  color: var(--black-color);
  font-size: 17px;
}

.post-single-page .article-body-container li::marker {
  content: initial;
  color: initial;
}

.post-single-page ul ul,
.post-single-page ul ol,
.post-single-page ol ol,
.post-single-page ol ul {
  margin-top: 10px;
}


.post-single-page .single-meta {
  padding: var(--padding-tb-small) 0;
  border-top: 1px solid var(--grey-color);
}

.post-single-page .single-meta li {
  list-style: none;
  margin: 0;
}

.post-single-page .single-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.post-single-page .single-post-autor {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.post-single-page .single-post-autor img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.post-single-page .single-post-autor h5 {
  font-weight: 600;
}

.post-single-page .single-post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-single-page .single-post-tags-list li a {
  border: 1px solid var(--royal-blue-color);
  font-size: var(--small-text);
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--royal-blue-color);
  display: block;
}

.post-single-page .single-post-tags-list li a:hover {
  background: var(--royal-blue-color);
  color: var(--white-color);
}

.single-post-nav {
  padding: var(--padding-tb-small);
  background: var(--light-color);
}

.single-post-nav .post-nav {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.single-post-nav .post-nav a {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  max-width: 360px;
}

.single-post-nav .post-nav .post-next-nav {
  text-align: right;
}

.single h2,
.single h3,
.ng-default_template h2,
.ng-default_template h3,
.ng-default_template h4,
.ng-default_template h5 {
  margin-bottom: 15px;
  margin-top: 30px;
}

.wp-block-image img {
  width: 100%;
}

/* .blog .blogs-list:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--gradient-02);
  background-size: 200%;
  animation: scroll-gradient 6s linear infinite;
} */

/** End Blogs Single CSS Property **/
/** Start Error Page CSS Property **/
.error-404 {
  padding: var(--padding-tb-large);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-404 .page-content {
  text-align: center;
}

.error-404 .page-content img,
.error-404 .page-content p,
.error-404 .page-content h1 {
  margin-bottom: 30px;
  color: var(--white-color);
}

/** End Error Page CSS Property **/
@media only screen and (max-width: 1199px) {
  :root {
    --padding-tb-small: 40px;
    --padding-tb-medium: 80px;
  }

  html {
    font-size: 15px;
  }

  h2 {
    margin-bottom: 30px;
  }

  .cursor {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  :root {
    --body-font: 14px;
    --large-text: 1.375rem;
    --padding-tb-small: 30px;
  }

  .container {
    max-width: 90%;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 2rem;
  }

  h5 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .large-text,
  .large-text p {
    line-height: 2.325rem;
  }

  header nav {
    padding: 16px 28px;
  }

  .btn:not(.plain-btn) {
    padding: 12px 20px;
  }

  body:has(header .main-nav.open) {
    overflow: hidden;
  }

  .cursor {
    display: none;
  }

  .sticky-md-top {
    top: 0px;
  }

  header .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  header .main-nav {
    position: fixed;
    left: 0px;
    top: 0px;
    background: var(--white-color);
    height: 0;
    width: 100%;
    flex-direction: column;
    display: none !important;
    z-index: -2;
    padding: 100px 40px 40px;
    border-radius: 20px;

    transition: var(--td);
  }

  header .main-nav.open {
    display: flex !important;
    opacity: 1;
    height: fit-content;
  }

  header .main-nav li:not(.nav-btn) {
    padding-right: 0px;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid var(--light-grey-color);
  }

  header .main-nav li a:not(.nav-btn a) {
    font-size: var(--large-text);
    display: block;
    padding: 20px 40px 20px 0px;
    transition: all 0.5s ease;
    transition-delay: calc(0.2s * var(--i, 1));
  }

  header .main-nav li.nav-btn {
    width: 100%;
  }

  header .main-nav li.nav-btn a {
    display: block;
    margin-top: 30px;
    text-align: center;
  }

  header .main-nav.open li a:not(.nav-btn a) {
    padding: 20px 0;
  }

  header .main-nav li:nth-child(1) a {
    --i: 1;
  }

  header .main-nav li:nth-child(2) a {
    --i: 2;
  }

  header .main-nav li:nth-child(3) a {
    --i: 3;
  }

  header .main-nav li:nth-child(4) a {
    --i: 4;
  }

  header .main-nav li:nth-child(5) a {
    --i: 5;
  }

  header .main-nav li:nth-child(5) a {
    --i: 6;
  }

  header .main-nav li:nth-child(5) a {
    --i: 7;
  }

  footer .promotion_block {
    padding: 1rem 0;
    flex-direction: column-reverse;
    row-gap: 0.5rem;
  }

  footer .add-block {
    gap: 0.25rem;
  }

  footer .add-block img {
    width: 130px;
  }


}

@media only screen and (max-width: 767px) {
  :root {
    --body-font: 16px;
    --large-text: 16px;
    --medium-text: 16px;
    --padding-tb-small: 30px;
    --padding-tb-medium: 60px;
  }

  h1 {
    font-size: 34px;
    line-height: 46px;
    /* line-height: 3.56rem; */

  }

  html,
  body,
  p,
  li,
  .medium-text,
  .medium-text p,
  .large-text,
  .large-text p {
    line-height: 26px;
    font-family: var(--body-font-family);
  }

  .small-text,
  .small-text p {
    font-weight: 400;
    font-family: var(--body-font-family) !important;
    font-size: var(--body-font) !important;
    line-height: 26px !important;
    color: var(--grey-color) !important;
  }

  .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  footer {
    position: relative;
  }

  footer .row {
    row-gap: 30px;
  }

  .single-post-nav .post-nav,
  .post-single-page .single-meta-top {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }

  .copyright_footer {
    text-align: center;
  }

  .copyright_footer .row {
    row-gap: 10px;
  }

  .copyright_footer .social-media-links {
    column-gap: 16px;
    justify-content: center;
  }
}

@media only screen and (max-width: 620px) {
  footer .add-block {
    flex-direction: column;
    margin-top: 1rem;
    text-align: center;
  }

  footer .add-block p span {
    display: none !important;
  }
}

@media only screen and (max-width: 575px) {
  :root {
    --padding-tb-small: 20px;
    --padding-tb-medium: 40px;
  }

  .footer-contact-info {
    text-align: left;
  }

  .social-media-links {
    justify-content: center;
  }

  .subscriber-form .input-group input {
    width: 100%;
  }

  .copyright_footer .copyright-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* .topbar {
  background: linear-gradient(
    90deg,
    var(--alice-blue-color),
    var(--plum-color),
    var(--hot-pink-color),
    var(--lavender-blush-color),
    var(--misty-rose-color)
  );
  display: block;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.topbar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.topbar p {
  color: #000;
  margin: 0;
  font-size: 18px;
}
.topbar .outline-btn {
  border: 2px solid #fff;
  color: #fff;
}
.topbar .outline-btn:before {
  display: none;
}
header {
  top: 130px;
} */