:root {
  --primaryFont: "Montserrat", sans-serif;
  --secondaryFont: "Inter", sans-serif;
  --containerSize: 1280px;
  --marginXAuto: 0 auto;
  --clr-primary-black: #000000;
  --clr-primary-white: #ffffff;
  --clr-primary-blue: #0768b4;
  --clr-primary-1: #e35cbd;
  --clr-primary-2: #817ce7;
  --btnShadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  --btnGradient: linear-gradient(90deg, #817ce7, #e35cbd);
  --heading-gradient: linear-gradient(134.72deg, #9df4d2 0%, #74c0f2 118.36%);
  --heading-color: #9df4d2;
}
/* common tabs css */

/* kindly define all the variables here================ */
/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to top,
    var(--clr-primary-1),
    var(--clr-primary-2)
  );
  border-radius: 0px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.4;
}

input,
textarea,
select {
  outline: none;
  border: none;
  box-shadow: none;
  font-family: var(--primaryFont);
}

button,
a {
  cursor: pointer;
}

*,
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--primaryFont);
  text-decoration: none;
  color: var(--clr-primary-white);
  outline: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}

body {
  width: 100%;
  scroll-behavior: smooth;
  height: 100%;
  background-color: var(--clr-primary-black);
  /* background-image: url('../../assets/images/spacebg.webp'); */
  background-repeat: no-repeat;
  font-family: "Montserrat", sans-serif !important;
  background-attachment: fixed;
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 100s linear infinite;
}
span,
p,
li,
i,
strong {
  font-family: "Montserrat", sans-serif !important;
}
/* animations */
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 12%;
  }
}

@keyframes ripple {
  25% {
    box-shadow: 0 0 0 0 rgb(165 115 201 / 30%),
      0 0 0 0.5em rgb(165 115 201 / 10%);
  }

  50% {
    box-shadow: 0 0 0 2em rgb(165 115 201 / 30%),
      0 0 0 3em rgb(165 115 201 / 30%);
  }

  75% {
    box-shadow: 0 0 0 3em rgb(165 115 201 / 30%),
      0 0 0 4em rgb(165 115 201 / 10%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(165 115 201 / 30%),
      0 0 0 0.5em rgb(165 115 201 / 10%);
  }
}

body * {
  font-family: var(--primaryFont);
}

.pageWrapper {
  width: 100%;
  min-height: 100vh;
  overflow: clip;
}

.textc {
  text-align: center;
}

.page-loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #0c1b21;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fluidContainer {
  width: 100%;
  max-width: var(--containerSize);
  margin: var(--marginXAuto);
  padding: 0 25px;
}

/* =*-=*-=*-=*-=*-=*-=*-=*-=*-header css=*-=*-=*-=*-=*-=*-=*-=*-=*-=*-=*-=*- */
.commonHeader {
  padding: 1.8rem 0rem;
  /* background: #000000db; */
  border-bottom: 1px solid;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  border-bottom-color: #ffffff1a;
}

.logoContainer {
  width: 6rem;
}

.headerContainer,
.desktopMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerContainer {
  padding: 0 1rem;
  width: 95%;
}

.desktopMenu {
  gap: 5rem;
}

.desktop_menuItem {
  position: relative;
}

.desktop_menuItem:not(.desktopMenu--hasButton) > a {
  padding-bottom: 2.7rem;
  position: relative;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  /* transition: all 0.6s ease-in-out; */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fc5c7d, #6f81f7 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

.desktop_menuItem:not(.desktopMenu--hasButton) > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* border-radius: 32px; */
  background: var(--btnGradient);
  display: block;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
}

.desktop_menuItem:not(.desktopMenu--hasButton):hover > a::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.desktop_menuItem:hover > a {
  background-position: 0%;
}

/* .desktopMenu--hasButton {
    position: relative;
    height: 4.8rem;
    width: 12.8rem;
} */

.desktopMenu--hasButton > a {
  text-align: center;
  position: relative;
  border-radius: 48px;
  box-sizing: border-box;
  display: block;
  z-index: 2;
  overflow: hidden;
  padding: 1px;
}

.desktopMenu--hasButton > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--btnGradient);
  background-size: 50% 100%;
  /* animation: btnAnimation 1s linear infinite; */
}

.desktopMenu--hasButton > a > span {
  position: relative;
  z-index: 2;
  padding: 1rem 28px;
  font-size: 1.4rem;
  align-items: center;
  display: block;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  color: #fff;
  border-radius: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.desktopMenu--hasButton > a > span small {
  background: linear-gradient(
    94.78deg,
    #ffffff 1.7%,
    rgba(255, 255, 255, 0.44) 100.26%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  font-style: normal;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 17px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;
}

.hasDropdown {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  position: absolute;
  top: 100px;
  border-top: 1px solid #ffffff12;
  z-index: 2;
  border: 1px solid #817ce738;
  border-bottom: none;
  border-radius: 5px;
}

.desktop_menuItem:hover .hasDropdown {
  opacity: 1;
  visibility: visible;
}

.isSticky {
  /* transition: all .2s ease-in; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  background: #000;
  /* backdrop-filter: blur(20px); */
  z-index: 10;
  /* padding: 1.6rem 1rem; */
}

/* app dropdown--------------- */
.appDropdown {
  width: 112.2rem;
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  background: var(--clr-primary-black);
  left: -230px;
  min-height: 30rem;
  padding: 3.2rem 2.8rem;
}

.appDropdown article {
  flex: 25%;
}

.appDropdown article ul {
  flex-direction: column;
}

.appDropdown article ul li a {
  display: block;
}

/* app dropdown--------------- */
/* contact dropdown--------------- */
.contactDropdown {
  width: 72.4rem;
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  background: var(--clr-primary-black)
    url("../../assets/images/mapBackground.webp") no-repeat center/386px;
  right: 2rem;
  min-height: 28rem;
  padding: 3.2rem 2.8rem;
  /* z-index: 0; */
}

.contactDropdown article {
  flex: 30%;
}

.contactDropdown article.contactDropdown__contactUs {
  flex: 40%;
}

.desktop_menuItem:hover .contactDropdown {
  top: 5rem;
}

.contactDropdown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  background: var(--clr-primary-black);
  opacity: 0.6;
}

.contactDropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  border-radius: 0px 0px 32px 32px;
}

.contactDropdown--heading {
  background: var(--btnGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: -1px;
  margin-bottom: 2.8rem;
}

.contactDropdown__contactUs ul li:not(:last-child) {
  margin-bottom: 2.8rem;
}

.contactDropdown__contactUs a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  position: relative;
  padding-left: 3.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #ffffff;
}

.contactDropdown a {
  transition: all 0.2s;
}

.contactDropdown a:hover {
  color: var(--heading-color);
}

.contactDropdown__contactUs a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
}

.contactDropdown__location h3 {
  margin-bottom: 2rem;
}

.contactDropdown__location li {
  margin-bottom: 1.6rem;
}

.contactDropdown__location li a {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #ffffff;
}

.contactDropdown__social ul {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 60%;
  margin: 0 0;
}

.contactDropdown__social a {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 2px;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.6s ease-in-out;
}

.contactDropdown__social a:hover,
ul.contactSocialList a.nav-item :hover {
  -webkit-animation-name: pendulum;
  -webkit-animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: pendulum;
  animation-duration: 1s;
}

/* contact dropdown--------------- */

/* web3 dropdown--------------- */
.web3Dropdown,
.developersDropdown {
  width: 48.3rem;
  gap: 4rem;
  background: var(--clr-primary-black);
  left: 0;
  min-height: 16.3rem;
  padding: 3.2rem 2rem;
}

.developersDropdown {
  width: 53.3rem;
  left: -80px;
}

.industriesDropdown {
  left: initial;
  right: 0;
}

.appDropdown::after,
.developersDropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  border-radius: 0px 0px 32px 32px;
}

.web3Dropdown::before,
.developersDropdown::before,
.appDropdown::before,
.companyDropdown::before {
  content: "";
  position: absolute;
  top: -19px;
  background: url("../../assets/images/triangleGradient.svg") no-repeat
    center/20px 24px;
  height: 2.4rem;
  width: 2rem;
  transform: scale(0.8) rotate(-90deg);
  opacity: 0.6;
  display: none;
}

.appDropdown::before {
  left: 310px;
}

.web3Dropdown::before,
.developersDropdown::before {
  left: 0;
}

.companyDropdown::before {
  right: 0;
}

.web3Dropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  border-radius: 0px 0px 32px 32px;
}

.accordion {
  padding: 10px 0;
}

.accordion .accordion-item {
  margin-bottom: 40px;
}
.accordion .accordion-item button[aria-expanded="true"] {
  margin-bottom: 40px;
}
.accordion h2 {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  /*    padding: 1em 0; */
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  padding: 0px;
  line-height: 25px;
  margin: 0px;
  font-family: "Open Sans", sans-serif;
}

.accordion h2.widgettitle {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 160%;
  color: #9a9a9a;
  margin: 0;
  position: relative;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion h2:hover,
.accordion h2:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion h2:hover::after,
.accordion h2:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion h2 .accordion-title {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  line-height: 34px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s;
  padding-right: 34px;
}
.accordion h2 .icon {
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
}
.faq-content {
  padding: 80px 0px;
}
.accordion h2 .icon::before {
  background: currentColor;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff4d;
  border-bottom: 2px solid #ffffff4d;
  position: absolute;
  right: 10px;
  content: " ";
  top: 8px;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.2s ease-in-out;

  color: transparent;
}
.accordion h2[aria-expanded="true"] .icon::before {
  transform: rotate(-135deg) translateY(-50%);
}
.accordion h2[aria-expanded="true"] {
  color: #03b5d2;
}
.accordion h2[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion h2[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 5000px;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  color: #cfcfcf;
  padding: 10px 0 0;
  line-height: 28px;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 15px;
  font-weight: 300;
  margin: 0px;
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
}
.accordion h2 .accordion-title {
  font-size: 20px;
  color: #fff !important;
}
.article_section h2 {
  font-size: 32px;
  text-align: left !important;
  padding: 0px !important;
  margin: 0 !important;
}
.accordion h2[aria-expanded="true"] + .accordion-content {
  font-size: 19px;
}
.menuDropdown--list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem 1.4rem;
}

.menuDropdown--list a {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  padding-left: 1.8rem;
  position: relative;
  transition: all 0.2s;
}

.menuDropdown--list a:hover {
  color: var(--clr-primary-1);
}

.menuDropdown--list a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../../assets/images/triangleGradient.svg") no-repeat
    center/10px 12px;
  height: 1.2rem;
  width: 1rem;
  left: 0;
}

.web3Dropdown li,
.developersDropdown li {
  width: 48%;
}

.desktop_menuItem:hover .web3Dropdown,
.desktop_menuItem:hover .developersDropdown,
.desktop_menuItem:hover .appDropdown {
  top: 4.8rem;
}

/* web3 dropdown--------------- */

/* company dropdown--------------- */
.companyDropdown {
  width: 52.4rem;
  min-height: 14.3rem;
  right: 0;
  background: var(--clr-primary-black);
  padding: 3.2rem 2rem;
  /* z-index: 0; */
}

.companyDropdown li {
  width: 30%;
}

.desktop_menuItem:hover .companyDropdown {
  top: 4.8rem;
}

.companyDropdown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  border-radius: 0px 0px 32px 32px;
}

/* company dropdown--------------- */

/* responsive menu css */
html.hc-nav-yscroll {
  overflow-y: scroll;
}

body.hc-nav-open {
  overflow: visible;
  position: fixed;
  width: 100%;
  min-height: 100%;
}

.hc-offcanvas-nav {
  visibility: hidden;
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 9999;
}

.hc-offcanvas-nav.is-ios * {
  cursor: pointer !important;
}

.hc-offcanvas-nav .nav-container {
  position: fixed;
  z-index: 9998;
  top: 0;
  width: 240px;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav .nav-wrapper {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  box-sizing: border-box;
}

.hc-offcanvas-nav .nav-content {
  height: 100%;
  max-height: 100vh;
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-offcanvas-nav li {
  position: relative;
  display: block;
}

.hc-offcanvas-nav li.level-open > .nav-wrapper {
  visibility: visible;
}

.hc-offcanvas-nav input[type="checkbox"] {
  display: none;
}

.hc-offcanvas-nav label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.hc-offcanvas-nav a {
  position: relative;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
}

.hc-offcanvas-nav a,
.hc-offcanvas-nav a:hover {
  text-decoration: none;
}

.hc-offcanvas-nav .nav-item {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.hc-offcanvas-nav .nav-wrapper::after,
.hc-offcanvas-nav.disable-body::after {
  content: "";
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease 0.4s, opacity 0.4s ease;
}

.hc-offcanvas-nav .sub-level-open::after,
.hc-offcanvas-nav.disable-body.nav-open::after {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.05s;
}

.hc-offcanvas-nav:not(.nav-open)::after {
  pointer-events: none;
}

.hc-offcanvas-nav.nav-levels-expand .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav.nav-levels-expand .nav-wrapper::after {
  display: none;
}

.hc-offcanvas-nav.nav-levels-expand ul .nav-wrapper {
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: height 0s ease 0.4s;
}

.hc-offcanvas-nav.nav-levels-expand .level-open > .nav-wrapper {
  max-height: none;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav.nav-levels-overlap ul .nav-wrapper {
  position: absolute;
  z-index: 9999;
  top: 0;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.nav-parent {
  position: static;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.level-open > .nav-wrapper {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-position-left {
  left: 0;
}

.hc-offcanvas-nav.nav-position-left .nav-container {
  left: 0;
  -webkit-transform: translate3d(-240px, 0, 0);
  transform: translate3d(-240px, 0, 0);
}

.hc-offcanvas-nav.nav-position-left.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-right {
  right: 0;
}

.hc-offcanvas-nav.nav-position-right .nav-container {
  right: 0;
  -webkit-transform: translate3d(240px, 0, 0);
  transform: translate3d(240px, 0, 0);
}

.hc-offcanvas-nav.nav-position-right.nav-levels-overlap li .nav-wrapper {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-top {
  top: 0;
}

.hc-offcanvas-nav.nav-position-top .nav-container {
  top: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.hc-offcanvas-nav.nav-position-top.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.hc-offcanvas-nav.nav-position-bottom {
  top: auto;
  bottom: 0;
}

.hc-offcanvas-nav.nav-position-bottom .nav-container {
  top: auto;
  bottom: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.hc-offcanvas-nav.nav-position-bottom.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.hc-offcanvas-nav.nav-open[class*="hc-nav-"] div.nav-container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hc-nav-trigger {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  top: 20px;
  z-index: 9980;
  width: 30px;
  min-height: 24px;
}

.hc-nav-trigger span {
  width: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.hc-nav-trigger span,
.hc-nav-trigger span::after,
.hc-nav-trigger span::before {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background: #34495e;
  transition: all 0.2s ease;
}

.hc-nav-trigger span::after,
.hc-nav-trigger span::before {
  content: "";
  width: 100%;
}

.hc-nav-trigger span::before {
  top: -10px;
}

.hc-nav-trigger span::after {
  bottom: -10px;
}

.hc-nav-trigger.toggle-open span {
  background: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hc-nav-trigger.toggle-open span::before {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

.hc-nav-trigger.toggle-open span::after {
  -webkit-transform: rotate(-90deg) translate3d(10px, 0, 0);
  transform: rotate(-90deg) translate3d(10px, 0, 0);
}

.hc-offcanvas-nav .nav-wrapper::after,
.hc-offcanvas-nav::after {
  background: rgba(0, 0, 0, 0.3);
}

.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
  background: #336ca6;
}

/* .hc-offcanvas-nav h2 {
    font-size: 19px;
    font-weight: 400;
    text-align: left;
    padding: 20px 17px;
    color: #1b3958
} */

.hc-offcanvas-nav .nav-item,
.hc-offcanvas-nav a {
  padding: 14px 17px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  color: #fff;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #2c5d8f;
}

/* .hc-offcanvas-nav:not(.touch-device) a:hover {
    background: #31679e
} */

.hc-offcanvas-nav
  ul:first-of-type:not(:first-child)
  > li:first-child:not(.nav-back):not(.nav-close)
  > a {
  border-top: 1px solid #2c5d8f;
  margin-top: -1px;
}

.hc-offcanvas-nav li {
  text-align: left;
}

.hc-offcanvas-nav li.nav-back a,
.hc-offcanvas-nav li.nav-close a {
  background: #2c5d8f;
  border-top: 1px solid #295887;
  border-bottom: 1px solid #295887;
}

/* .hc-offcanvas-nav li.nav-back a:hover,
.hc-offcanvas-nav li.nav-close a:hover {
    background: #2b5c8d
} */

.hc-offcanvas-nav li.nav-back:not(:first-child) a,
.hc-offcanvas-nav li.nav-close:not(:first-child) a {
  margin-top: -1px;
}

.hc-offcanvas-nav li.nav-parent .nav-item {
  padding-right: 58px;
}

.hc-offcanvas-nav li.nav-back span,
.hc-offcanvas-nav li.nav-close span,
.hc-offcanvas-nav li.nav-parent span.nav-next {
  width: 45px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hc-offcanvas-nav li.nav-close span::after,
.hc-offcanvas-nav li.nav-close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.hc-offcanvas-nav li.nav-close span::before {
  margin-left: -9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.hc-offcanvas-nav li.nav-close span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hc-offcanvas-nav a[href]:not([href="#"]) > span.nav-next {
  border-left: 1px solid #c4c4c40a;
}

.hc-offcanvas-nav li.nav-back span::before,
.hc-offcanvas-nav span.nav-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.hc-offcanvas-nav span.nav-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.hc-offcanvas-nav li.nav-back span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hc-offcanvas-nav.nav-position-left.nav-open .nav-wrapper {
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-right.nav-open .nav-wrapper {
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-right span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
}

.hc-offcanvas-nav.nav-position-right li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
}

.hc-offcanvas-nav.nav-position-top.nav-open .nav-wrapper {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-top span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hc-offcanvas-nav.nav-position-top li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-position-bottom.nav-open .nav-wrapper {
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-bottom span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-position-bottom li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul .nav-wrapper,
.hc-offcanvas-nav.nav-levels-none .nav-container ul .nav-wrapper {
  box-shadow: none;
  background: 0 0;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul h2,
.hc-offcanvas-nav.nav-levels-none .nav-container ul h2 {
  display: none;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul ul .nav-item,
.hc-offcanvas-nav.nav-levels-none .nav-container ul ul .nav-item {
  font-size: 14px;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li,
.hc-offcanvas-nav.nav-levels-none .nav-container li {
  transition: background 0.3s ease;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open {
  background: #2e6296;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open a,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open a {
  border-bottom: 1px solid #295887;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open a:hover,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open a:hover {
  background: #2f649a;
}

.hc-offcanvas-nav.nav-levels-expand
  .nav-container
  li.level-open
  > .nav-item
  .nav-next::before,
.hc-offcanvas-nav.nav-levels-none
  .nav-container
  li.level-open
  > .nav-item
  .nav-next::before {
  margin-top: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-levels-expand .nav-container span.nav-next::before,
.hc-offcanvas-nav.nav-levels-none .nav-container span.nav-next::before {
  margin-top: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

html.hc-nav-yscroll {
  overflow-y: scroll;
}

body.hc-nav-open {
  overflow: visible;
  position: fixed;
  width: 100%;
  min-height: 100%;
}

.hc-offcanvas-nav {
  visibility: hidden;
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 9999;
}

.hc-nav-open .hc-offcanvas-nav {
  visibility: visible;
}

.hc-offcanvas-nav.is-ios * {
  cursor: pointer !important;
}

.hc-offcanvas-nav .nav-container {
  position: fixed;
  z-index: 9998;
  top: 0;
  width: 300px;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav .nav-wrapper {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  box-sizing: border-box;
}

.hc-offcanvas-nav .nav-content {
  height: 100%;
  max-height: 100vh;
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-offcanvas-nav li {
  position: relative;
  display: block;
}

.hc-offcanvas-nav li.level-open > .nav-wrapper {
  visibility: visible;
}

.hc-offcanvas-nav input[type="checkbox"] {
  display: none;
}

.hc-offcanvas-nav label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.hc-offcanvas-nav a {
  position: relative;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
}

.hc-offcanvas-nav a,
.hc-offcanvas-nav a:hover {
  text-decoration: none;
}

.hc-offcanvas-nav .nav-item {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.hc-offcanvas-nav .nav-wrapper::after,
.hc-offcanvas-nav.disable-body::after {
  content: "";
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease 0.4s, opacity 0.4s ease;
}

.hc-offcanvas-nav .sub-level-open::after,
.hc-offcanvas-nav.disable-body.nav-open::after {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.05s;
}

.hc-offcanvas-nav:not(.nav-open)::after {
  pointer-events: none;
}

.hc-offcanvas-nav.nav-levels-expand .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav.nav-levels-expand .nav-wrapper::after {
  display: none;
}

.hc-offcanvas-nav.nav-levels-expand ul .nav-wrapper {
  min-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: height 0s ease 0.4s;
}

.hc-offcanvas-nav.nav-levels-expand .level-open > .nav-wrapper {
  max-height: none;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  box-sizing: border-box;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content::-webkit-scrollbar {
  width: 6px;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content::-webkit-scrollbar-thumb {
  background: #efefef36;
  border-radius: 0px;
}

.hc-offcanvas-nav.nav-levels-overlap ul .nav-wrapper {
  position: absolute;
  z-index: 9999;
  top: 0;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.nav-parent {
  position: static;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.level-open > .nav-wrapper {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-position-left {
  left: 0;
}

.hc-offcanvas-nav.nav-position-left .nav-container {
  left: 0;
  -webkit-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.hc-offcanvas-nav.nav-position-left.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-right {
  right: 0;
}

.hc-offcanvas-nav.nav-position-right .nav-container {
  right: 0;
  -webkit-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.hc-offcanvas-nav.nav-position-right.nav-levels-overlap li .nav-wrapper {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-top {
  top: 0;
}

.hc-offcanvas-nav.nav-position-top .nav-container {
  top: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.hc-offcanvas-nav.nav-position-top.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.hc-offcanvas-nav.nav-position-bottom {
  top: auto;
  bottom: 0;
}

.hc-offcanvas-nav.nav-position-bottom .nav-container {
  top: auto;
  bottom: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.hc-offcanvas-nav.nav-position-bottom.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.hc-offcanvas-nav.nav-open[class*="hc-nav-"] div.nav-container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hc-nav-trigger {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  top: 20px;
  z-index: 9980;
  width: 30px;
  min-height: 24px;
}

.hc-nav-trigger span {
  width: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.hc-nav-trigger span,
.hc-nav-trigger span::after,
.hc-nav-trigger span::before {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background: #34495e;
  transition: all 0.2s ease;
}

.hc-nav-trigger span::after,
.hc-nav-trigger span::before {
  content: "";
  width: 100%;
}

.hc-nav-trigger span::before {
  top: -10px;
}

.hc-nav-trigger span::after {
  bottom: -10px;
}

.hc-nav-trigger.toggle-open span {
  background: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hc-nav-trigger.toggle-open span::before {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

.hc-nav-trigger.toggle-open span::after {
  -webkit-transform: rotate(-90deg) translate3d(10px, 0, 0);
  transform: rotate(-90deg) translate3d(10px, 0, 0);
}

.hc-offcanvas-nav .nav-wrapper::after,
.hc-offcanvas-nav::after {
  background: rgba(0, 0, 0, 0.3);
}

.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
  background: #1c1f21;
  /* backdrop-filter: blur(20px); */
}

/* .hc-offcanvas-nav h2 {
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    padding: 20px 17px;
    font-family: Souvenir Lt BT;
    color: #fff
} */

.hc-offcanvas-nav .nav-item,
.hc-offcanvas-nav a {
  padding: 13px 14px;
  font-size: 15px;
  color: #c4c4c4;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #c4c4c40a;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

.first-nav li a.resact,
.hc-offcanvas-nav:not(.touch-device) a.resact1,
.hc-offcanvas-nav:not(.touch-device) a:hover,
.second-nav li a.resact,
.second-nav ul li a.resact {
  color: var(--heading-color);
}

.nav-item:hover .nav-next {
  background: #efefef36;
}

.hc-offcanvas-nav:not(.touch-device)
  a:hover.hc-offcanvas-nav
  li.nav-back
  span::before,
.hc-offcanvas-nav:not(.touch-device)
  a:hover.hc-offcanvas-nav
  span.nav-next::before {
  border-top: 2px solid #4a4bff;
  border-left: 2px solid #4a4bff;
}

.hc-offcanvas-nav
  ul:first-of-type:not(:first-child)
  > li:first-child:not(.nav-back):not(.nav-close)
  > a {
  border-top: 1px solid #2c5d8f;
  margin-top: -1px;
}

.hc-offcanvas-nav li {
  text-align: left;
}

.hc-offcanvas-nav li.nav-back a,
.hc-offcanvas-nav li.nav-close a {
  background: #efefef36;
  border-top: none;
  border-bottom: none;
}

/* .hc-offcanvas-nav li.nav-back a:hover,
.hc-offcanvas-nav li.nav-close a:hover {
    background: #fff;
    color: #4a4bff
} */

.nav-close a:hover {
  color: #fff;
}

.hc-offcanvas-nav li.nav-back:not(:first-child) a,
.hc-offcanvas-nav li.nav-close:not(:first-child) a {
  margin-top: -1px;
}

.hc-offcanvas-nav li.nav-parent .nav-item {
  padding-right: 58px;
}

.hc-offcanvas-nav li.nav-back span,
.hc-offcanvas-nav li.nav-close span,
.hc-offcanvas-nav li.nav-parent span.nav-next {
  width: 45px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hc-offcanvas-nav li.nav-close span::after,
.hc-offcanvas-nav li.nav-close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 2px solid #05059d;
  border-left: 2px solid #05059d;
}

.hc-offcanvas-nav li.nav-close span::before {
  margin-left: -7px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.hc-offcanvas-nav li.nav-close span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hc-offcanvas-nav a[href]:not([href="#"]) > span.nav-next {
  border-left: 1px solid #c4c4c40a;
}

.hc-offcanvas-nav li.nav-back span::before,
.hc-offcanvas-nav span.nav-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid #c4c4c4;
  border-left: 2px solid #c4c4c4;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.hc-offcanvas-nav span.nav-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.hc-offcanvas-nav li.nav-back span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hc-offcanvas-nav.nav-position-left.nav-open .nav-wrapper {
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-right.nav-open .nav-wrapper {
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-right span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
}

.hc-offcanvas-nav.nav-position-right li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
}

.hc-offcanvas-nav.nav-position-top.nav-open .nav-wrapper {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-top span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hc-offcanvas-nav.nav-position-top li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-position-bottom.nav-open .nav-wrapper {
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.hc-offcanvas-nav.nav-position-bottom span.nav-next::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-position-bottom li.nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul .nav-wrapper,
.hc-offcanvas-nav.nav-levels-none .nav-container ul .nav-wrapper {
  box-shadow: none;
  background: 0 0;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul h2,
.hc-offcanvas-nav.nav-levels-none .nav-container ul h2 {
  display: none;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container ul ul .nav-item,
.hc-offcanvas-nav.nav-levels-none .nav-container ul ul .nav-item {
  font-size: 14px;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li,
.hc-offcanvas-nav.nav-levels-none .nav-container li {
  transition: background 0.3s ease;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open {
  background: #2e6296;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open a,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open a {
  border-bottom: 1px solid #295887;
}

.hc-offcanvas-nav.nav-levels-expand .nav-container li.level-open a:hover,
.hc-offcanvas-nav.nav-levels-none .nav-container li.level-open a:hover {
  background: #2f649a;
}

.hc-offcanvas-nav.nav-levels-expand
  .nav-container
  li.level-open
  > .nav-item
  .nav-next::before,
.hc-offcanvas-nav.nav-levels-none
  .nav-container
  li.level-open
  > .nav-item
  .nav-next::before {
  margin-top: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hc-offcanvas-nav.nav-levels-expand .nav-container span.nav-next::before,
.hc-offcanvas-nav.nav-levels-none .nav-container span.nav-next::before {
  margin-top: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.cf::after,
.cf::before {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}

.cf::after {
  clear: both;
}

#main-nav {
  display: none;
}

.nav-content h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 5px;
  padding-bottom: 8px;
}

.nav-content h2 {
  padding: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

header .git {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px 4px 0;
  font-size: 15px;
  font-weight: 400;
  color: #fffce1;
  background: #54b9cb;
  transition: background 0.15s ease-in-out;
}

header .git:hover {
  background: #4ca8b9;
}

header .git:hover svg {
  border-color: #54b9cb;
}

header .git svg {
  width: 15px;
  height: 15px;
  fill: #fffce1;
  position: relative;
  top: 2px;
  padding: 0 10px;
  margin-right: 10px;
  border-right: 1px solid #4daabb;
  transition: border-color 0.15s ease-in-out;
}

header .ver {
  padding-top: 15px;
  font-weight: 200;
  color: #dab977;
}

header .ver span {
  color: #fffce1;
}

header .toggle {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  top: 20px;
  z-index: 9;
  width: 35px;
  min-height: 24px;
  position: relative;
  width: auto;
  top: auto;
  left: auto;
  float: right;
  display: block;
  cursor: pointer;
  box-sizing: content-box;
  font-size: 20px;
  line-height: 0;
  height: 17px;
  width: 17px;
  padding: 0;
  background: url(../../assets/images/hamburgerIcon.png) no-repeat center/17px;
}

header .toggle span {
  width: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

header .toggle span,
header .toggle span::after,
header .toggle span::before {
  display: none;
}

/* header .toggle span,
header .toggle span::after,
header .toggle span::before {
    display: block;
    position: absolute;
    left: 0;
    height: 10px;
    width: 10px;
    background: url('../assets/images/smallimages/hamburgerIcon.png');
    transition: all .25s ease
} */

header .toggle span::after,
header .toggle span::before {
  content: "";
  width: 100%;
}

header .toggle span::before {
  top: -7px;
}

header .toggle span::after {
  bottom: -7px;
}

header .toggle.toggle-open span {
  background: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .toggle.toggle-open span::before {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

header .toggle.toggle-open span::after {
  -webkit-transform: rotate(-90deg) translate3d(5px, 0, 0);
  transform: rotate(-90deg) translate3d(5px, 0, 0);
}

.hasCloseBtn .nav-close {
  position: absolute;
  right: -40px;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  top: 10px;
  display: none;
}

.hc-offcanvas-nav .hasCloseBtn .nav-close a {
  background: #efefef36;
  border: none;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.hc-offcanvas-nav .hasCloseBtn .nav-close a span {
  width: initial;
  top: initial;
  bottom: initial;
  left: initial;
  right: initial;
}

.hc-offcanvas-nav li.nav-close span::after,
.hc-offcanvas-nav li.nav-close span::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.hc-offcanvas-nav li.nav-close span::before {
  margin-left: -8px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* header .toggle:hover span,
header .toggle:hover span::after,
header .toggle:hover span::before {
    background: var(--clr-primary-2)
} */

header .toggle div {
  display: inline-block;
  margin-right: 15px;
}

/* main {
    flex: 1 0 auto;
    padding-bottom: 30px;
    text-align: left
} */

main .content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* main h4 {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0
} */

/* main h4:first-child {
    margin-top: 30px
} */

main .actions {
  margin: 0 -15px;
  text-align: center;
}

main .actions.checkboxes {
  text-align: left;
  padding-top: 8px;
}

main .actions.checkboxes label {
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

main .actions.checkboxes label input {
  display: none;
}

main .actions.checkboxes label input:checked ~ span {
  background: #dab977;
}

main .actions.checkboxes label input:checked ~ span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  border: solid #243949;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

main .actions.checkboxes label span {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 22px;
  height: 22px;
  background: #fffce1;
  margin-right: 12px;
  vertical-align: top;
  transition: all 0.1s ease;
}

main .actions div {
  padding: 0 15px 20px;
  box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  main .actions {
    display: flex;
    flex-wrap: wrap;
  }

  main .actions div {
    float: left;
    flex: 1 1 33.33%;
    max-width: 33.33%;
  }

  main .actions.position div {
    float: left;
    flex: 1 1 25%;
    max-width: 25%;
  }
}

main .button {
  position: relative;
  display: block;
  padding: 18px 30px 16px;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-decoration: none;
  color: #243949;
  cursor: pointer;
  background: #fffce1;
  border-radius: 30px/80px;
  transition: all 0.1s ease;
}

main .button:not(.active):hover {
  color: #d5af63;
}

main .button.active {
  background: #dab977;
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
  padding-bottom: 41px;
}

.hc-offcanvas-nav a {
  font-size: 16px;
}

.hc-offcanvas-nav li.search .nav-item {
  padding-top: 0;
}

.hc-offcanvas-nav li.search input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  box-shadow: none;
  outline: 0;
}

.hc-offcanvas-nav li.search input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.hc-offcanvas-nav li.search input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.hc-offcanvas-nav li.search input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.hc-offcanvas-nav li.search input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.hc-offcanvas-nav li.add > a::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "add";
}

.hc-offcanvas-nav li.new > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "fiber_new";
}

.hc-offcanvas-nav li.cryptocurrency > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "local_atm";
}

.hc-offcanvas-nav li.devices > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "devices";
}

.hc-offcanvas-nav li.mobile > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "phone_android";
}

.hc-offcanvas-nav li.television > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "desktop_windows";
}

.hc-offcanvas-nav li.camera > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "camera_alt";
}

.hc-offcanvas-nav li.magazines > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "import_contacts";
}

.hc-offcanvas-nav li.store > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "store";
}

.hc-offcanvas-nav li.collections > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "collections";
}

.hc-offcanvas-nav li.credits > .nav-item::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  text-indent: 0;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  font-size: 19px;
  vertical-align: top;
  content: "credit_card";
}

.hc-offcanvas-nav ul.bottom-nav {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border-top: 1px solid #2c5d8f;
}

.hc-offcanvas-nav ul.bottom-nav li {
  flex: auto;
}

.hc-offcanvas-nav ul.bottom-nav li a {
  padding: 10px;
  text-align: center;
  height: 100%;
  border-bottom: none;
}

.hc-offcanvas-nav ul.bottom-nav li svg {
  fill: #fff;
  display: inline-block;
  vertical-align: middle;
}

.hc-offcanvas-nav ul.bottom-nav li.github svg {
  width: 17px;
  height: 17px;
}

.hc-offcanvas-nav ul.bottom-nav li.ko-fi svg {
  width: 21px;
  height: 21px;
}

.hc-offcanvas-nav ul.bottom-nav li.email svg {
  width: 19px;
  height: 19px;
}

.hc-offcanvas-nav .has-Logo {
  display: flex;
  padding: 20px 10px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  background: #efefef0d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.resp-menu {
  display: none;
}

ul.contactSocialList {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}

ul.contactSocialList a.nav-item {
  border-bottom: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

/* responsive menu css */
/* =*-=*-=*-=*-=*-=*-=*-=*-=*-header css=*-=*-=*-=*-=*-=*-=*-=*-=*-=*-=*-=*- */

/* blog  */

/* common innner page hero section */
.innerHeroSection {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: 72px;
}

.innerHeroSection::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  /* background: radial-gradient(41.76% 41.76% at 50% 50%, #095DFF 0%, rgba(191, 9, 255, 0) 100%); */
  /* opacity: 0.4; */
  background: url("../../assets/images/heroGradient.png") no-repeat center/cover;
  z-index: -1;
  width: 440px;
  height: 440px;
  transition-property: transform;
  transition-duration: 6s;
  animation-name: gradientGrow;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.innerHeroSection .fluidContainer {
  min-height: 480px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.innerHeroSection small {
  color: #7f7ce9;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--secondaryFont);
  line-height: 160%;
  font-size: 18px;
}

.innerHeroSection h1 {
  color: #dfe8f8;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-size: 7rem;
  line-height: 100%;
}

.innerHeroSection h1 span {
  position: relative;
  color: #dfe8f8;
  z-index: 0;
}

.innerHeroSection h1 span::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  width: 100%;
  height: 18px;
  background: var(--btnGradient);
  z-index: -1;
}

.search_bar {
  max-width: 454px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset -2px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  min-height: 44px;
  margin-bottom: 50px;
}

.searchItem {
  width: 100%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.2) url("../../assets/images/search.webp")
    no-repeat 10px center;
  border-radius: 6px;
  padding-left: 45px;
}

/* .search_bar::after{
    position:absolute;
    content: '';
    top: 12px;
    left: 13px;
    width: 20px;
    height: 20px;
    background: url('../assets/images/blogsImages/search.webp');
} */
.searchItem::placeholder {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 16px;
  color: #9ca0ac;
}

.innerHeroSection .fluidContainer {
  min-height: 275px;
}

.design_wrap {
  display: flex;
  gap: 59px;
}

.product_design {
  width: calc(100% - 520px);
  position: relative;
}

.popular {
  width: 500px;
}

.product_design::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
      41.76% 41.76% at 50% 50%,
      #095dff 0%,
      rgba(191, 9, 255, 0) 100%
    )
    center/cover;
  opacity: 0.4;
  left: -384px;
  top: 40px;
  transform: translateY(-50%);
  z-index: -1;
  transition-property: transform;
  transition-duration: 6s;
  animation-name: gradientGrow;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.image_wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.image_wrap:hover img {
  scale: 1.1;
}

.datewrap {
  display: flex;
  gap: 10px;
}

.datewrap small {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}

.firstElement {
  display: flex;
  justify-content: space-between;
  margin: 17px 0px;
}

.firstElement span {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}

.content_wrap h5 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 15px;
}

.todaypara {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #cfcfcf;
  overflow: hidden;
  /* width: 696px */
}

.readfull {
  margin-top: 25px;
  display: block;
}

.readfull span {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.popular h5 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 160%;
  color: #ffffff;
  margin: 0;
  position: relative;
}

.popular h5::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 43px;
  width: 100%;
  height: 1px;
  z-index: 99;
  background-image: linear-gradient(
    to right,
    #f5eeee 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 7px 1px;
  left: 0;
}

.parentList {
  margin: 25px 0;
}

.popular_date span {
  display: block;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}

.popular_date {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}

.popular_date span {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 160%;
  color: #ffffff;
}

.popular_date small {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}

.content_box h6 {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 160%;
  color: #ffffff;
  margin: 0;
}

.counterbox h4 {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 100%;
  color: #dedede;
  opacity: 0.2;
}

.listItem {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.counterbox {
  width: 40px;
}

.content_box {
  width: calc(100% - 60px);
}

.nftParent {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0px;
  position: relative;
}

.nftParent::after {
  display: none;
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
      41.76% 41.76% at 50% 50%,
      #095dff 0%,
      rgba(191, 9, 255, 0) 100%
    )
    center/cover;
  opacity: 0.4;
  right: -250px;
  top: 200px;
  transform: translateY(-50%);
  z-index: -1;
  transition-property: transform;
  transition-duration: 6s;
  animation-name: gradientGrow;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.nftItem {
  width: calc(33.3% - 10px);
  background: #2d2d2d;
}

.nftImag_wrap {
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.nftImag_wrap img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s;
}

.nftItem:hover img {
  scale: 1.05;
  rotate: 3deg;
}

.nft_content {
  padding: 24px 20px 22px 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
}

.nft_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nftdatewrapp {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nftdatewrapp small {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
  display: block;
}

.nftreadfull {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.nft_span {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #ffffff;
}

.apple-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.appleIntro {
  width: calc(100% - 505px);
  position: relative;
}

.appleIntro::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
      41.76% 41.76% at 50% 50%,
      #095dff 0%,
      rgba(191, 9, 255, 0) 100%
    )
    center/cover;
  opacity: 0.4;
  left: -384px;
  top: 250px;
  transform: translateY(-50%);
  z-index: -1;
  transition-property: transform;
  transition-duration: 6s;
  animation-name: gradientGrow;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.ottplatform {
  width: 484px;
}

.appleImage_wrap {
  height: 440px;
  width: 100%;
  overflow: hidden;
}

.appleImage_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ottImage_wrap {
  height: 315px;
  width: 100%;
  overflow: hidden;
}

.ottImage_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apple-wrapper {
  margin-top: 49px;
}

.apple_content {
  min-height: 210px;
  background: #2d2d2d;
  padding: 29px 31px 30px 28px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.ott_content {
  min-height: 335px;
  background: #2d2d2d;
  padding: 29px 19px 30px 31px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.apple_content,
.ott_content span {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #ffffff;
  overflow: hidden;
}

.nft_date .applereadfull {
  font-weight: 600;
  font-size: 1rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.explore {
  font-weight: 800;
  font-size: 4rem;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
  margin-top: 74px;
}

.readypara {
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 43px;
  position: relative;
}

.topics::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
      41.76% 41.76% at 50% 50%,
      #095dff 0%,
      rgba(191, 9, 255, 0) 100%
    )
    center/cover;
  opacity: 0.4;
  right: -200px;
  top: 200px;
  transform: translateY(-50%);
  z-index: -1;
  transition-property: transform;
  transition-duration: 6s;
  animation-name: gradientGrow;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.topic_btn {
  background: #2d2d2d;
  min-height: 93px;
  border-radius: 8px;
  display: block;
  width: calc(33.3% - 10px);
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 44px;
}

.topic_btn span {
  font-weight: 400;
  font-size: 2rem;
  line-height: 20px;
  color: #ffffff;
}

.violetbackground {
  background: url("../../assets/images/violet.webp") no-repeat left;
  transition: all 0.2s;
}

.violetbackground:hover {
  background-position: center;
}

.bluebackground {
  background: url("../../assets/images/blue_topic.webp") no-repeat left;
  transition: all 0.2s;
}

.bluebackground:hover {
  background-position: center;
}

.greenbackground {
  background: url("../../assets/images/green_topic.webp") no-repeat left;
  transition: all 0.2s;
}

.greenbackground:hover {
  background-position: center;
}

.kickstart {
  max-width: 1089px;
  position: relative;
  min-height: 373px;
  margin: 200px auto;
  background: url("../../assets/images/kickstart.webp") no-repeat center/cover;
  padding: 48px 0px 67px 60px;
}

.kickstart::after {
  position: absolute;
  content: "";
  top: -145px;
  right: -168px;
  background: url("../../assets/images/tiltandroid.webp") no-repeat;
  width: 669px;
  height: 669px;
}

.kickheader {
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 54px;
  letter-spacing: -1px;
  color: #ffffff;
}

.kickpra {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 30px;
  color: #ffffff;
  margin-top: 17px;
}

.kickstart_content {
  position: absolute;
  max-width: 602px;
}

.talk_btn {
  padding: 15px;
  width: 208px;
  background: #ffffff;
  box-shadow: 0px 3px 9px rgba(57, 20, 0, 0.08);
  border-radius: 6px;
  margin-top: 32px;
  display: block;
}

.talk_btn span {
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 17px;
  text-transform: uppercase;
  color: #391400;
}

/* tabcsss */
.blogs_tab_content {
  margin-top: 50px;
}

.tabs__nav__ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.tabs__Item {
  background: linear-gradient(
    275.44deg,
    rgba(34, 65, 211, 0.196) -28.6%,
    rgba(252, 92, 125, 0.4) -28.58%,
    rgba(111, 129, 247, 0.4) 109.49%
  );
  border-radius: 16px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tabs__Item span {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 160%;
  text-transform: uppercase;
  color: #ffffff;
  padding: 21px;
}

.tabs__Item.active {
  border: 1px solid #fc5c7d;
}

/* tabcss ends */

/*  */

/* footer css */
.commonFooter {
  padding-top: 180px;
  background: black;
  z-index: 9;
  position: relative;
}

/* 1 */
.locationsection--footer {
  background: url(../../assets/images/curvedFooterBg.png) top center/cover;
  padding: 80px 20px;
}

.locationsection__container {
  display: flex;
  position: relative;
  z-index: 0;
  justify-content: flex-end;
}

.locationsection__container .roundedImage {
  display: grid;
  width: 280px;
  position: absolute;
  transition: all 4s;
  place-items: center;
  left: 40px;
  top: -148px;
  border-radius: 50%;
}

.locationsection__container .roundedImage::before {
  scale: 1.24;
  background: #b071c62e;
  z-index: -2;
}

.locationsection__container .roundedImage::after {
  scale: 1.12;
  background: #b071c63d;
  z-index: -2;
}

.locationsection__container .roundedImage::before,
.locationsection__container .roundedImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.locationsection__container > article {
  width: calc(100% - 400px);
}

.locationsection--footer__ul,
.locationsection--footer__ul li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 0;
}

.locationsection--footer__ul li {
  align-items: flex-start;
  width: 45%;
  padding: 10px;
  transition: all 0.2s;
}

.locationsection--footer__ul li:hover h4 {
  color: var(--clr-primary-1);
}

.locationsection--footer__ul span {
  width: 36px;
}

.locationsection--footer__ul a {
  width: calc(100% - 50px);
  margin-left: 14px;
}

.locationsection--footer__ul a h4 {
  font-size: 16px;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  line-height: 24px;
  transition: all 0.2s;
  font-weight: 700;
}

.locationsection--footer__ul a h4 span {
  background: #407cbf;
  padding: 8px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 9px;
  line-height: 11px;
  width: 120px;
  display: block;
  text-align: center;
  border-radius: 32px;
}

.locationsection--footer__ul a p {
  font-weight: 400;
  font-size: 12px;
  margin-top: 10px;
  line-height: 22px;
  color: #ffffff;
}

/* 1 */

/* 2 */

.footer--LinkSection {
  padding: 0 1rem;
  background: var(--clr-primary-black);
}

.footerLink__FLexParent {
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

.footerLink__FLexParent::after,
.footerLink__FLexParent::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-image: linear-gradient(
    to right,
    #ababab 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 7px 1px;
  background-repeat: repeat-x;
}

.footerLink__FLexParent::after {
  top: 0;
}

.footerLink__FLexParent::before {
  bottom: 0;
}

.footerLink--article {
  width: 23%;
  text-align: justify;
}

.socialmedia {
  width: 100px;
}

.socialmedia a {
  text-align: right !important;
}

.socialmedia a:hover img {
  -webkit-animation-name: pendulum;
  -webkit-animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: pendulum;
  animation-duration: 1s;
}

.footerLink--article h4 {
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  /* background-size: 200% auto; */
  -webkit-background-clip: text;
  /* animation: shine 3s linear infinite; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: inline-block;
  font-size: 18px;
  line-height: 2.4rem;
  letter-spacing: 0.1px;
  margin-bottom: 1.2rem;
}

.footerLink--article a {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.4px;
  text-align: left;
  transition: all 0.2s;
  color: #ffffff;
  display: inline-block;
  padding: 12px 0;
}

.footerLink--article a:hover {
  color: var(--clr-primary-1);
}

.boldtextwhite {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.2px;
  color: #ffffff;
}

.nestedListGroup {
  margin-left: 10px;
}

.nestedListGroup li a {
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  letter-spacing: 0.2px;
  color: #217bf4;
  padding: 4px 0;
  text-align: left;
  transition: all 0.2s;
}

.nestedListGroup li:hover a {
  color: #fff;
}

.certification {
  padding: 26px 10px;
  background: var(--clr-primary-black);
}

.certification ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.8rem;
}

.footerCreditSection {
  background: var(--btnGradient);
  padding: 10px;
}

.creditsContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creditsContainer .copyrightContent {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 25px;
  text-align: center;
  color: #ffffff;
}

.starWarp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.starImage {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.accutalContent {
  font-weight: 400;
  font-size: 13px;
  line-height: 25px;
  text-align: center;
  color: #ffffff;
}

.accutalContent.boldText {
  font-weight: 600px;
  font-size: 14px;
}

/* footer css */

/* responsive footer section */

.responsiveFooter {
  display: none;
  position: relative;
}

.responsiveFooter::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
}

.footerHero {
  width: 100%;
  height: 295px;
}

.footerHero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.responsiveLocation__footer {
  display: flex;
  padding: 40px 0 40px;
  border-bottom: 1px solid #ffffff3b;
  justify-content: center;
}

.responsiveLocation__footer article {
  flex: 1;
  display: flex;
  padding: 0 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.responsiveLocation__footer article h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.responsiveLocation__footer article h5 span {
  background: #407cbf;
  border-radius: 32px;
  font-weight: 500;
  font-size: 7px;
  padding: 6px;
  text-transform: capitalize;
  line-height: 11px;
}

.responsiveLocation__footer article h6 {
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}

.mainLinks__responsive {
  padding: 40px 0 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.mainLinks__responsive .responsiveLinksWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.mainLinks__responsive .responsiveLinksWrapper > li:first-child {
  display: inline-block;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mainLinks__responsive .responsiveLinksWrapper > li a {
  letter-spacing: 0.2px;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  text-transform: capitalize;
}

.nestedListGroup {
  margin: 10px 0 0 0;
}

.nestedListGroup li a.darkblue {
  letter-spacing: 0.2px;
  color: #6f81f7;
  font-weight: 500;
  font-size: 10px;
  line-height: 26px;
}

.responsiveFooterLogos {
  padding: 20px 20px 40px;
  border-bottom: 1px solid #ffffff3b;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px 15px;
  align-items: center;
}

.responsiveCopyrights {
  padding: 40px 20px;
  text-align: left;
}

.responsiveCopyrights p {
  font-weight: 500;
  font-size: 13px;
  line-height: 25px;
  color: #ffffff;
}

.responsiveSocialLinks {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.responsiveStarRatingSections {
  padding: 10px 20px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
}

.starImages * {
  width: 20px;
}

.starImages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.responsiveStarRatingSections p {
  font-weight: 500;
  text-align: center;
  font-size: 10px;
  line-height: 25px;
  margin-top: 8px;
}
/*============================ footer new css============================= */

/* responsive css */
@media (max-width: 1024px) {
  .resp-menu {
    display: block;
  }

  .desktopMenu {
    display: none;
  }
}

@media (max-width: 1100px) {
  .locationsection--footer {
    padding-top: 180px;
    position: relative;
  }
  .footerLink__FLexParent {
    flex-wrap: wrap;
  }

  .locationsection--footer {
    padding-top: 180px;
    position: relative;
  }

  .footerLink__FLexParent {
    flex-wrap: wrap;
  }

  .locationsection__container {
    position: static;
  }

  .locationsection__container .roundedImage {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
  }

  .locationsection__container > article {
    width: 100%;
  }
  .footerLink--article.socialmedia ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
  .locationsection--footer__ul,
  .locationsection--footer__ul li {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .footerLink--article {
    width: 25%;
    padding: 0 18px;
  }

  .kickstart::after {
    background: none;
  }

  .kickstart {
    margin: 100px auto;
  }

  .design_wrap {
    flex-wrap: wrap;
  }

  .image_wrap {
    min-height: initial;
  }

  .nftParent {
    justify-content: flex-start;
    gap: 20px;
  }

  .nftItem {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .design_wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
  }

  .product_design {
    width: 100%;
  }

  .appleIntro {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .ottplatform {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .topic_btn {
    min-height: 70px;
  }

  .apple_content {
    min-height: 160px;
  }

  .ott_content {
    min-height: 190px;
  }

  .nftParent {
    margin-top: 0px;
  }
  .certification ul {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .nftParent {
    overflow-x: hidden;
  }
  .footerLink__FLexParent {
    gap: 6rem 0;
  }
  .footerLink--article.socialmedia {
    width: 100%;
    margin-top: 0;
  }

  .footerLink--article {
    width: 50%;
  }
  .tabs__nav__ul {
    flex-direction: column;
    max-width: 270px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .topics {
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
  }

  .topic_btn {
    min-height: 60px;
    width: 48%;
    padding: 0 30px;
  }

  .topic_btn span {
    font-size: 1.5rem;
  }

  .kickheader {
    line-height: 42px;
    font-size: 3.5rem;
  }

  .kickpra {
    line-height: 20px;
  }

  .talk_btn {
    margin-top: 18px;
  }
  .innerHeroSection h1 {
    text-align: center;
    font-size: 6rem;
  }
  .certification ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .locationsection--footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .locationsection--footer__ul li {
    width: 200px;
  }
  .locationsection--footer__ul a p {
    font-size: 10px;
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  .locationsection--footer__ul li {
    width: 48%;
    flex-direction: column;
    gap: 10px;
  }

  .locationsection--footer__ul a {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .footerLink--article.socialmedia ul {
    gap: 2rem;
  }
  .footerLink--article {
    width: 100%;
  }
  .topic_btn {
    min-height: 45px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .topic_btn {
    padding: 0 18px;
  }

  .kickstart {
    padding: 30px 20px 67px 20px;
  }
  .locationsection--footer__ul a p {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.5;
  }
  .locationsection--footer__ul a h4 {
    font-size: 14px;
  }
}

/* blog detail */

.blogdetailimgwrap {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
  margin: 50px auto 0;
}

.blogdetailimgwrap img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}

.blogsdetailcontent {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.blogs_parent {
  max-width: 900px;
  margin: 100px auto 0;
}

.blogsdetailcontent {
  max-width: 100%;
  width: 100%;
  /* min-height: 314px; */
}

.blogs_parent {
  /* display: flex;
    justify-content: space-between; */
}

.blogsdetailcontent span {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  padding: 7px;
  border: 1px solid grey;
  max-width: calc(100% - 250px);
}

.blogsdetailcontent h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: #ffffff;
}

.blogsdetailcontent small {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
  width: 300px;
  text-align: right;
}

.social-icon-wrap {
  width: 200px;
}

.applepara {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 185%;
  color: #ffffff;
  margin-top: 49px;
}

.sub_head {
  font-weight: 700;
  font-size: 2rem;
  line-height: 185%;
  color: #ffffff;
  margin: 20px auto;
}

.headsectipn {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 185%;
  color: #a573c9;
}

.listpara {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 190%;
  color: #ffffff;
}

.article_section {
  margin-top: 36px;
  padding: 10px;
}

.article_section {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.relatedarticle {
  text-align: center;
  margin-top: 80px;
  position: relative;
  background: black;
}

.relatedarticle h2 {
  padding-top: 80px;
  font-weight: 500;
  font-size: 4rem;
  line-height: 50px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}

.relatedarticle::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 43px;
  width: 100%;
  height: 1px;
  z-index: 99;
  background-image: linear-gradient(
    to right,
    #f5eeee 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 7px 1px;
  left: 0;
}

.nftParent {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 87px;
  position: relative;
  background: black;
}

.nftItem {
  width: calc(33.3% - 10px);
  background: #2d2d2d;
}

.nftImag_wrap {
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.nftImag_wrap img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s;
}

.nftItem:hover img {
  scale: 1.05;
  rotate: 3deg;
}

.nft_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nftdatewrapp {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nftdatewrapp small {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
  display: block;
}

.nftreadfull {
  font-weight: 600;
  font-size: 1rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.nft_span {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #ffffff;
}

.article_section h3,
.article_section h1,
.article_section h2,
.article_section h4,
.article_section h5,
.article_section h6 {
  font-weight: 700;
  line-height: 1.4;
  margin: 40px 0 15px;
}

.article_section h3 span,
.article_section h1 span,
.article_section h2 span,
.article_section h2 span strong,
.article_section h3 span strong,
.article_section h4 span strong,
.article_section h5 span strong,
.article_section h4 span,
.article_section h5 span,
.article_section h6 span,
.article_section h3 span b,
.article_section h1 span b,
.article_section h2 span b,
.article_section h4 span b,
.article_section h5 span b,
.article_section h6 span b {
  color: #a573c9 !important;
}
.article_section a {
  text-decoration: underline;
}
.article_section a span {
  color: #fff !important;
}
.article_section h1 {
  font-size: 38px;
  text-align: left !important;
}
.article_section h2 {
  font-size: 32px;
  text-align: left !important;
}
.article_section h3 {
  font-size: 28px;
  text-align: left !important;
}
.article_section h4 {
  font-size: 24px;
  text-align: left !important;
}
.article_section h5 {
  font-size: 22px;
  text-align: left !important;
}
.article_section p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 15px 0;
  color: #ffffff;
}
.article_section ul li,
.article_section ol li {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #ffffff;
}
.article_section ul {
  list-style: disc !important;
  padding-left: 15px;
}
.article_section ol {
  list-style: decimal !important;
  padding-left: 15px;
}

.article_section img {
  margin: 15px auto;
}
.article_section p,
.article_section li {
  text-align: left !important;
}
.article_section h2 i,
.article_section h3 i,
.article_section h4 i,
.article_section h5 i,
.article_section h2 b,
.article_section h3 b,
.article_section h4 b,
.article_section h5 b,
.article_section h2 strong,
.article_section h3 strong,
.article_section h4 strong,
.article_section h5 strong {
  color: #a573c9 !important;
}

.detail-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.category-wrap {
  width: calc(100% - 300px);
}
.post-categories {
  display: flex;
  flex-wrap: wrap;
}
.post-categories li {
  border: 1px solid #ddd;
  padding: 5px 10px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 6px;
}
.social-icon-wrap {
  width: 200px;
  display: none;
  justify-content: space-between;
  align-items: center;
}
.social-icon-wrap p {
  width: 50px;
  font-size: 14px;
}
.social-icons {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 60px);
}
ul.social-icons li {
  width: 30px;
  margin: 0 6px;
}
@media (max-width: 991px) {
  .listpara {
    line-height: 140%;
  }

  .nftParent {
    justify-content: flex-start;
    gap: 20px;
  }

  .nftItem {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .nft_content {
    min-height: 210px;
  }

  .relatedarticle {
    margin-top: 16px;
  }

  .blogsdetailcontent {
    width: 100%;
  }

  .blogs_parent {
    flex-direction: column;
  }

  .blogdetailimgwrap {
    margin: 30px auto;
    width: 100%;
    max-width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .detail-header-wrap {
    display: block;
  }
  .detail-header-wrap .category-wrap {
    max-width: 100%;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
  }
}

/* 404 page */

.error-404 {
  max-width: 500px;
  width: 100%;
  margin: 150px auto 60px;
  text-align: center;
}

.error-404 h1 {
  font-size: 32px;
  margin-bottom: 30px;
  padding: 40px 0;
}
.error-404 .go-back {
  background: var(--btnGradient);
  /* box-shadow: 0px 4px 20px rgb(0 0 0 / 25%); */
  border-radius: 5.2rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
  padding: 1.2rem 3.6rem;
  transition: all 0.6s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.error-404 .go-back:after {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  animation: btnAnimate 0.8s infinite;
}
.search .main-wrap,
.archive .main-wrap {
  margin-top: 140px;
}
.search-result-wrap {
  display: flex;
  flex-wrap: wrap;
}
.search .main-wrap .page-title,
.archive .main-wrap .page-title {
  margin-bottom: 30px;
  text-align: center;
}
.search-result-wrap article {
  width: calc(50% - 40px);
  margin: 0 20px 40px;
  border: 1px solid #9b51e0;
  padding: 25px;
  border-radius: 10px;
}

.search-result-wrap .entry-title a {
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
  min-height: 50px;
}

.entry-meta {
  font-size: 12px;
}

.search-result-wrap .post-thumbnail {
  width: 100%;
  display: block;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  height: 320px;
}

.search-result-wrap .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-wrap .entry-summary p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.search-result-wrap .entry-footer {
  font-size: 12px;
  line-height: 1.5;
  color: #9b51e0;
}

.search-result-wrap .entry-footer span {
  color: #9b51e0;
}
.search-result-wrap p {
  margin-bottom: 15px;
}
.search-result-wrap div {
  margin-bottom: 20px;
}
.search-result-wrap p,
.search-result-wrap li {
  font-size: 14px;
}

@media (max-width: 1023px) {
  .search-result-wrap .post-thumbnail {
    height: 250px;
  }
  .search-result-wrap .type-post {
    width: calc(50% - 20px);
  }
  .search-result-wrap article {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    padding: 15px;
  }
  .apple_content {
    padding: 15px;
  }
  .apple_content,
  .ott_content span {
    font-size: 2rem;
  }
  .nftParent {
    margin-top: 20px;
  }
  .explore {
    font-size: 3.5em;
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .innerHeroSection h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
  }
  .search-result-wrap article {
    width: 100% !important;
    margin: 0 0 20px;
  }
}

@media (max-width: 480px) {
  .footerDesktop {
    display: none;
  }

  .responsiveFooter {
    display: block;
    position: relative;
  }
  .popular_date {
    display: block;
  }
  .topic_btn {
    width: 80%;
  }
}

.desktopMenu--hasButton > a > span {
  background: #05031f;
  transition: all 0.2s;
}
.desktopMenu--hasButton > a:hover span,
.innerPageBody .desktopMenu--hasButton:hover > a > span {
  background: var(--btnGradient) !important;
}
.innerPageBody .desktopMenu--hasButton > a > span {
  background: rgb(17 17 17) !important;
}

.article_section a,
.article_section a span,
.article_section a strong {
  color: var(--clr-primary-1) !important;
}

.view-more {
  color: #fff;
  background: var(--btnGradient);
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 12px;
  margin-top: 20px !important;
  display: inline-block;
}
.article_section div {
  background-color: #1e3957 !important;
}
a.ez-toc-link {
  font-size: 13px;
}
.article_section div.shared-counts-wrap {
  background-color: transparent !important;
  margin-top: 50px;
}

td span,
td strong {
  color: #fff !important;
}

.navigation.posts-navigation {
  width: 100%;
  padding: 0 20px;
  display: block;
}

.navigation.posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.navigation.posts-navigation .nav-previous,
.navigation.posts-navigation .nav-next {
  color: #fff;
  display: inline-block;
  background: var(--btnGradient);
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 12px;
  margin-top: 20px !important;
}

@media (max-width: 767px) {
  .image_wrap {
    height: 210px;
  }
  .nftImag_wrap,
  .appleImage_wrap,
  .ottImage_wrap {
    height: 240px;
  }
}

.archive-description {
  font-size: 15px;
  margin-bottom: 40px;
}

.posted-on .updated {
  display: none;
}

.new_blog_details table {
  border-color: #fff !important;
}

.new_blog_details table tr td {
  padding: 5px !important;
}
.wrapblogs {
  display: flex;
}
.sidebars {
  margin-top: 200px;
  padding: 50px;
  width: 30%;
}
.blogs-conents {
  width: 70%;
}

.sidebars input.search-field {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: black;
}
.sidebars label {
  display: block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: bold;
  width: 80%;
}

.sidebars input.search-submit {
  color: black;
  padding: 10px;
  text-transform: uppercase;
}
.sidebars form.search-form {
  display: flex;
  margin-bottom: 25px;
}
.sidebars li a {
  font-size: 13px;
}
.sidebars li {
  margin-top: 10px;
}
ul#sidebar > li {
  margin-bottom: 44px;
}
.sidebars select#cat {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: black;
}
.sidebars .cfw-form {
  background-color: #000000 !important;
  padding: 10px;
  border-radius: 0;
}
.sidebars .cfw-form label {
  color: black;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}
.sidebars .form-group {
  margin: 0px;
  padding-bottom: 0;
}
.sidebars label i {
  display: none;
}
p.text-center.cwf-desc {
  font-size: 16px;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
  text-align: left;
}
body .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #b6b1b1;
  background-color: #000;
  background-image: none;
  border: 1px solid #686868;
  border-radius: 2px;
}
body .form-control input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: #b6b1b1;
}
button.btn.btn-info {
  border: 1px solid #767474;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  background: var(--btnGradient) !important;
}
h2.text-center.cwf-title {
  font-size: 0px;
}
button.btn.btn-info {
  background: white;
  border: #000;
  font-size: 17px;
  text-transform: uppercase;
  color: #000;
  border-radius: 20px;
  color: #fff;
  text-transform: capitalize;
  padding: 10px 29px;
}
div#contact-result {
  font-size: 20px;
}

.hasNewMenu {
  width: 36px;
  height: 36px;
  display: grid;
  background: #111;
  place-items: center;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  position: relative;
  border: 1px solid #fff3;
  z-index: 0;
  cursor: pointer;
}
.newContactDropdown {
  position: absolute;
  border: 1px solid #ffffff17;
  border-radius: 6px;
  top: 55px;
  min-width: 310px;
  transition: all 0.1s ease-in-out;
  background: #1c1f21;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.hasNewMenu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #817ce7;
  border-radius: 50%;
  will-change: box-shadow;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
  animation: ripple 1s ease-out infinite;
}

.newContactDropdown {
  position: absolute;
  border: 1px solid #ffffff17;
  border-radius: 6px;
  top: 55px;
  min-width: 310px;
  transition: all 0.1s ease-in-out;
  background: #1c1f21;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.topNewContact {
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: flex-start;
  border-radius: 6px 6px 0 0;
  background: var(--clr-primary-2);
  padding: 20px 10px;
  border-bottom: 1px solid #efefef21;
}

.topNewContact p {
  font-size: 1.5rem;
  font-weight: 560;
}

.middlePartMenu ul li {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.middlePartMenu ul li:hover a {
  text-decoration: underline;
}

.icon-call {
  filter: invert(52%) sepia(48%) saturate(896%) hue-rotate(205deg)
    brightness(94%) contrast(93%);
}

.icon-message {
  filter: invert(26%) sepia(80%) saturate(6949%) hue-rotate(341deg)
    brightness(69%) contrast(120%);
}

.icon-skype {
  filter: invert(53%) sepia(82%) saturate(2382%) hue-rotate(161deg)
    brightness(97%) contrast(101%);
}

.icon-whatsapp {
  filter: invert(65%) sepia(84%) saturate(453%) hue-rotate(85deg)
    brightness(90%) contrast(88%);
}

.middlePartMenu ul li a {
  font-size: 1.4rem;
  transition: all 0.2s;
  font-weight: 500;
}

.middlePartMenu ul {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.middlePartMenu li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
li.hasNewMenu:hover article.newContactDropdown {
  opacity: 1;
  visibility: visible;
}

.middlePartMenu > p {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff38;
}

.fixed-section.sticky form#user-contact-form {
  position: fixed;
  top: 15vh;

  max-width: 300px;
}

.sidebars li.cat-item a,
.widget_recent_entries a {
  font-size: 13px;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  color: #9a9a9a;
  margin: 0;
}

h2.widgettitle {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 160%;
  color: #9a9a9a;
  margin: 0;
  position: relative;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.widgettitle h5::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 43px;
  width: 100%;
  height: 1px;
  z-index: 99;
  background-image: linear-gradient(
    to right,
    #f5eeee 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 7px 1px;
  left: 0;
}
.blogsdetailcontent h1 {
  font-size: 38px;
}

.sidebars input.search-submit {
  display: none;
}

.innerHeroSection .fluidContainer {
  min-height: 129px;
  padding-top: 18px;
}

.overlay {
  position: fixed;
  top: 150px;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: rgba(0, 0, 0, 0.7); */
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}
.overlay:target,
.overlay.show {
  visibility: visible;
  opacity: 1;
}
.overlay.show .popup {
  visibility: visible;
}
.whasappWidget {
  transition: all .3s;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #25d366;
  z-index: 99;
}
.whasappWidget:hover {
  border-radius: 50%;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  font-size: 14px;
}
input.wpcf7-form-control,
textarea.wpcf7-form-control {
  background: #141414;
  border: 1px solid #565454;
  padding: 10px;
  border-radius: 6px;
}
textarea.wpcf7-form-control {
  height: 100px;
}
.popup {
  margin: 70px auto;
  padding: 20px;
  background: #141414;
  border-radius: 5px;
  width: 60%;
  position: relative;
  transition: all 5s ease-in-out;
  display: flex;
  max-width: 655px;
}
.popup p {
  font-size: 16px;
}
.popup h2 {
  font-size: 26px;
  margin-bottom: 10px;
  margin-top: 0;
  color: #333;
  background: linear-gradient(
    270.87deg,
    #2241d3 -61.75%,
    #fc5c7d -61.73%,
    #6f81f7 116.21%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  --text-fill-color: transparent;
}
.popup img {
  width: 50%;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #ff309b;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
  width: 50%;
}
#popup1 input, #popup1 textarea {
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 90%;
    display: block;
  }
  .popup .content {
    width: 100%;
  }
  .popup img {
    width: 50%;
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .wrapblogs {
    display: block;
  }
  .blogs-conents {
    width: 100%;
    max-width: 100vw;
  }
  .sidebars {
    width: 100vw;
  }
  .fixed-section.sticky form#user-contact-form {
    position: relative;
  }
}
