:root {
  scroll-behavior: smooth;
  --main-color: #111111;
  --secondary-color: #1a1a1a;
  --theme-color: #f4f7f6;
  --accent-color: #aed9ff;
  --title-color: #111111;
  --text-color: #777777;
  --light-text: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
}

::selection {
  background-color: var(--accent-color);
  color: var(--main-color);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--main-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

section,
header,
footer {
  scroll-margin-top: 80px;
  overflow: hidden;
}

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
}

.navbar.nav-scroll {
  position: fixed;
  top: -80px;
  padding: 15px 0;
  width: 100%;
  background: var(--main-color);
  border-bottom: 1px solid var(--border-color);
  -webkit-transition: transform .8s;
  transition: transform .8s;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(17, 17, 17, 0.95);
}

.navbar.nav-scroll .logo img {
  height: 60px !important;
  width: auto !important;
  transition: all .4s;
}

.navbar.nav-scroll .navbar-nav .nav-link {
  color: var(--light-text);
}

.navbar.nav-scroll .navbar-nav .nav-link.active {
  color: var(--accent-color);
  background: transparent;
}

.navbar.nav-scroll .topnav .butn {
  background: var(--light-text);
  color: var(--main-color);
}

.navbar.nav-scroll .topnav .menu-icon {
  color: var(--light-text);
}

.navbar .logo {
  padding: 0;
  border: none;
}

.navbar .logo h1 {
  font-family: 'Dancing Script', cursive;
  /* font-family: 'Poppins', sans-serif, 'Roboto', sans-serif; */
  font-size: 54px;
  font-weight: 600;
  /* color: #fff; */
  color: var(--special-color);
  letter-spacing: 1px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin-left: 80px;
}

.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: relative;
}

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

.navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #aed9ff;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.navbar .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar .navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .topnav .butn {
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--main-color);
  margin-right: 15px;
  border: none;
  font-weight: 500;
}

.navbar .topnav .butn:hover {
  background: var(--light-text);
  transform: translateY(-2px);
}

.navbar .topnav .menu-icon {
  color: #fff;
  font-size: 28px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

/* --------------- header --------------- */
.header-mst {
  padding: 200px 0;
}

.header-mst .caption h1 {
  font-size: 70px;
  color: #fff;
}

.header-mst p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.header-mst .butons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mst .butons .bg,
.header-mst .butons .bord {
  width: 140px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.header-mst .butons .bg {
  background-color: var(--accent-color);
  color: var(--main-color);
  position: relative;
  z-index: 3;
  font-weight: 600;
}

.header-mst .butons .bord {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-left: -30px;
  transition: all .4s;
}

.header-mst .butons .bord:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

.header-mst .cont .arrow {
  width: 45px;
  height: 45px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
}

.header-mst .cont .arrow svg {
  width: 15px;
}

.header-mst .cont span {
  text-transform: uppercase;
  background: rgba(174, 217, 255, 0.1);
  color: var(--accent-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  margin-left: 0;
  display: inline-block;
}

/* --------------- Awards --------------- */
.hero-mst {
  background: var(--theme-color);
  border-radius: 50px 50px 0 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.hero-mst .img {
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
  max-width: 550px;
  margin: auto;
}

.hero-mst .exp {
  position: absolute;
  top: 30%;
  left: 15px;
}

.hero-mst .exp span {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-mst .exp h2 {
  font-size: 100px;
}

.hero-mst .curve {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.about-smt {
  /* background: var(--theme-color); */
  /* background-color: #1A1717; */
  /* background-color: #1A1717; */
  border-radius: 50px 50px;
  position: relative;
  margin-top: -60px;
  z-index: 7;
  /* color: #fff; */
}

.about-smt .boxs {
  position: relative;
  bottom: -100px;
}

.about-smt .boxs .item {
  padding: 60px 20px;
  width: 100%;
}

.about-smt .boxs .item h2 {
  font-size: 100px;
}

.about-smt .boxs .item h6 {
  font-size: 18px;
}

.about-smt .boxs .bg-color {
  background: var(--main-color);
}

.about-smt .main-img {
  height: 70vh;
  min-height: 500px;
}

/* --------------- Services --------------- */
.services-accord2 {
  color: #fff;
  background: var(--main-color);
  border-radius: 50px 50px 0 0;
  padding-bottom: 200px;
  position: relative;
  z-index: 5;
}

.services-accord2 .accordion .accordion-item {
  background: transparent;
  border-radius: 0;
  border: 0;
}

.services-accord2 .accordion .accordion-title {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  overflow: hidden;
}

.services-accord2 .accordion .accordion-title h2 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: -60px;
  color: #fff !important;
  transition: all .4s;
}

.services-accord2 .accordion .accordion-title:hover h2 {
  color: var(--accent-color) !important;
}

.services-accord2 .accordion .accordion-title .icon svg {
  width: 40px;
  height: 40px;
}

.services-accord2 .accordion .accordion-title:not(.collapsed) .title h2 {
  margin-bottom: 0;
}

.services-accord2 .accordion .accordion-title:not(.collapsed) .icon svg path {
  stroke: #0047FF;
}

.services-accord2 .accordion .accordion-body {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-accord2 .accordion .accordion-body .img {
  height: 140px;
  border-radius: 15px;
}

/* --------------- Works --------------- */
.work-matrial {
  background: #fff;
  border-radius: 50px 50px 0 0;
  margin-top: -60px;
  padding-bottom: 200px;
  position: relative;
  z-index: 5;
}

.work-matrial .butn.butn-bord {
  border-color: rgba(0, 0, 0, 0.2);
}

.work-matrial .swiper-cont {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 10;
  flex-shrink: 10;
  min-height: 0;
  padding: 0 15px;
}

.work-matrial .swiper {
  width: 100%;
  height: 100%;
}

.work-matrial .swiper-material {
  height: 80vh;
  width: calc(100% - 30px);
  max-width: 100%;
}

.work-matrial .demo-material-image {
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: var(--swiper-material-slide-border-radius);
}

.work-matrial .demo-material-label {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: #fff;
  border-radius: 15px;
}

.work-matrial .demo-material-label span {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.work-matrial .demo-material-label h6 {
  font-weight: 500;
}

.work-matrial .swiper-controls .swiper-button-prev,
.work-matrial .swiper-controls .swiper-button-next,
.testim-sm .swiper-controls .swiper-button-prev,
.testim-sm .swiper-controls .swiper-button-next,
.blog-mp .swiper-controls .swiper-button-prev,
.blog-mp .swiper-controls .swiper-button-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: all .4s;
  background: #fff;
  color: #000;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-matrial .swiper-controls .swiper-button-prev:hover,
.work-matrial .swiper-controls .swiper-button-next:hover,
.testim-sm .swiper-controls .swiper-button-prev:hover,
.testim-sm .swiper-controls .swiper-button-next:hover,
.blog-mp .swiper-controls .swiper-button-prev:hover,
.blog-mp .swiper-controls .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--main-color);
  border-color: var(--accent-color);
}

.work-matrial .swiper-controls .swiper-button-prev::after,
.work-matrial .swiper-controls .swiper-button-next::after,
.testim-sm .swiper-controls .swiper-button-prev::after,
.testim-sm .swiper-controls .swiper-button-next::after,
.blog-mp .swiper-controls .swiper-button-prev::after,
.blog-mp .swiper-controls .swiper-button-next::after {
  display: none;
}

@media screen and (max-width: 991px) {

  .work-matrial .swiper-controls .swiper-button-prev,
  .work-matrial .swiper-controls .swiper-button-next,
  .testim-sm .swiper-controls .swiper-button-prev,
  .testim-sm .swiper-controls .swiper-button-next,
  .blog-mp .swiper-controls .swiper-button-prev,
  .blog-mp .swiper-controls .swiper-button-next {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

/* --------------- Clients --------------- */
.clients-sa .item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
}

.clients-sa .item .img {
  width: 100px;
}

.clients-sa .item .cont .icon {
  width: 40px;
  margin: 0 auto 10px;
}

.clients-sa .item .cont span {
  font-size: 14px;
  line-height: 20px;
}

/* --------------- Testimonials --------------- */
.testim-sm {
  position: relative;
  overflow: hidden;
}

.testim-sm .swiper-slide {
  height: auto;
}

.testim-sm .item {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.testim-sm .item .rate h5 {
  font-size: 16px;
}

.testim-sm .item .rate .stars {
  font-size: 13px;
  color: #f59e0b;
  margin-left: 10px;
}

.testim-sm .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testim-sm .item .info .info-text {
  padding-left: 15px;
}

.testim-sm .item .info .info-text p {
  font-size: 14px;
  opacity: .7;
}

.testim-sm .swiper-slide-active .item {
  background: #0D0D0D;
  color: #fff !important;
}

.testim-sm .swiper-slide-active .item h3,
.testim-sm .swiper-slide-active .item span,
.testim-sm .swiper-slide-active .item p,
.testim-sm .swiper-slide-active .item h6 {
  color: #fff !important;
}

.testim-sm .brands h6 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}

.testim-sm .brands .row {
  padding: 30px 15px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}

.testim-sm .brands .row .img {
  width: 90px;
  margin: auto;
}

/* --------------- Blogs --------------- */
.blog-mp {
  background: #000000;
  color: #fff;
}

.blog-mp .item .cont h6 a {
  color: #fff !important;
  transition: all .4s;
}

.blog-mp .item .cont h6 a:hover {
  color: var(--accent-color) !important;
}

.blog-mp .item .info .author-info span,
.blog-mp .item .info .date span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.blog-mp .bord {
  position: relative;
}

.blog-mp .bord:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-mp .item .info .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-mp .item .info .author-info,
.blog-mp .item .info .date {
  font-size: 13px;
  text-transform: uppercase;
}

.blog-mp .item .info .author-info span,
.blog-mp .item .info .date span {
  display: block;
  line-height: 22px;
}

.blog-mp .item .info .author-info .sub-color {
  text-transform: capitalize !important;
}

.blog-mp .item .img {
  border-radius: 15px;
  height: 255px;
  overflow: hidden;
}

/* --------------- Contact --------------- */
.contact-sa .box {
  padding: 120px 60px;
  background-image: url(../imgs/gr-back.png);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  overflow: hidden;
}

.contact-sa .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.contact-sa .contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-sa .contact-form label .star {
  color: red;
  padding-left: 5px;
}

.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.contact-sa .contact-form button {
  background: transparent;
  color: #fff;
}

/* --------------- footer --------------- */
.footer-mp .info-item h6 {
  font-size: 18px;
  line-height: 1.5;

}

.footer-mp .footer-logo {
  position: relative;
  margin-top: 100px;
}

.footer-mp .footer-logo h1 {
  font-size: 160px;
  line-height: 1.2;
}

.footer-mp .footer-logo h1 span {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.footer-mp .footer-logo .union {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  background: var(--theme-color);

  padding: 10px;
  border-radius: 50%;
}

.footer-mp .footer-logo .union .icon {
  width: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.footer-mp .social-icon {
  padding-top: 30px;
}

.footer-mp .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 14px;
  margin: 0 5px;
  color: #fff;
  transition: all .4s;
}

.footer-mp .social-icon a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--main-color);
}

.footer-mp .sub-footer .copy p {
  font-size: 14px;

}

.footer-mp .sub-footer .links {
  width: 100%;
}

.footer-mp .sub-footer .links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  transition: all .4s;
}

.footer-mp .sub-footer .links a:hover,
.footer-mp .sub-footer .links .active {
  color: var(--accent-color) !important;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--theme-color);
}

/* Preloader Fix */
.loader-wrap {
  background: var(--main-color) !important;
}

.loader-wrap svg {
  fill: var(--main-color) !important;
}

.loader-wrap .load-text {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 5px;
  position: relative;
  z-index: 100;
}

.loader-wrap .load-text span {
  color: #fff !important;
  display: inline-block;
}

.loader-wrap-heading {
  position: relative;
  z-index: 100;
}

/* Hamburger Menu Info Fix */
.hamenu .cont-info h5,
.hamenu .cont-info h5 a {
  color: #fff !important;
}

/* Button Stability */
.butn.bg-light {
  background-color: #fff !important;
  color: var(--main-color) !important;
  border: 1px solid #eee !important;
}

.butn.bg-light:hover {
  background-color: var(--accent-color) !important;
  color: var(--main-color) !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-3px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color);
  margin: 0 0 15px;
}

h1 {
  font-size: calc(32px + 2vw);
}

h2 {
  font-size: calc(28px + 1.5vw);
  color: var(--title-color) !important;
}

h3 {
  font-size: calc(24px + 1vw);
}

h4 {
  font-size: calc(20px + 0.8vw);
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-color);
}

.sub-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent-color) !important;
  background-color: var(--main-color);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
}

/* ====================== [ Responsive Breakpoints ] ====================== */

/* Extra Large Desktops (XXL) - Default styles already applied above */

/* Desktops (XL: 1200px - 1399px) */
@media screen and (max-width: 1399.98px) {
    .container { max-width: 1140px; }
}

/* Laptops/Desktops (Large: 992px - 1199px) */
@media screen and (max-width: 1199.98px) {
    .container { max-width: 960px; }
    .header-mst .caption h1 { font-size: 50px; }
    .footer-mp .footer-logo h1 { font-size: 120px; }
}

/* Tablets Portrait (Medium: 768px - 991px) */
@media screen and (max-width: 991.98px) {
    .container { max-width: 720px; }
    
    .navbar .navbar-nav {
        margin-left: 0;
        background: var(--main-color);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
    }
    .navbar .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px;
    }
    .navbar .logo img { width: 180px !important; height: auto !important; }
    .navbar .topnav .butn { display: none; }

    .header-mst { padding: 120px 0 60px !important; text-align: center; }
    .header-mst .caption h1 { font-size: 42px !important; margin-bottom: 20px; }
    .header-mst .butons { display: flex; justify-content: center !important; margin: 20px 0 !important; }
    .header-mst .cont { margin-top: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .header-mst .cont .d-flex { justify-content: center; }
    
    .hero-mst .img { transform: rotate(0); height: 400px; }
    .services-accord2 .accordion .accordion-title h2 { font-size: 36px; }
    .about-smt .boxs { bottom: 0; margin-top: 30px; }
    .about-smt .boxs .item { padding: 30px 15px; }
    .footer-mp .footer-logo h1 { font-size: 80px; }
}

/* Phones Landscape / Small Tablets (Small: 576px - 767px) */
@media screen and (max-width: 767.98px) {
    .container { max-width: 540px; }
    
    .header-mst .caption h1 { font-size: 34px !important; }
    .sec-head { flex-direction: column; align-items: flex-start !important; }
    .sec-head .ml-auto { margin-left: 0 !important; margin-top: 20px; }
    
    .hero-mst .exp { display: none; }
    .footer-mp .footer-logo .union { display: none; }
    .about-smt .boxs .d-flex { flex-direction: column; }
    .about-smt .boxs .item { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}

/* Extra Small Phones Portrait (< 576px) */
@media screen and (max-width: 575.98px) {
    .container { max-width: 100%; padding: 0 20px; }
    
    .navbar .logo img { width: 140px !important; }
    .header-mst { padding: 100px 0 40px !important; }
    .header-mst .caption h1 { font-size: 28px !important; }
    .services-accord2 .accordion .accordion-title h2 { font-size: 28px; }
    .footer-mp .footer-logo h1 { font-size: 50px; }
    
    .testim-sm .item h3 { font-size: 24px; }
    .blog-mp .item .cont h6 { font-size: 18px; }
}

/* ====================== [ Global Utilities ] ====================== */

.butn-bord:hover,
.butn:hover {
    background: var(--accent-color) !important;
    color: var(--main-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-3px);
    transition: all .4s;
}

.progress-wrap {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 99999999 !important;
    display: block !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.progress-wrap path {
    stroke: var(--accent-color) !important;
}

.progress-wrap:after {
    color: var(--accent-color) !important;
}