*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  box-sizing: border-box;
}

ul {
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all ease 0.3s;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: auto;
}

.base-button {
  cursor: pointer;
  height: 58px;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  background-color: rgb(4, 0, 32);
  border: 1px solid transparent;
  padding: 12px 26px;
  display: inline-block;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: capitalize;
}

.base-button.secondary {
  background-color: transparent;
  border-color: #000;
  color: #000;
}

.btn-arrow {
  transform: rotate(-45deg);
  position: relative;
  left: 5px;
}

.base-button.secondary,
.base-button:hover {
  background-color: transparent;
  border-color: #000;
  color: #000;
}

.base-button.secondary:hover {
  background-color: #000;
  color: #fff;
}

.base-button:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
  color: #000;
}

.base-button.secondary:hover .btn-arrow {
  color: #fff;
}

.flex {
  display: flex;
  align-items: center;
}

.spacer {
  padding: 60px 0;
}

@keyframes movearrow {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1) rotate(-45deg);
  }

  25% {
    opacity: 0;
    transform: translateX(10px) translateY(-10px) scale(0.9) rotate(-45deg);
  }

  26% {
    opacity: 0;
    transform: translateX(-10px) translateY(10px) scale(0.9) rotate(-45deg);
  }

  55% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1) rotate(-45deg);
  }
}

.bg-overlay {
  position: relative;
  transition: all ease 2s;
}

.bg-overlay:before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.stopscroll {
  overflow: hidden;
}


/*HomePage CSS Starts*/

/* Template 3 */

.index-pg .header,
.about-me-pg .header {
  position: absolute;
  width: 100%;
  top: 0;
}

.header {
  padding: 0;
  z-index: 10;
  position: relative;
}

.header-inner {
  border-bottom: 1px solid rgba(8, 8, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  position: relative;
}

.logo-img {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #03002e;
  text-transform: uppercase;
  padding: 20px 0;
}

.lets-talk-header__anchor {
  font-size: 16px;
  position: relative;
  font-weight: 600;
  font-family: "DM Sans", sans-serif, Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 25px 15px;
}

.index-pg .lets-talk-header__anchor:hover,
.index-pg .lets-talk-header__anchor:hover .btn-arrow {
  color: #fff;
}

.lets-talk-header__anchor:hover,
.lets-talk-header__anchor:hover .btn-arrow {
  color: #FF9330;
}

.lets-talk-header__anchor:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
}

.hamburger-menu {
  width: 80px;
  height: 80px;
  background: #000;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-lines {
  background: #fff;
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px;
}

.navbar {
  position: fixed;
  right: 0;
  background: #000;
  height: 100vh;
  top: 0;
  bottom: 0;
  width: 90vw;
  padding-left: 15px;
  transition: all ease 0.5s;
  z-index: 999;
}

.navbar-logo .logo-img {
  color: #fff;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
}

.navbar-header {
  border-bottom: 1px solid rgb(255 255 255 / 40%);
  justify-content: space-between;
}

.navbar-cross {
  background: #ffb646;
  width: 100px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.navbar-lines {
  border: 1px solid #fff;
  width: 25px;
  margin: 2px;
  transform: rotate(45deg);
}

.navbar-lines:last-child {
  transform: rotate(-45deg);
  top: -5px;
  position: relative;
}

.navigation-list {
  padding: 32px 15px 0 0;
}

.navigation-list__item {
  border-bottom: 1px solid rgb(255 255 255 / 40%);
}

.navigation-list__anchor {
  color: #fff;
  text-transform: uppercase;
  justify-content: space-between;
}

.navigation-list__anchor {
  color: #fff;
  text-transform: capitalize;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  line-height: 70px;
}

.navigation-list__anchor:hover {
  color: #ffb646;
}

.navigation-list__anchor:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
  color: #ffb646;
}

.navigation-social-icons {
  margin-top: 20px;
}

.navigation-social-icon-link {
  margin-right: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.navigation-social-icon-link:hover {
  color: #ffb646;
}


/*Main css*/

.top-section {
  background-color: #ffe9d9;
  padding: 140px 0 60px;
}

.author-section {
  justify-content: space-between;
  gap: 160px;
}

.author-description {
  flex: 1 1 20%;
}

.author-image {
  display: none;
  flex: 1 1 80%;
}

.author-image img {
  display: none;
  position: absolute;
  top: 0;
  right: 0px;
  max-width: 730px;
}

.main-heading {
  font-size: 17vw;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.main-heading:before,
.section-heading:before,
.experience-years:before {
  content: '';
  position: absolute;
  width: 104px;
  left: -8px;
  height: 104px;
  top: 33px;
  bottom: 0;
  background: #FFB646;
  border-radius: 100%;
  z-index: -1;
}

.main-heading:before {
  width: 70px;
  height: 70px;
}

.main-preheading,
.main-postheading {
  font-size: 32px;
  font-weight: 700;
  line-height: 30px;
}

.main-preheading {
  position: relative;
  padding-left: calc(100% - 88%);
}

.main-preheading:before {
  content: '';
  position: absolute;
  left: 0;
  height: 1px;
  width: 10%;
  border: 1px solid;
  top: 0;
  bottom: 0;
  margin: auto;
}

.main-postheading {
  font-size: 22px;
  margin: 30px 0;
}

.author-social.flex {
  margin-top: 40px;
  gap: 50px;
}

.author-social-icon-item {
  margin-right: 20px;
  cursor: pointer;
}

.author-social-icon-item i {
  font-size: 20px;
  transition: all ease 0.3s;
}

.author-social-icon-link:hover i,
body.dark .author-social-icon-link:hover i{
  color: #FF9330;
}

.author-social-text {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.author-social-text:before {
  content: '';
  position: absolute;
  height: 100%;
  border-right: 1px solid rgba(8, 8, 8, 0.6);
  right: -25px;
}

/*grow business css starts*/

.grow-business {
  padding: 40px 0;
}
.grow-business-section {
  padding: 20px;
  border-radius: 30px;
  background: transparent;
  border: 2px solid #feb646;
  box-shadow: 10px -15px 0px 0 rgb(254 182 70);
}
.grow-business-top {
  justify-content: space-between;
}

.grow-business-heading {
  color: #000;
  font-size: 1.8rem;
  line-height: 2.5rem;
  text-transform: capitalize;
}

.grow-business-bottom {
  padding-top: 10px;
  border-top: 3px solid #feb646;
  margin-top: 30px;
}

.grow-business-points {
  justify-content: space-between;
}

.grow-business-bullets {
  font-size: 60px;
  font-weight: 600;
  position: relative;
  width: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.grow-business-bullets i {
  padding-right: 10px;
  line-height: 20px;
  font-size: 24px;
}

.grow-business-bullets i:before {
color: #feb646;
}

.grow-business-bullet-text {
  font-size: 18px;
  text-transform: capitalize;
  padding-left: 30px;
}

.grow-business-bullets:not(:last-child):after {
  content: '';
  position: absolute;
  left: 120%;
  border-right: 2px solid #feb646;
  height: 100%;
}


/*speciality css starts*/

.section-heading {
  display: inline-block;
  font-size: 10vw;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.section-heading:before {
  width: 60px;
  height: 60px;
  top: 28px;
}

.section-subheading {
  color: #ff9330;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.speciality-heading,
.speciality-content {
  flex: 1 1 50%;
}

.speciality-bottom {
  gap: 25px;
  margin-top: 60px;
  align-items: flex-start;
  flex-direction: column;
}

.box-layout-list {
  flex: 1 1 70%;
  gap: 25px;
  flex-wrap: wrap;
}

.section-text {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(8, 8, 8, 0.6);
}

.box-layout-items {
  padding: 28px 24px;
  background-color: rgba(8, 8, 8, 0.04);
  border-radius: 8px;
  width: 100%;
}

.box-layout-items:hover {
  background: #fff;
  box-shadow: 0px 36px 100px 0px rgba(8, 8, 8, 0.15);
}

.box-layout-items:hover .box-layout-heading,
.box-layout-items:hover .btn-arrow {
  color: #ff9330;
}

.box-layout-items:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
}

.box-layout-heading {
  justify-content: space-between;
  text-transform: capitalize;
}

.box-layout-icon {
  background-image: url('./images/speciality-icon.svg');
  background-size: 24px;
  background-repeat: no-repeat;
  height: 48px;
  display: inline-block;
  margin-bottom: 50px;
  width: 48px;
  padding: 20px;
  background-color: #fff;
  border-radius: 100%;
  background-position: center;
}

.box-layout-items:hover .box-layout-icon {
  background-color: rgba(8, 8, 8, 0.04);
}

.speciality-icon.website-design {
  background-image: url('./images/website-design.svg');
}

.speciality-icon.webflow-development {
  background-image: url('./images/webflow-development.svg');
}

.speciality-icon.responsive-design {
  background-image: url('./images/responsive-design.svg');
  background-size: 30px;
}

.speciality-icon.interaction-design {
  background-image: url('./images/interaction-design.svg');
}

.speciality-icon.performance-opt {
  background-image: url('./images/performance-opt.svg');
  background-size: 26px;
}

.speciality-link {
  background: #000;
  flex: 1 1 30%;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px 24px;
  height: 100%;
  position: relative;
  border-radius: 8px;
  flex-direction: row;
  gap: 36px;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
}


.speciality-arrow {
  color: #ff9330;
  font-size: 60px;
  width: 100%;
  justify-content: flex-end;
}

.speciality-link:hover .speciality-arrow .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
}

.speciality-link-heading {
  color: #ff9330;
  text-transform: uppercase;
  font-size: 16px;
}

.speciality-link-text {
  color: #fff;
  font-size: 6vw;
  font-weight: 700;
  display: block;
}

.speciality-additional {
  color: #000
}

.speciality-additional-heading {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}


.speciality-additional-items {
  position: relative;
  padding-left: 20px;
}

.speciality-additional-items:before {
  content: "";
  background: #ff9330;
  font-size: 80px;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #ff9330;
  border-radius: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}

/* speciality css ends */

/* about me css starts */

.about-me-inner {
  padding-bottom: 90px;
  flex-direction: column;
  flex-wrap: wrap;
}

.about-me-left,
.about-me-description {
  flex: 1 1 50%;
  position: relative;
  width: 100%;
}

.about-me-img {
  max-width: 100%;
}

.about-me-img.light,
.signature-img.light {
    display: none;
}

.about-me-experience {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.about-experience-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.5px;
  color: white;
  text-shadow: 1px 1px 0 rgba(8, 8, 8, 0.4), -1px -1px 0 rgba(8, 8, 8, 0.4), 1px -1px 0 rgba(8, 8, 8, 0.4), -1px 1px 0 rgba(8, 8, 8, 0.4), 1px 1px 0 rgba(8, 8, 8, 0.4);
}

.experience-years {
  display: block;
  font-size: 80px;
  font-weight: 600;
  line-height: 100px;
  color: #000;
  margin-bottom: 0;
  text-shadow: none;
  position: relative;
}

.experience-years:before {
  top: 10px;
  left: -4px;
  width: 80px;
  height: 80px;
}

.about-me .section-text {
  margin: 6px 0 18px;
}


.about-description-bottom {
  justify-content: space-between;
  margin-bottom: 20px;
}

.about-description-heading {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.about-tech {
  background: url('./images/html_icon.png') no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  background-size: cover;
  margin-right: 16px;
  position: relative;
}

.about-tech:before {
  content: attr(data-tech);
  position: absolute;
  background-color: transparent;
  color: #ff9330;
  padding: 0.5em 1em;
  border-radius: 100px;
  transform: translate(-10px, -15px) rotate(25deg);
  border: 1px solid #ff9330;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.25, 0.1, 0.63, 2.37);
}

.about-tech:hover::before {
  transform: translate(-20%,-40px) rotate(0deg);
  opacity: 1;
}

.about-tech:hover::after {
  transform: translate(15px, -9px) rotate(0deg);
  opacity: 1;
}

.about-tech.css {
  background: url('./images/css_icon.svg') no-repeat;
  background-size: cover;
}

.about-tech.js {
  background: url('./images/js_icon.svg') no-repeat;
  background-size: cover;
}

.about-tech.react {
  background: url('./images/react_icon.svg') no-repeat;
  background-size: cover;
}

.about-tech.bootstrap {
  background: url('./images/bootstrap_icon.svg') no-repeat;
  background-size: cover;
}

.about-tech.shopify {
  background: url('./images/shopify_icon.svg') no-repeat;
  background-size: cover;
}

.about-tech:last-child {
  margin-right: 0;
}

/* about me css ends */

/* portfolio css start */

.portfolio {
  /* background-color: #f5f5f5; */
  background-color: #ffe9d9;
  /* margin-top: 120px; */
}

.portfolio-items {
  gap: 20px;
  margin: 48px 0;
}

.portfolio-heading {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-sites-img {
  border-radius: 12px;
}

.portfolio-sites-link {
  margin: 20px 10px;
  font-size: 16px;
  justify-content: space-between;
  font-weight: 600;
  line-height: 1;
}

.portfolio-sites-anchor:hover,
.portfolio-sites-link:hover .btn-arrow {
  color: #FF9330;
}

.portfolio-sites-anchor:hover .btn-arrow,
.portfolio-sites-link:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
}

/* portfolio css end */

/* testimonial css start */

.swiper {
  width: 100%;
  height: 100%;
}

.testimonial-section {
  gap: 40px;
  flex-direction: column;
}

.testimonial-heading {
  flex: 1 1 20%;
}

.testimonial-content {
  max-width: 100%;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  position: relative;
  padding: 50px 0 30px;
  position: relative;
}

.testimonial-text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('./images/testimonial-quotes.svg') no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 24px;
  padding-left: 56px;
  position: relative;
  margin: 0;
}

.testimonial-author:before {
  content: '';
  position: absolute;
  border: .5px solid #000;
  width: 5%;
  height: 1px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.testimonial .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffb646;
}

/* testimonial css end */

/* pricing css start */

.pricing-pg .header,
.contact-us-pg .header,
body.dark .about-me-pg .header,
body.dark .index-pg .header{
  background: #000;
}

.pricing-pg .logo-img,
.pricing-pg .lets-talk-header__anchor,
.contact-us-pg .logo-img,
.contact-us-pg .lets-talk-header__anchor {
  color: #fff;
}

.pricing-pg .hamburger-menu,
.contact-us-pg .hamburger-menu {
  background: #FFB646;
}

.pricing {
  background: #f5f5f5;
}

.pricing-top {
  justify-content: space-between;
  margin-bottom: 40px;
}

.pricing-bottom {
  flex-direction: column;
  gap: 40px;
}

.pricing-list {
  justify-content: space-between;
  flex: 1 1 100%;
  width: 100%;
}

.pricing-items {
  padding: 28px 24px;
  align-items: flex-start;
  background-color: rgba(8, 8, 8, 0.04);
  border-radius: 8px;
  width: 100%;
}

.pricing-items:hover {
  background: #fff;
  box-shadow: 0px 36px 100px 0px rgba(8, 8, 8, 0.15);
}

.pricing-items:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
  color: #ff9330;
}

.pricing-box {
  gap: 70px;
  flex-direction: column;
}

.contact-form-fields.price-dropdown {
  max-width: 100%;
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  position: relative;
  background-position: 98% 46px;
  background-size: 30px;
}

.contact-form-fields.price-dropdown select {
  -webkit-appearance: none;
  background: transparent;
}

body.dark .contact-form-fields.price-dropdown select {
    background:#fff;
}

.plan-detail {
  justify-content: space-between;
  width: 100%;
}

.plan-type {
  color: #676767;
  font-size: 18px;
}

.plan-price {
  color: #FF9330;
  font-size: 22px;
  font-weight: 600;
}

.pricing-item-heading {
  flex-direction: column;
  align-items: flex-start;
  font-size: 24px;
  line-height: 24px;
  width: 100%;
}

.pricing-item-subheading {
  font-family: "DM Sans", sans-serif;
  justify-content: space-between;
  width: 100%;
  flex: 1 1 100%;
  color: #676767;
  font-size: 18px;
  font-weight: 300;
  margin-top: 6px;
}

.pricing-btn {
  text-transform: capitalize;
}

.pricing-custom {
  flex-direction: column;
  width: 100%;
  gap: 40px;
}

.divider {
  width: 100%;
  text-align: center;
  position: relative;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  font-style: italic;
}

.divider .or-text {
  position: relative;
  width: 80px;
  display: inline-block;
  background: #f5f5f5;
}

.divider:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  border-bottom: 1px solid;
  height: 1px;
}

.pricing-custom-text {
  font-size: 1.5rem;
  color: #000;
}

.pricing-custom-link {
  color: #f69f4e;
  border-bottom: 2px solid;
  font-style: italic;
}

.pricing-custom-link:hover {
  color: #ff9330;
}

.pricing-custom-link:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
}

/*Contact Us Pg*/

.contact-us-section {
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contact-left,
.contact-right {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

.contact-list {
  margin: 40px 0;
}

.contact-items {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.contact-item-detail {
  align-items: flex-start;
  gap: 20px;
}

.contact-form {
  gap: 28px 18px;
  flex-wrap: wrap;
}

.contact-form-fields {
  max-width: 100%;
  flex: 0 0 auto;
  width: 100%;
}

.contact-form-fields:nth-last-child(2) {
  max-width: 100%;
}

.contact-form label {
  font-size: 14px;
  line-height: 20px;
  color: #6b6b6b;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-fields.price-dropdown select {
  width: 100%;
  height: 60px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #767676;
  outline: none;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}

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

.contact-label {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(8, 8, 8, 0.6);
}

.contact-link {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.contact-icon {
  width: 32px;
  height: 42px;
  background: url('/assets/images/email.svg') 0 8px/32px no-repeat;
  /* background-repeat: no-repeat;
  background-size: cover; */
}

.contact-icon.phone {
  background: url('/assets/images/phone.svg') 0 8px/32px no-repeat;
}


/*About me page css*/

.about-me-pg .about-me-inner {
  padding-bottom: 0;
}

.about-me-pg .about-me {
  background: #ffe9d9;
}

.designation-title,
.designation-text {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0;
}

.designation-text {
  font-size: 20px;
}

.signature-img {
  max-width: 300px;
}

.my-vision-inner {
  gap: 200px;
  flex-direction: column;
  gap: 40px;
}

.my-vision .section-heading:before {
    top: -8px;
}

.vision-top .section-text {
  margin: 30px 0;
}

.resume {
  /* background: #f5f5f5; */
  background: #ffe9d9;
}

/*Switch css*/

/* .resume .switch {
  position: relative;
  width: 300px;
  height: 150px;
  background: linear-gradient(0deg, #87ceeb 0%, #e0f6ff 100%);
  border-radius: 75px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 4px solid #ffffff;
  display: block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 1s;
}

.sun,
.moon {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 25px;
  transition: 1s;
}

.sun {
  background: radial-gradient(circle, #ffd700 30%, #ffa500 70%);
  left: 25px;
  box-shadow: 0 0 20px #ffd700;
  transform: scale(1);
}

.moon {
  background: radial-gradient(circle, #f4f4f4 30%, #e0e0e0 70%);
  right: -120px;
  box-shadow: 0 0 20px #f4f4f4;
  transform: scale(0);
}

.cloud {
  background-color: white;
  border-radius: 50px;
  position: absolute;
  transition: 1s;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background-color: white;
  border-radius: 50%;
}

.cloud1 {
  width: 100px;
  height: 30px;
  top: 30px;
  left: 140px;
}

.cloud1::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud1::after {
  width: 40px;
  height: 40px;
  top: -20px;
  right: 10px;
}

.cloud2 {
  width: 60px;
  height: 20px;
  top: 80px;
  left: 200px;
}

.cloud2::before {
  width: 30px;
  height: 30px;
  top: -15px;
  left: 5px;
}

.cloud2::after {
  width: 25px;
  height: 25px;
  top: -12px;
  right: 5px;
}

.star {
  position: absolute;
  background-color: white;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  opacity: 0;
  transition: 1s;
}

.star1 {
  width: 20px;
  height: 20px;
  top: 30px;
  left: 40px;
}
.star2 {
  width: 15px;
  height: 15px;
  top: 60px;
  left: 80px;
}
.star3 {
  width: 10px;
  height: 10px;
  top: 100px;
  left: 60px;
}
.star4 {
  width: 12px;
  height: 12px;
  top: 40px;
  left: 120px;
}
.star5 {
  width: 8px;
  height: 8px;
  top: 80px;
  left: 140px;
}

input:checked + .slider {
  background: linear-gradient(0deg, #1a1a2e 0%, #16213e 100%);
}

input:checked + .slider .sun {
  left: -120px;
  transform: scale(0);
}

input:checked + .slider .cloud {
  transform: translateX(300px) scale(0);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

input:checked + .slider .star {
  animation: twinkle 2s infinite;
}

input:checked + .slider .star1 {
  animation-delay: 0s;
}
input:checked + .slider .star2 {
  animation-delay: 0.4s;
}
input:checked + .slider .star3 {
  animation-delay: 0.8s;
}
input:checked + .slider .star4 {
  animation-delay: 1.2s;
}
input:checked + .slider .star5 {
  animation-delay: 1.6s;
}

input:checked + .slider .moon {
  right: 25px;
  transform: scale(1);
} */

/*Dark Mode css*/


body.dark,
body.dark .speciality,
body.dark .about-me,
body.dark .testimonial,
body.dark .resume,
body.dark .pricing-items,
body.dark .my-vision .speciality-link,
body.dark .pricing-pg .pricing,
body.dark .top-section .base-button {
  background: #000;
}

body.dark .box-layout-items,
body.dark .speciality-link,
body.dark .pricing,
body.dark .portfolio,
body.dark .my-vision,
body.dark .resume-accordion__val,
body.dark .resume-experience-items,
body.dark .resume-skills-items,
body.dark .about-me-pg .testimonial,
body.dark .contact-us,
body.dark .pricing-pg .pricing-items,
body.dark .pricing-pg .header,
body.dark .divider .or-text {
  background: #1a1a1a;
}

body.dark .box-layout-heading,
body.dark .box-layout-items:hover .box-layout-heading,
body.dark .speciality .section-heading,
body.dark .about-me .section-heading,
body.dark .pricing .section-heading,
body.dark .pricing-item-heading,
body.dark .portfolio .section-heading,
body.dark .pricing-item-heading,
body.dark .resume .section-heading,
body.dark .resume .resume-accordion-heading,
body.dark .resume .resume-accordion-detail,
body.dark .resume .resume-accordion-detail a,
body.dark .resume .resume-experience-date a,
body.dark .about-me-link .base-button:hover .btn-arrow,
body.dark .author-description .base-button:hover .btn-arrow,
body.dark .experience-years,
body.dark .testimonial .section-heading,
body.dark .pricing-item-heading,
body.dark .pricing-btn:hover .btn-arrow,
body.dark .vision-link .base-button:hover .btn-arrow,
body.dark .contact-us-pg .logo-img,
body.dark .contact-us-pg .lets-talk-header__anchor,
body.dark .about-me-pg .lets-talk-header__anchor,
body.dark .index-pg .lets-talk-header__anchor,
body.dark .section-heading,
body.dark .contact-link,
body.dark .author-social-icon-item i,
body.dark .author-social-text,
body.dark .base-button:hover i,
body.dark .top-section .base-button,
body.dark .top-section .base-button,
body.dark .portfolio-sites-anchor:hover, 
body.dark .portfolio-sites-link:hover .btn-arrow,
body.dark .portfolio-sites-anchor:hover .portfolio-sites-link,
body.dark .about-me-pg .logo-img,
body.dark .index-pg .logo-img,
body.dark .author-description .main-heading,
body.dark .speciality-additional-heading,
body.dark .divider,
body.dark .pricing-custom-text,
body.dark .grow-business-heading,
body.dark .grow-business-bullets {
  color: #fff;
}

body.dark .speciality .section-text,
body.dark .about-description-heading,
body.dark .about-me .section-text,
body.dark .testimonial .testimonial-text,
body.dark .resume .resume-accordion-text,
body.dark .resume .resume-accordion-label,
body.dark .testimonial-author,
body.dark .pricing .plan-type,
body.dark .pricing-item-subheading,
body.dark .pricing .pricing-item-subheading,
body.dark .vision-top .section-text,
body.dark .contact-label,
body.dark .author-social-text:before,
body.dark .contact-form label,
body.dark .portfolio-sites-link,
body.dark .speciality-additional {
  color: rgba(255, 255, 255, 0.8);
}

body.dark .box-layout-items:hover,
body.dark .pricing-items:hover {
  background: #2e2e2e;
}

body.dark .box-layout-items:hover .speciality-icon,
body.dark .resume .resume-accordion__val.active,
body.dark .resume .resume-accordion__val:hover,
body.dark .divider:before {
  background-color: #fff;
}

body.dark .top-section .base-button:hover,
body.dark .top-section .base-button:hover i {
  color: #000;
}

body.dark .about-me-link .base-button,
body.dark .author-description .base-button,
body.dark .pricing-btn,
body.dark .vision-link .base-button,
body.dark .base-button {
  background: #fff;
  color: #000;
}

body.dark .about-me-link .base-button:hover,
body.dark .author-description .base-button:hover,
body.dark .pricing-btn:hover,
body.dark .vision-link .base-button:hover,
body.dark .base-button:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

body.dark .grow-business-section {
  box-shadow: 20px -15px 0px 0 #ffffff;
  border-color: #fff;
  background: #1a1a1a;
}

body.dark .about-experience-text {
  color: #080808;
  text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}

body.dark .testimonial-author:before,
body.dark .grow-business-bottom,
body.dark .grow-business-bullets:not(:last-child):after {
  border-color: #fff;
}

body.dark .testimonial-text:before {
  background: url('./images/testimonial-quotes-white.svg') no-repeat;
}

body.dark .testimonial .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  border: 1px solid #fff;
  opacity: 1;
}

body.dark .testimonial .swiper-pagination .swiper-pagination-bullet-active,
body.dark .contact-us-pg .hamburger-menu,
body.dark .about-me-pg .hamburger-menu,
body.dark .index-pg .hamburger-menu {
  background-color: #ffb646;
  border-color: #ffb646;
}

body.dark .about-me-pg .about-me,
body.dark .index-pg .top-section {
  background: linear-gradient(to right, #0f0f0f, #2f2f2f);
}

body.dark .about-me-pg .about-me .section-text,
body.dark .designation-title,
body.dark .designation-text,
body.dark .about-me-pg .about-me .section-heading{
  color: #ffffffd6;
}

body.dark .contact-icon {
  background: url('/assets/images/email-white.svg') 0 8px / 32px no-repeat;
}

body.dark .contact-icon.phone {
  background: url('/assets/images/phone-white.svg') 0 8px / 32px no-repeat;
}

body.dark .author-social-text:before,
body.dark .contact-items {
  border-color: rgba(255, 255, 255, 0.3);
}

body.dark .resume .resume-accordion-detail a,
body.dark .resume .resume-experience-date a {
  pointer-events: none;
}


body.dark .about-me-img.light,
body.dark .signature-img.light{
    display: block;
}

body.dark .about-me-img.dark,
body.dark .signature-img.dark {
    display: none;
}

.resume-heading {
  text-align: left;
}

.resume-accordion-tabs {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  max-width: 1100px;
  margin: auto;
}

.resume-accordion-tabs.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.resume-accordion {
  margin-top: 30px;
}

.resume-accordion-list {
  text-align: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}

.resume-accordion__val,
.resume-experience-items,
.resume-skills-items {
  border: 0;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  min-width: 160px;
  text-transform: capitalize;
  background-color: #080808;
  color: #ffffff;
  line-height: 1;
  border-radius: 8px;
  transition: all ease 0.3s;
}

.resume-accordion__val.active,
.resume-accordion__val:hover {
  background-color: #ffb646;
  color: #080808;
}

.resume-accordion__val.active .btn-arrow,
.resume-accordion__val:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
  color: #000000;
}

.resume-accordion-inner {
  align-items: flex-start;
  gap: 90px;
}

.resume-accordion-left,
.resume-accordion-right {
  flex: 1 1 100%;
  max-width: 100%;
}

.resume-accordion-heading {
  font-size: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.resume-accordion-text {
  color: #5c5c5c;
}

.resume-accordion-description {
  margin-bottom: 14px;
}

.resume-accordion-label {
  color: #5c5c5c;
  font-size: 18px;
  width: 50%;
}

.resume-accordion-detail {
  font-size: 20px;
  text-align: left;
  width: 50%;
}

.experience-tab .resume-accordion-inner {
  flex-direction: column;
  gap: 0;
}

.resume-experience {
  width: 100%;
}

.resume-experience-list {
  justify-content: space-between;
  gap: 10px;
}

.resume-experience-items {
  width: 100%;
  padding: 25px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  font-family: "DM Sans", sans-serif;
}

.resume-experience-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.resume-experience-company {
  color: #ffffffed;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.resume-experience-company:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 10px;
  width: 10px;
  background: #ffb646;
  border-radius: 100%;
}

.resume-experience-designation {
  color: #ffffffed;
  font-size: 22px;
}

.skills-tab .resume-accordion-inner {
  flex-direction: column;
  gap: 0;
}

.resume-skills {
  width: 100%;
}

.resume-skills-list {
  flex-wrap: wrap;
  gap: 10px;
}

.resume-skills-items {
  flex: 1 1 47%;
  max-width: 48.5%;
  padding: 20px 14px;
  width: 100%;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  border-radius: 16px;
}

.skills-details {
  color: #ffffffed;
  width: calc(100% - 40px);
}

.skills-icon {
  background: url('./images/html-logo.svg') no-repeat 0 0 / 40px;
  width: 40px;
  height: 40px;
}

.skills-icon.css {
  background: url('./images/css-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.javascript {
  background: url('./images/js-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.jquery {
  background: url('./images/jquery-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.react {
  background: url('./images/react-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.figma {
  background: url('./images/figma-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.shopify {
  background: url('./images/shopify-logo.svg') no-repeat 0 0 / 30px;
}

.skills-icon.styledcomp {
  background: url('./images/styled-components-logo.svg') no-repeat 0 0 / 40px;
}

.skills-icon.storybook {
  background: url('./images/storybook-logo.svg') no-repeat 0 0 / 30px;
}

.skills-name {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: "Syne", sans-serif;
}

.portfolio-tab .resume-accordion-inner {
  flex-direction: column;
  gap: 0;
}

.portfolio-tab .portfolio-items {
  margin: 0;
}

.portfolio-tab .portfolio-sites-link {
  font-size: 20px;
}



/* footer css start */

.footer {
  background: #000;
  color: #fff;
  padding-bottom: 60px;
}

.footer .section-heading:before {
  top: -12px;
}

.footer .section-heading {
  margin-bottom: 30px;
}

.footer-details {
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 100%;
}

.footer .author-social-icon-item i {
  color: #fff;
}

.footer .author-social-icon-link:hover i {
  color: #FF9330;
}

.footer-right {
  flex: 1 1 100%;
  justify-content: flex-end;
}

.footer-right-list {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 18px;
  height: 100%;
  position: relative;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 180px;
  max-width: 100%;
  justify-content: space-between;
}

.footer-right-items {
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
}

.footer-right-heading {
  font-size: 20px;
  line-height: 28px;
}

.footer-link-text {
  color: #ff9330;
  font-size: 1.3rem;
  line-height: 24px;
  font-weight: 700;
}

.footer-link-text:hover .btn-arrow {
  animation: 0.8s linear 0s 1 normal none running movearrow;
  color: #ff9330;
}

.footer-name {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-name-text {
  color: #ffe9d9;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: left;
  font-weight: 900;
}

.footer-bottom {
  justify-content: space-between;
  margin: 20px 0;
}

.copyright-text {
  font-size: 4vw;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  line-height: 20px;
}

/* footer css end */

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

.progress-wrap::after {
  position: absolute;
  font-family: "fontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ff9330;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: 'fontAwesome';
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ff9330;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

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

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

body.light .progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

body.light .progress-wrap::after {
  color: #ff9330;
}

body.light .progress-wrap svg.progress-circle path {
  stroke: #ff9330;
}

/* Responsive Css*/

@media (min-width: 767px) {
  .spacer {
    padding: 90px 0;
  }

  .section-heading {
    font-size: 64px;
  }

  .section-heading:before {
    width: 80px;
    height: 80px;
  }

  .box-layout-items {
    width: 30%;
  }

  .header {
    padding-left: 45px;
  }

  .header-inner {
    padding-left: 0;
  }

  .lets-talk-header__anchor {
    padding: 25px 20px;
  }

  .hamburger-menu {
    width: 100px;
  }

  .navbar {
    width: 50vw;
    padding-left: 32px;
  }

  .navigation-list {
    padding-right: 32px;
  }

  .logo-img {
    font-size: 20px;
    letter-spacing: 24px;
    font-weight: 400;
  }

  .top-section {
    padding: 200px 0 100px;
  }

  .author-image {
    display: block;
  }

  .main-heading {
    font-size: 8rem;
    line-height: 8rem;
  }

  .main-heading:before {
    width: 104px;
    height: 104px;
  }

  .grow-business-section {
    padding: 20px;
    box-shadow: 20px -15px 0px 0 rgb(254 182 70);
  }

  .grow-business-bottom {
    padding-top: 40px;
  }

  .grow-business-bullets {
    max-width: 33.3%;
    font-size: 45px;
  }

  .grow-business-bullet-text {
    font-size: 14px;
    padding-left: 10px;
  }

  .grow-business-bullets:not(:last-child):after {
    display: none;
  }

  .about-me-experience {
    right: 15%;
    z-index: 1;
  }

  .experience-years:before {
    top: 0;
    left: 0;
    width: 104px;
    height: 104px;
  }

  .about-me .section-text {
    margin: 26px 0;
  }

  .speciality-link-text {
    font-size: 32px;
  }

  .portfolio-heading {
    margin-bottom: 0;
  }

  .portfolio-sites-link {
    margin: 30px 20px 0;
    font-size: 24px;
  }

  .experience-years {
    margin: 20px;
  }

  .testimonial-content {
    max-width: 70%;
  }

  .testimonial-author {
    margin-bottom: 40px;
  }

  .pricing-items {
    width: 31.2%;
  }

  .pricing-custom-text {
    font-size: 1.7rem;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .contact-items {
    max-width: 340px;
  }

  .about-me-img {
    max-width: 550px;
  }

  .resume-heading {
    text-align: center;
  }

  .resume-accordion-left {
    max-width: 40%;
  }

  .resume-accordion-right {
    max-width: 60%;
  }

  .resume-skills-list {
    gap: 18px;
  }

  .resume-skills-items {
    flex: 1 1 32%;
    max-width: 33%;
    padding: 30px 20px;
  }

  .skills-name {
    font-size: 20px;
  }

  .about-me-image {
    text-align: center;
  }

  .footer-link-text {
    font-size: 24px;
  }

  .footer-name-text {
    font-size: 3rem;
  }

  .footer-left {
    flex: 1 1 30%;
  }

  .footer-right {
    flex: 1 1 70%;
  }

  .footer-right-list {
    gap: 100px;
    min-height: 260px;
    max-width: 380px;
    padding: 36px 24px;
  }

  .copyright-text {
    font-size: 18px;
    line-height: 28px;
  }
  
}

@media (min-width: 1025px) {

  .navbar {
    width: 30vw;
    padding-left: 32px;
  }

  .main-heading {
    font-size: 8.8rem;
    line-height: 7rem;
  }

  .author-image img {
    display: block;
  }

  .grow-business-bullets {
    font-size: 60px;  
  }

  .grow-business-section {
    padding: 40px;
  }

  .grow-business-bullet-text {
    font-size: 18px;
    padding-left: 30px;
  }

  .grow-business-bullets:not(:last-child):after {
    display: block;
  }

  .speciality-link {
    flex-direction: column;
    gap: 260px;
  }

  .speciality-bottom {
    flex-direction: row;
  }

  .box-layout-items {
    width: 31.2%;
  }

  .about-me-inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .testimonial-section {
    flex-direction: row;
  }

  .about-me-image {
    text-align: left;
  }

  .my-vision-inner {
    gap: 200px;
    flex-direction: row;
  }

  .resume-accordion-left {
    max-width: 60%;
  }

  .resume-accordion-right {
    max-width: 40%;
  }

  .contact-form-fields{
    max-width: 48%;
  }

  .footer-right-items {
    flex-direction: row;
  }

  .footer-name-text {
    font-size: 5rem;
    text-align: center;
  }

}

@media (max-width: 767px) {

  .grow-business-top,
  .grow-business-points,
  .speciality-top,
  .pricing-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .grow-business-bullets:after {
    display: none;
  }

  .speciality-top,
  .about-me-inner,
  .pricing-top {
    gap: 20px;
  }

  .about-me-image {
    text-align: center;
  }

  .about-description-tech {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .about-tech:before {
    display: none;
  }

  .about-description-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
  }

  .speciality-additional-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .portfolio-items {
    flex-direction: column;
    margin: 0;
  }

  .testimonial-carousel {
    padding-bottom: 50px;
  }

  .pricing-list {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-custom-link {
    display: inline-block;
    margin-top: 10px;
  }

  .contact-us-section {
    flex-direction: column;
  }

  .about-me-pg .about-me {
    padding-top: 120px;
  }

  .resume-accordion-list {
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .resume-accordion__val {
    min-width: 47%;
  }

  .resume-accordion-inner {
    flex-direction: column;
    margin: auto;
    gap: 40px;
  }

  .resume-experience-list {
    flex-direction: column;
  }

  .resume-skills-items:last-child {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .progress-wrap,
  .progress-wrap::before,
  .progress-wrap svg,
  .progress-wrap::after {
    height: 35px;
    width: 35px;
    right: 10px;
    bottom: 15px;
  }

  .progress-wrap::before,
  .progress-wrap::after {
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    right: 0;
    margin: auto;
    bottom: 0;
  }
}