.tmp-btn.btn-border {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-body);
  line-height: 57px;
}

.tmp-btn.btn-border:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.tmp-btn.btn-border.color-white-off {
  border-color: var(--color-border-2);
  color: var(--color-white-off);
}

.tmp-btn.btn-border.color-white-off:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
}

.tmp-btn.btn-active {
  background: var(--color-primary);
  border: 2px solid transparent;
  color: var(--color-white);
}

.tmp-btn.btn-small {
  padding: 0 20px;
  height: 45px;
  line-height: 45px;
}

.tmp-btn.btn-gradient {
  color: var(--color-white);
  background-size: 300% 100%;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-secondary), var(--color-primary));
}

.tmp-btn.btn-gradient.btn-gradient-2 {
  background-image: linear-gradient(to right, var(--color-pink), var(--color-violet), var(--color-violet), var(--color-pink));
}

.tmp-btn.btn-gradient.btn-gradient-3 {
  background-image: linear-gradient(to right, var(--color-secondary), var(--color-primary), var(--color-primary), var(--color-secondary));
}

.tmp-btn.btn-gradient:hover {
  background-color: inherit;
  background-position: 102% 0;
  transition: all 0.4s ease-in-out;
}

.tmp-btn.tmp-marquee-btn {
  overflow: hidden;
}

.tmp-btn.tmp-marquee-btn span {
  display: inline-flex;
  position: relative;
  z-index: 3;
  line-height: 1.2;
}

.tmp-btn.tmp-marquee-btn span::after {
  content: attr(data-text);
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 100%;
  transform: translate(100%, -50%);
}

.tmp-btn.tmp-marquee-btn.marquee-text-y span::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
}

.tmp-btn.tmp-marquee-btn.marquee-auto span {
  animation: btnTxtMarqueeX 2s linear infinite;
}

.tmp-btn.tmp-switch-btn {
  overflow: hidden;
}

.tmp-btn.tmp-switch-btn span {
  display: inline-flex;
  position: relative;
  z-index: 3;
  transition: opacity 0.65s, transform 0.85s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.tmp-btn.tmp-switch-btn span::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  transition: inherit;
  left: 100%;
  transform: translate(50%, -50%);
}

.tmp-btn.tmp-switch-btn.tmp-switch-y span::after {
  left: 50%;
  transform: translate(-50%, 100%);
}

.tmp-btn.icon-hover .btn-text {
  transition-timing-function: cubic-bezier(0, 0.71, 0.4, 1);
  display: inline-block;
  transition: transform 0.5s;
  transform: translateX(7px);
}

.tmp-btn.icon-hover .btn-icon {
  margin-inline-start: -7px;
  display: inline-block;
}

.tmp-btn.icon-hover .btn-icon i {
  transition-timing-function: cubic-bezier(0, 0.71, 0.4, 1);
  display: inline-block;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity 0.25s, transform 0.5s;
  padding-left: 0;
}

.tmp-btn.icon-hover.icon-hover-left .btn-text {
  transform: translateX(-7px);
}

.tmp-btn.icon-hover.icon-hover-left .btn-icon {
  margin-inline-start: 0;
  margin-inline-end: -7px;
}

.tmp-btn.icon-hover.icon-hover-left .btn-icon i {
  transform: translateX(7px);
}

.tmp-btn.icon-hover.icon-hover-left:hover .btn-icon i {
  transform: translateX(-7px);
}

.tmp-btn.icon-hover.icon-hover-left:hover .btn-text {
  transform: translateX(7px);
}

.tmp-btn.hover-icon-reverse .icon-reverse-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmp-btn.hover-icon-reverse .btn-text {
  display: inline-block;
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  margin-inline-start: -23px;
}

.tmp-btn.hover-icon-reverse .btn-icon {
  display: inline-block;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}

.tmp-btn.hover-icon-reverse .btn-icon+.btn-icon {
  margin-inline-end: 0;
  margin-inline-start: 8px;
  display: inline-block;
  margin-inline-start: 0;
  margin-inline-end: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition-delay: 0s;
  order: -2;
}

.tmp-btn.hover-icon-reverse .btn-icon+.btn-icon i {
  padding-left: 0;
  padding-right: 6px;
}

.tmp-btn.rounded-player {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  padding: 0;
  line-height: 100px;
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.rounded-player {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}

.tmp-btn.rounded-player span {
  display: inline-block;
}

.tmp-btn.rounded-player span i {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.tmp-btn.rounded-player.border {
  background-image: inherit;
  border-color: var(--color-white) !important;
  border-width: 2px !important;
}

.tmp-btn.rounded-player.border:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary) !important;
}

.tmp-btn.rounded-player.sm-size {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.tmp-btn.rounded-player:focus {
  outline: none;
  color: var(--color-white);
}

.tmp-btn.rounded-player:hover {
  transform: scale(1.1);
  background: var(--color-primary);
}

.tmp-btn.rounded-player-2 {
  border: 0;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  transition: all 1s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
  border-radius: 100%;
  background: var(--color-white);
  margin: 0 auto;
  display: inline-block;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.rounded-player-2 {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-btn.rounded-player-2 {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.tmp-btn.rounded-player-2 .play-icon {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tmp-btn.rounded-player-2 .play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-6px, -9px);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-large {
  width: 60px;
  height: 60px;
  margin-left: 0;
  margin-top: 0;
}

.tmp-btn.rounded-player-2.sm-size {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.rounded-player-2.sm-size {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.tmp-btn.rounded-player-2.btn-theme-color {
  background: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color::after {
  border-color: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color::before {
  border-color: var(--color-primary);
}

.tmp-btn.rounded-player-2.btn-theme-color .play-icon::before {
  border-left: 15px solid var(--color-white);
}

.tmp-btn.rounded-player-2.btn-theme-color:hover {
  color: inherit;
  background: var(--color-primary);
}

.tmp-btn.rounded-player-2:hover {
  color: inherit;
  background: var(--color-white);
}

.tmp-btn.with-animation::after,
.tmp-btn.with-animation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
}

.tmp-btn.with-animation::before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.tmp-btn.with-animation::after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.tmp-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translate3d(0, -2px, 0);
}

.tmp-btn:hover.icon-hover .btn-text {
  transform: translateX(-7px);
}

.tmp-btn:hover.icon-hover .btn-icon i {
  opacity: 1;
  transform: translateX(7px);
}

.tmp-btn:hover.hover-icon-reverse .btn-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}

.tmp-btn:hover.hover-icon-reverse .btn-icon {
  opacity: 0;
  transition-delay: 0s;
  transform: translateX(10px);
}

.tmp-btn:hover.hover-icon-reverse .btn-icon+.btn-icon {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.225s;
}

.tmp-btn:hover.tmp-switch-btn span {
  transform: translateX(-200%);
}

.tmp-btn:hover.tmp-switch-btn span::after {
  opacity: 1;
  transform: translate(100%, -50%);
}

.tmp-btn:hover.tmp-switch-btn.tmp-switch-y span {
  transform: translateY(-200%);
}

.tmp-btn:hover.tmp-switch-btn.tmp-switch-y span::after {
  transform: translate(-50%, 150%);
}

.tmp-btn:hover.tmp-marquee-btn span {
  animation: btnTxtMarqueeX 2s linear infinite;
}

.tmp-btn:hover.tmp-marquee-btn.marquee-text-y span {
  animation: btnTxtMarqueeY 0.5s linear infinite;
}

.tmp-btn.btn-xs {
  padding: 0 14px;
  font-size: var(--font-size-b3);
  height: 30px;
  line-height: 29px;
  font-size: 14px;
}

.tmp-btn.btn-sm {
  padding: 0 22px;
  font-size: var(--font-size-b3);
  height: 45px;
  line-height: 43px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.btn-sm {
    padding: 0 10px;
  }
}

.tmp-btn.btn-md {
  padding: 0 25px;
  height: 50px;
  line-height: 48px;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.btn-md {
    padding: 0 15px;
    line-height: 51px;
  }
}

.tmp-btn.btn-md.btn-border {
  line-height: 47px;
}

.tmp-btn.btn-lg {
  height: 70px;
  line-height: 70px;
  padding: 0 35px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.btn-lg {
    padding: 0 17px;
  }
}

.tmp-btn.btn-xl {
  padding: 0 45px;
  font-size: 20px;
  height: 75px;
  line-height: 75px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.btn-xl {
    padding: 0 20px;
    font-size: 16px;
    height: 55px;
    line-height: 55px;
  }
}

.tmp-btn.btn-xxl {
  padding: 0 60px;
  font-size: 22px;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 767px) {
  .tmp-btn.btn-xxl {
    padding: 0 20px;
    font-size: 18px;
    height: 70px;
    line-height: 70px;
  }
}

.tmp-btn i {
  padding-left: 6px;
  display: inline-block;
  top: 2px;
  position: relative;
  font-size: 17px;
}

.tmp-btn i.image-icon {
  top: inherit;
  transition: 0.4s;
}

.tmp-btn.btn-border-gradient {
  background: linear-gradient(90deg, #CFA2E8, #637FEA);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  color: var(--color-heading);
  box-shadow: 0 10px 13px 0 rgba(209, 211, 237, 0.39);
  border-radius: 0;
}

.tmp-btn.btn-border-gradient::before {
  content: "";
  z-index: -1;
  top: 3px;
  left: 3px;
  position: absolute;
  background: #fff;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}

.tmp-btn.btn-border-gradient.radius-round {
  border-radius: 500px;
}

.tmp-btn.btn-border-gradient.radius-round::before {
  border-radius: 500px;
}

.tmp-btn.hover-transform-none:hover {
  transform: none;
}

.radius-round {
  border-radius: 500px !important;
}

/*-----------------------
    Portfolio Arrow Icon  
-------------------------*/
.tmp-arrow-icon-btn {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  border: 2px solid var(--color-border);
  color: var(--color-white);
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  background: transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-width: 50px;
}

.tmp-arrow-icon-btn .btn-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.tmp-arrow-icon-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  margin-top: -9px;
  margin-left: -4px;
  z-index: 1;
  font-size: 18px;
  color: var(--color-heading);
}

.tmp-arrow-icon-btn i.tmp-icon {
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.tmp-arrow-icon-btn i.tmp-icon-bottom {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translateY(300%) translateX(-475%);
}

.tmp-arrow-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tmp-arrow-icon-btn:hover i.tmp-icon {
  transform: translateY(-300%) translateX(475%);
}

.tmp-arrow-icon-btn:hover i.tmp-icon-bottom {
  transform: translateY(0) translateX(0) scale(1.1);
}

.tmp-arrow-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/*--------------------
    Read More Btn  
---------------------*/
.read-more-btn {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.read-more-btn.v2:hover {
  color: var(--color-primary);
}

.service-item.current .read-more-btn:hover {
  color: var(--color-heading);
}

/*--------------------
    Custom Button  
----------------------*/
.custom-btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 2px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-btn.v2 {
  border: 1px solid var(--color-primary);
}

.custom-btn.v2:hover {
  background: #fff;
}

.custom-btn.v3 {
  border: 1px solid #ffffff;
  background: #ffffff;
}

.custom-btn.v3 i {
  color: var(--color-primary);
}

.custom-btn.v3:hover {
  background: var(--color-primary);
}

.custom-btn.v3:hover i {
  color: #fff;
}

.custom-btn i {
  transition: all 0.4s ease;
}

.custom-btn:hover {
  background: var(--color-primary);
  color: var(--color-heading);
  border-color: transparent;
}

.custom-btn:hover i {
  transform: rotate(0deg);
}

/*===============================
  Img Box
  ===============================*/
.img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 568px) {
  .img-box.v2 {
    height: auto;
  }
}

@media (min-width: 1200px) {
  .img-box.v2 {
    height: 400px;
  }
}

@media (min-width: 1400px) {
  .img-box.v2 {
    height: 447px;
  }
}

.img-box .img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s;
  background-size: cover;
  object-fit: cover;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.img-box .img-primary {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.img-box .img-secondary {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.img-box:hover .img-secondary {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.img-box:hover .img-primary {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.img-box .blog-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  padding: 5px 15px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
  border-radius: 999px;
  background: var(--color-gray-2);
}

.img-box .blog-tags li {
  display: inline-flex;
  gap: 5px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}

.img-box .blog-tags li i {
  font-size: 11px;
}

.latest-portfolio-card-style-two:hover .img-secondary {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.latest-portfolio-card-style-two:hover .img-primary {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.latest-portfolio-card.v5:hover .img-secondary {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.latest-portfolio-card.v5:hover .img-primary {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

/*===============================
  Blog Card
  ===============================*/
.blog-card {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  overflow: hidden;
  height: 100%;
}

.blog-card .blog-content-wrap {
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-card .blog-content-wrap {
    padding: 20px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-card .blog-content-wrap {
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-card .blog-content-wrap {
    padding: 20px 20px;
  }
}

.blog-card .blog-content-wrap .blog-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-card .blog-content-wrap .blog-title {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-card .blog-content-wrap .blog-title {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-card .blog-content-wrap .blog-title {
    margin-bottom: 12px;
  }
}

.blog-card .blog-content-wrap .blog-title.v2:hover a {
  color: var(--color-primary);
}

.blog-card .read-more-btn {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 27px;
  display: inline-block;
  align-items: center;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.blog-card .read-more-btn span {
  display: inline-block;
  padding-left: 3px;
}

.blog-card .read-more-btn:hover {
  color: var(--color-primary);
}

/*=========================
  Blog Card Style Two
  =========================*/
.blog-card-style-two {
  border-radius: 20px;
  background: var(--color-gray-2);
  overflow: hidden;
  height: 100%;
}

.blog-card-style-two .blog-card-img {
  position: relative;
}

.blog-card-style-two .blog-card-img span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  background: rgba(20, 20, 20, 0.8);
  padding: 5px 20px;
  border-radius: 0px 10px 10px 0px;
  z-index: 10;
}

.blog-card-style-two .blog-content-wrap {
  padding: 20px;
}

@media (min-width: 576px) {
  .blog-card-style-two .blog-content-wrap {
    padding: 20px 40px 40px 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-card-style-two .blog-content-wrap {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-card-style-two .blog-content-wrap {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-card-style-two .blog-content-wrap {
    padding: 20px;
  }
}

.blog-card-style-two .blog-content-wrap .blog-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-card-style-two .blog-content-wrap .blog-tags ul li {
  margin: 0;
}

.blog-card-style-two .blog-content-wrap .blog-tags ul li a {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.blog-card-style-two .blog-content-wrap .blog-tags ul li a i {
  margin-right: 10px;
}

.blog-card-style-two .blog-content-wrap .blog-title {
  margin-top: 12px;
  margin-bottom: 30px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

/*=========================
  Blog Inner
  =========================*/
.signle-side-bar {
  background: var(--color-gray-2);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
  /*== Search Area ==*/
  /*== Header ==*/
  /*== Recent Post Area ==*/
  /*== About Me Details ==*/
  /*== Tags Wrapper ==*/
  /*== Service List Area ==*/
  /*== Project Details Area ==*/
}

@media only screen and (max-width: 767px) {
  .signle-side-bar {
    padding: 30px 20px;
  }
}

.signle-side-bar:last-child {
  margin-bottom: 0;
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}

.signle-side-bar.search-area {
  padding: 40px;
  position: relative;
}

.signle-side-bar.search-area input {
  height: 60px;
  border-radius: 8px;
  padding-right: 60px;
}

.signle-side-bar.search-area button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.signle-side-bar .search-area {
  display: flex;
  align-items: center;
}

.signle-side-bar .search-area input::placeholder {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.signle-side-bar .search-area button {
  border: 0;
  width: auto;
  padding: 0;
}

.signle-side-bar .search-area i {
  min-width: 60px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
}

.signle-side-bar .header .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
}

.signle-side-bar .header .title::after {
  position: absolute;
  right: -20px;
  top: 13px;
  content: " ";
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 100px;
}

.signle-side-bar.recent-post-area .body .single-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 12px;
  color: var(--color-gray);
}

.signle-side-bar.recent-post-area .body .single-post:hover {
  color: var(--color-primary);
}

.signle-side-bar.recent-post-area .body .single-post:hover span {
  color: var(--color-primary);
}

.signle-side-bar.recent-post-area .body .single-post:hover span .post-title {
  color: var(--color-primary);
}

.signle-side-bar.recent-post-area .body .single-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.signle-side-bar.recent-post-area .body .single-post .single-post-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signle-side-bar.recent-post-area .body .single-post .single-post-left .post-title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition: all 0.4s ease;
}

.signle-side-bar.recent-post-area .body .single-post .single-post-left i {
  transition: all 0.4s ease;
}

.signle-side-bar.recent-post-area .body .single-post .single-post-left i:hover {
  color: var(--color-primary);
}

.signle-side-bar.recent-post-area .body .single-post .post-num {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  transition: all 0.4s ease;
}

.signle-side-bar.recent-post-area .body .single-post-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 20px;
}

.signle-side-bar.recent-post-area .body .single-post-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-card-img {
  min-width: 80px;
  min-height: 80px;
  width: 80px;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-card-img img {
  border-radius: 8px;
  min-width: 80px;
  min-height: 80px;
  width: 80px;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-right .single-post-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-right .single-post-top .post-title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  transition: var(--transition);
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-right .single-post-top i {
  color: var(--color-primary);
  font-size: 12px;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-right .post-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}

.signle-side-bar.recent-post-area .body .single-post-card .single-post-right .post-title:hover a {
  color: var(--color-primary);
}

.signle-side-bar .about-me-details .about-me-details-head {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  align-items: center;
}

.signle-side-bar .about-me-details .about-me-details-head .about-me-img {
  width: 150px;
  height: auto;
}

.signle-side-bar .about-me-details .about-me-details-head .about-me-right-content .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 5px;
}

.signle-side-bar .about-me-details .about-me-details-head .about-me-right-content .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 11px;
}

.signle-side-bar .about-me-details .about-me-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.signle-side-bar .tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.signle-side-bar .tags-wrapper .tag-link {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  padding: 0px 21px;
  border-radius: 100px;
  background: #060606;
  display: block;
  transition: 0.3s;
  height: 40px;
  line-height: 40px;
}

.signle-side-bar .tags-wrapper .tag-link:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

.signle-side-bar.service-list-area .single-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 10px;
}

.signle-side-bar.service-list-area .single-service:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.signle-side-bar.service-list-area .single-service .service-title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.signle-side-bar.service-list-area .single-service i {
  color: var(--color-gray);
}

.signle-side-bar.service-list-area .single-service:hover .service-title,
.signle-side-bar.service-list-area .single-service:hover .service-icon,
.signle-side-bar.service-list-area .single-service:hover i {
  color: var(--color-primary);
}

.signle-side-bar.project-details-area .project-details-info {
  margin-bottom: 15px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.signle-side-bar.project-details-area .project-details-info:last-child {
  margin-bottom: 0;
}

.signle-side-bar.project-details-area .project-details-info span {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-left: 10px;
}

/*=========================
  Blog Classic Card
  =========================*/
.blog-classic-card {
  border-radius: 20px;
  background: var(--color-gray-2);
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-classic-card:last-child {
  margin-bottom: 0;
}

.blog-classic-card .img-box {
  min-height: 462px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-classic-card .img-box {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .blog-classic-card .img-box {
    min-height: auto;
  }
}

.blog-classic-card .img-box img {
  height: auto;
}

.blog-classic-card .blog-classic-content {
  padding: 30px 40px 40px 40px;
}

@media only screen and (max-width: 767px) {
  .blog-classic-card .blog-classic-content {
    padding: 30px 20px;
  }
}

.blog-classic-card .blog-classic-content .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .blog-classic-card .blog-classic-content .title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .blog-classic-card .blog-classic-content .title {
    font-size: 22px;
  }
}

.blog-classic-card .blog-classic-content .title:hover a {
  color: var(--color-primary);
}

.blog-classic-card .blog-classic-content .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .blog-classic-card .blog-classic-content .para {
    margin-bottom: 18px;
  }
}

/*=========================
  Blog Classic Tag
  =========================*/
.blog-classic-tag {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .blog-classic-tag {
    gap: 30px;
  }
}

.blog-classic-tag .title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}

.blog-classic-tag ul {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .blog-classic-tag ul {
    gap: 30px;
  }
}

.blog-classic-tag ul li {
  margin: 0;
}

.blog-classic-tag ul li .tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-classic-tag ul li .tag-wrap .tag-title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

.about-me-social-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-me-social-link a:hover {
  color: var(--color-primary);
}

/*=========================
  Tmp Pagination Button
  =========================*/
.tmp-pagination-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tmp-pagination-button .pagination-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background: var(--color-gray-2);
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  transition: all 0.4s ease;
}

@media only screen and (max-width: 479px) {
  .tmp-pagination-button .pagination-btn {
    width: 45px;
    height: 45px;
  }
}

.tmp-pagination-button .pagination-btn:hover {
  color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.tmp-pagination-button .pagination-btn.active {
  color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/*=========================
  Blog Detail left Area
  =========================*/
.blog-details-left-area .thumbnail-top img {
  width: 100%;
  border-radius: 10px;
}

.blog-details-left-area .blog-details-discription {
  padding: 30px 0;
}

.blog-details-left-area .blog-details-discription h3.title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.blog-details-left-area .blog-details-discription p.disc {
  margin-bottom: 20px;
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.blog-details-left-area .quote-area-blog-details {
  padding: 30px;
  border-radius: 20px;
  background: var(--color-gray-2);
  z-index: 1;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .blog-details-left-area .quote-area-blog-details {
    padding: 25px;
  }
}

.blog-details-left-area .quote-area-blog-details p.disc {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 19px;
}

.blog-details-left-area .quote-area-blog-details .author {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 60px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}

.blog-details-left-area .quote-area-blog-details .author::after {
  position: absolute;
  content: "";
  left: 0;
  top: 47%;
  height: 2px;
  width: 40px;
  background: var(--color-primary);
  z-index: 10;
}

.blog-details-left-area .quote-area-blog-details span {
  color: var(--color-primary);
  font-size: 160px;
  opacity: 0.09;
  position: absolute;
  right: 10px;
  line-height: 0;
  display: inline-block;
  bottom: -27px;
}

.blog-details-left-area .quote-area-blog-details span i {
  font-weight: 300;
}

/*===============================
  Our Portfolio Swiper
  ===============================*/
.our-portfolio-swiper {
  position: relative;
}

.our-portfolio-swiper .our-portfoli-swiper-card {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .our-portfolio-swiper .our-portfoli-swiper-card {
    flex-wrap: nowrap;
  }
}

.our-portfolio-swiper .our-portfoli-swiper-card .card-right-content {
  width: 100%;
}

@media (min-width: 1200px) {
  .our-portfolio-swiper .our-portfoli-swiper-card .card-right-content {
    min-width: 300px;
  }
}

.our-portfolio-swiper .our-portfoli-swiper-card .card-right-content img {
  width: 100%;
  border-radius: 20px;
}

/*===============================
  Our Portfolio Swiper Btn Wrap
  ===============================*/
.our-portfolio-swiper-btn-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.our-portfolio-swiper-btn-wrap .prev-btn,
.our-portfolio-swiper-btn-wrap .next-btn,
.our-portfolio-swiper-btn-wrap .tmp--next-prev-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.our-portfolio-swiper-btn-wrap .prev-btn .btn-content .title,
.our-portfolio-swiper-btn-wrap .next-btn .btn-content .title,
.our-portfolio-swiper-btn-wrap .tmp--next-prev-btn .btn-content .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
  gap: 5px;
  flex-wrap: wrap;
  display: none;
  transition: var(--transition);
}

.our-portfolio-swiper-btn-wrap .prev-btn .btn-content .title:hover,
.our-portfolio-swiper-btn-wrap .next-btn .btn-content .title:hover,
.our-portfolio-swiper-btn-wrap .tmp--next-prev-btn .btn-content .title:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {

  .our-portfolio-swiper-btn-wrap .prev-btn .btn-content .title,
  .our-portfolio-swiper-btn-wrap .next-btn .btn-content .title,
  .our-portfolio-swiper-btn-wrap .tmp--next-prev-btn .btn-content .title {
    display: flex;
  }
}

.our-portfolio-swiper-btn-wrap .prev-btn .btn-content .para,
.our-portfolio-swiper-btn-wrap .next-btn .btn-content .para,
.our-portfolio-swiper-btn-wrap .tmp--next-prev-btn .btn-content .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  display: none;
}

@media (min-width: 768px) {

  .our-portfolio-swiper-btn-wrap .prev-btn .btn-content .para,
  .our-portfolio-swiper-btn-wrap .next-btn .btn-content .para,
  .our-portfolio-swiper-btn-wrap .tmp--next-prev-btn .btn-content .para {
    display: flex;
  }
}

.our-portfolio-swiper-btn-wrap .swiper-btn-prev,
.our-portfolio-swiper-btn-wrap .swiper-btn-next,
.our-portfolio-swiper-btn-wrap .tmp-arrow-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  background: transparent;
  border-radius: 100px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.our-portfolio-swiper-btn-wrap .swiper-btn-prev i,
.our-portfolio-swiper-btn-wrap .swiper-btn-next i,
.our-portfolio-swiper-btn-wrap .tmp-arrow-btn i {
  transition: var(--transition);
}

.our-portfolio-swiper-btn-wrap .swiper-btn-prev:hover,
.our-portfolio-swiper-btn-wrap .swiper-btn-next:hover,
.our-portfolio-swiper-btn-wrap .tmp-arrow-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.our-portfolio-swiper-btn-wrap .swiper-btn-prev:hover i,
.our-portfolio-swiper-btn-wrap .swiper-btn-next:hover i,
.our-portfolio-swiper-btn-wrap .tmp-arrow-btn:hover i {
  color: var(--color-white) !important;
}

.our-portfolio-swiper-btn-wrap .swiper-btn-prev button,
.our-portfolio-swiper-btn-wrap .swiper-btn-next button,
.our-portfolio-swiper-btn-wrap .tmp-arrow-btn button {
  border: 0 none;
  padding: 0;
}

/*===============================
  Blog Details Navigation
  ===============================*/
.blog-details-navigation {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-details-navigation .navigation-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .blog-details-navigation .navigation-tags {
    gap: 30px;
  }
}

.blog-details-navigation .navigation-tags .tag-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}

.blog-details-navigation .navigation-tags ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .blog-details-navigation .navigation-tags ul {
    gap: 20px;
  }
}

.blog-details-navigation .navigation-tags ul li {
  margin: 0;
}

.blog-details-navigation .navigation-tags ul li .tag {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

@media (min-width: 576px) {
  .blog-details-navigation .social-link {
    margin-top: 0;
  }
}

/*============================
  Comment Area Main Wrapper
  ============================*/
.comment-area-main-wrapper .single-comment-audience {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #202020;
}

.comment-area-main-wrapper .single-comment-audience:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .comment-area-main-wrapper .single-comment-audience {
    flex-wrap: inherit;
  }
}

.comment-area-main-wrapper .single-comment-audience .author-image {
  min-width: 95px;
  min-height: 95px;
  max-width: 150px;
  padding: 15px;
  background: var(--color-gray-2);
  border-radius: 50%;
}

.comment-area-main-wrapper .single-comment-audience .author-image.tmponhover::after {
  border-radius: 50%;
}

.comment-area-main-wrapper .right-area-commnet .top-area-comment {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .comment-area-main-wrapper .right-area-commnet .top-area-comment {
    gap: 30px;
  }
}

.comment-area-main-wrapper .right-area-commnet .top-area-comment .left {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.comment-area-main-wrapper .right-area-commnet .top-area-comment .left .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 0;
}

.comment-area-main-wrapper .right-area-commnet .top-area-comment .left span {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.comment-area-main-wrapper .right-area-commnet .disc {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.comment-area-main-wrapper .right-area-commnet .reply-btn {
  color: var(--color-gray);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.comment-area-main-wrapper .right-area-commnet .reply-btn:hover {
  color: var(--color-primary);
}

/*============================
  Blog Details Form Wrapper
  ============================*/
.blog-details-form-wrapper {
  padding: 30px;
  border-radius: 20px;
  background: var(--color-gray-2);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .blog-details-form-wrapper {
    padding: 60px;
  }
}

.blog-details-form-wrapper .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.blog-details-form-wrapper .subtitle {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
  display: inline-block;
}

.blog-details-form-wrapper .blog-details-form label {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 8px;
}

.blog-details-form-wrapper .blog-details-form .single-input {
  margin-bottom: 18px;
}

.blog-details-form-wrapper .blog-details-form .single-input input {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  padding: 17px 20px;
}

.blog-details-form-wrapper .blog-details-form .single-input input:focus {
  border: 2px solid var(--color-primary) !important;
}

.blog-details-form-wrapper .blog-details-form .single-input input::placeholder {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.blog-details-form-wrapper .blog-details-form textarea {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  padding: 17px 20px;
  min-height: 130px;
  resize: inherit;
  transition: var(--transition);
}

.blog-details-form-wrapper .blog-details-form textarea::placeholder {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.blog-details-form-wrapper .blog-details-form textarea:focus {
  border-color: var(--color-primary);
}

.blog-details-form-wrapper .blog-details-form .comments-btn-wrap {
  margin-top: 30px;
}

.blog-details-form-wrapper .blog-details-form .comments-btn-wrap .comment-btn {
  padding: 9px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 100px;
  color: var(--color-gray);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  background: var(--color-primary);
  border: 2px solid var(--color-secondary);
  transition: var(--transition);
}

.blog-details-form-wrapper .blog-details-form .comments-btn-wrap .comment-btn:hover {
  border-color: var(--color-primary);
  background: transparent;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .card-1-body .blog-card-style-two .blog-content-wrap {
    padding: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .card-1-body .custom-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 1400px) {
  .card-1-body .tab-content-overlay-to-top {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .card-1-body .tmp-contact-about-inner {
    flex-direction: column;
    gap: 35px;
  }
}

.client-testimonial-card-wrap {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  position: relative;
  padding: 80px 40px 40px 40px;
}

@media (min-width: 576px) {
  .client-testimonial-card-wrap {
    padding: 100px 60px 60px 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-testimonial-card-wrap {
    padding: 100px 30px 30px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-testimonial-card-wrap {
    padding: 100px 20px 20px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .client-testimonial-card-wrap {
    padding: 80px 20px 20px 20px;
  }
}

.client-testimonial-card-wrap .client-card-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.client-testimonial-card-wrap .client-card-head .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.client-testimonial-card-wrap .client-card-head .client-info .client-img {
  border-radius: 100px;
  border: 2px solid var(--color-border);
  padding: 3px;
  width: 65px;
  height: 65px;
}

.client-testimonial-card-wrap .client-card-head .client-info .client-img img {
  border-radius: 100px;
}

.client-testimonial-card-wrap .client-card-head .client-info .client-details .client-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.client-testimonial-card-wrap .client-card-head .client-info .client-details .client-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 5px;
}

.client-testimonial-card-wrap .client-para {
  margin-top: 30px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  width: 81%;
}

@media (min-width: 576px) {
  .client-testimonial-card-wrap .client-para {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-testimonial-card-wrap .client-para {
    font-size: 18px;
    line-height: 34px;
    margin-top: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-testimonial-card-wrap .client-para {
    font-size: 18px;
    line-height: 34px;
    margin-top: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .client-testimonial-card-wrap .client-para {
    width: 81%;
    font-size: 18px;
    line-height: 34px;
    margin-top: 13px;
  }
}

@media only screen and (max-width: 575px) {
  .client-testimonial-card-wrap .client-para {
    width: 100%;
  }
}

.client-testimonial-card-wrap .quat-logo {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  border: 2px solid var(--color-border);
  background: var(--color-gray-2);
  position: absolute;
  top: -40px;
  left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-testimonial-card-wrap .quat-logo img {
  filter: invert(1);
  max-height: 28px;
}

.testimonial-custom-title {
  text-align: center;
  -webkit-text-stroke: 1px #242424;
  color: transparent;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 60px;
}

@media (min-width: 576px) {
  .testimonial-custom-title {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (min-width: 1440px) {
  .testimonial-custom-title {
    font-size: 200px;
    line-height: 115%;
  }
}

/*=========================
  Tmp Star
  =========================*/
.tmp-star ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tmp-star ul li {
  margin: 0;
  color: var(--color-primary);
}

/*===========================
  Testimonial Swiper
  ===========================*/
.testimonial-swiper {
  padding-bottom: 182px;
}

@media (min-width: 350px) {
  .testimonial-swiper {
    padding-bottom: 110px;
  }
}

@media (min-width: 420px) {
  .testimonial-swiper {
    padding-bottom: 30px;
  }
}

@media (min-width: 450px) {
  .testimonial-swiper {
    padding-bottom: 0px;
  }
}

@media (min-width: 800px) {
  .testimonial-swiper {
    padding-bottom: 62px;
  }
}

@media (min-width: 860px) {
  .testimonial-swiper {
    padding-bottom: 30px;
  }
}

@media (min-width: 911px) {
  .testimonial-swiper {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial-swiper {
    padding-bottom: 42px;
  }
}

/*===========================
  Client Testimonial Swiper
  ===========================*/
section.clients-testimonial-area {
  padding-bottom: 100px;
}

.client-testimonial-swiper {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-testimonial-swiper {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .client-testimonial-swiper {
    padding: 0 20px;
  }
}

.client-testimonial-swiper::before {
  content: " ";
  background-image: url("../images/testimonial/left-bg-img.png");
  background-repeat: no-repeat;
}

.client-testimonial-swiper .swiper {
  padding-top: 40px;
  position: relative;
}

.client-testimonial-swiper .swiper::after,
.client-testimonial-swiper .swiper::before {
  content: " ";
  position: absolute;
  width: 505px;
  height: 538px;
  z-index: 1;
  display: none;
}

@media (min-width: 1200px) {

  .client-testimonial-swiper .swiper::after,
  .client-testimonial-swiper .swiper::before {
    display: block;
  }
}

.client-testimonial-swiper .swiper::after {
  background: linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0) 100%);
  left: 0;
  top: 0;
}

.client-testimonial-swiper .swiper::before {
  background: linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0) 100%);
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotate(180deg);
}

.tmp-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  opacity: 1;
  border-radius: 100%;
  background: transparent;
  box-shadow: inset 0 0 0 5px var(--color-gray-2);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin: 0 8px !important;
}

.tmp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--color-primary);
  transform: scale(2);
  opacity: 1;
}

.tmp-swiper-pagination.tmp-swiper-pagination-01 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  box-shadow: inset 0 0 0 7px var(--color-gray-2);
  transition: var(--transition);
}

@media only screen and (max-width: 767px) {
  .tmp-swiper-pagination.tmp-swiper-pagination-01 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.tmp-swiper-pagination.tmp-swiper-pagination-01 .swiper-pagination-bullet:hover {
  box-shadow: inset 0 0 0 7px var(--color-primary);
}

.tmp-swiper-pagination.tmp-swiper-pagination-01 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.tmp-swiper-pagination.tmp-swiper-pagination-01 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  background: var(--color-primary);
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.client-testimonial-swiper .tmp-swiper-pagination {
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-testimonial-swiper .tmp-swiper-pagination {
    bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {
  .client-testimonial-swiper .tmp-swiper-pagination {
    bottom: -50px;
  }
}

/*========================
  RPP Banner One Area
  ========================*/
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tmp-banner-one-area {
  padding-top: 26px;
  background-image: url("../images/banner/banner-background-one.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-one-area {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-one-area {
    padding-bottom: 100px;
  }
}

.tmp-banner-one-area.style-2 {
  background-image: url(../images/bg/bg-image-3.jpg);
  min-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-one-area.style-2 {
    min-height: auto;
    padding: 100px 0;
    padding-top: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-one-area.style-2 {
    min-height: auto;
    padding: 100px 0;
    padding-top: 150px;
  }
}

.tmp-banner-one-area.style-2 .inner .title {
  font-size: 82px;
  line-height: 1.2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tmp-banner-one-area.style-2 .inner .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-one-area.style-2 .inner .title {
    font-size: 58px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-one-area.style-2 .inner .title {
    font-size: 52px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-banner-one-area.style-2 .inner .title {
    font-size: 34px;
  }
}

.tmp-banner-one-area.style-3,
.tmp-banner-one-area.style-4 {
  min-height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background-image: url(../images/banner/banner-background-02.jpg);
}

@media only screen and (max-width: 767px) {

  .tmp-banner-one-area.style-3,
  .tmp-banner-one-area.style-4 {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
    min-height: auto;
  }
}

@media only screen and (max-width: 479px) {

  .tmp-banner-one-area.style-3,
  .tmp-banner-one-area.style-4 {
    padding-bottom: 10px;
  }
}

.tmp-banner-one-area.style-3 .thumbnail-author,
.tmp-banner-one-area.style-4 .thumbnail-author {
  position: relative;
  z-index: 1;
  max-width: max-content;
  margin: auto;
  margin-bottom: 20px;
}

.tmp-banner-one-area.style-3 .thumbnail-author .loader-bg-pattern-wrapper,
.tmp-banner-one-area.style-4 .thumbnail-author .loader-bg-pattern-wrapper {
  top: 50%;
}

.tmp-banner-one-area.style-3 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern,
.tmp-banner-one-area.style-4 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern {
  --size: 380px;
  --duration: 4s;
  --logo-color: grey;
  --background: linear-gradient(0deg, rgba(50, 50, 50, 0.2) 0%, rgba(100, 100, 100, 0.2) 100%);
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
}

@media only screen and (max-width: 575px) {

  .tmp-banner-one-area.style-3 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern,
  .tmp-banner-one-area.style-4 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 260px;
  }
}

@media only screen and (max-width: 479px) {

  .tmp-banner-one-area.style-3 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern,
  .tmp-banner-one-area.style-4 .thumbnail-author .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 230px;
  }
}

.tmp-banner-one-area.style-3 .thumbnail-author img,
.tmp-banner-one-area.style-4 .thumbnail-author img {
  border-radius: 100%;
  border: 25px solid #141414;
  width: 350px;
  height: 350px;
  object-fit: cover;
  min-width: 350px;
}

@media only screen and (max-width: 575px) {

  .tmp-banner-one-area.style-3 .thumbnail-author img,
  .tmp-banner-one-area.style-4 .thumbnail-author img {
    width: 250px;
    height: 250px;
    min-width: 250px;
  }
}

@media only screen and (max-width: 767px) {

  .tmp-banner-one-area.style-3 .inner .title,
  .tmp-banner-one-area.style-4 .inner .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 479px) {

  .tmp-banner-one-area.style-3 .inner .title,
  .tmp-banner-one-area.style-4 .inner .title {
    font-size: 34px;
  }
}

.tmp-banner-one-area.style-4 {
  min-height: 900px;
  background-image: url(../images/banner/banner-background-04.jpg);
  position: relative;
  background-image: none;
}

.tmp-banner-one-area.style-4 .galaxy {
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #19191b 1px, transparent 1px), linear-gradient(to bottom, #19191b 1px, transparent 1px);
  background-size: 13rem 13rem;
  background-position: center center;
  position: absolute;
  z-index: -1;
  filter: blur(0);
}

@media only screen and (max-width: 767px) {
  .tmp-banner-one-area.style-4 {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
    min-height: auto;
  }
}

.loader-bg-pattern-wrapper {
  position: absolute;
  left: 50%;
  z-index: -1;
  top: 34.1%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1199px) {
  .loader-bg-pattern-wrapper {
    top: 35.1%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .loader-bg-pattern-wrapper {
    top: 28.8%;
  }
}

@media only screen and (max-width: 767px) {
  .loader-bg-pattern-wrapper {
    top: 38.1%;
  }
}

@media only screen and (max-width: 575px) {
  .loader-bg-pattern-wrapper {
    top: 36%;
  }
}

@media only screen and (max-width: 479px) {
  .loader-bg-pattern-wrapper {
    top: 36%;
  }
}

.loader-bg-pattern-wrapper .loader-bg-pattern {
  --size: 450px;
  --duration: 4s;
  --logo-color: grey;
  --background: linear-gradient(0deg,
      rgba(50, 50, 50, 0.2) 0%,
      rgba(100, 100, 100, 0.2) 100%);
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 400px;
  }
}

@media only screen and (max-width: 575px) {
  .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 320px;
  }
}

@media only screen and (max-width: 479px) {
  .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 220px;
  }
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box {
  position: absolute;
  background: rgba(100, 100, 100, 0.15);
  background: var(--background);
  border-radius: 50%;
  border-top: 1px solid rgb(100, 100, 100);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  backdrop-filter: blur(5px);
  animation: ripple var(--duration) infinite ease-in-out;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(1) {
  inset: 40%;
  z-index: 99;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(2) {
  inset: 30%;
  z-index: 98;
  border-color: rgba(100, 100, 100, 0.8);
  animation-delay: 0.2s;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(3) {
  inset: 20%;
  z-index: 97;
  border-color: rgba(100, 100, 100, 0.6);
  animation-delay: 0.4s;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(4) {
  inset: 10%;
  z-index: 96;
  border-color: rgba(100, 100, 100, 0.4);
  animation-delay: 0.6s;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(5) {
  inset: 0%;
  z-index: 95;
  border-color: rgba(100, 100, 100, 0.2);
  animation-delay: 0.8s;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30%;
}

.loader-bg-pattern-wrapper .loader-bg-pattern .logo svg {
  fill: var(--logo-color);
  width: 100%;
  animation: color-change var(--duration) infinite ease-in-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }

  50% {
    transform: scale(1.3);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 20px 0px;
  }

  100% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }
}

@keyframes color-change {
  0% {
    fill: var(--logo-color);
  }

  50% {
    fill: white;
  }

  100% {
    fill: var(--logo-color);
  }
}

/*========================
  RPP Banner Two Area
  ========================*/
.rpp-banner-two-area {
  padding-top: 106px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rpp-banner-two-area::after,
.rpp-banner-two-area::before {
  content: " ";
  opacity: 0.3;
  background: #FF014F;
  position: absolute;
  width: 611px;
  height: 611px;
  border-radius: 100px;
  filter: blur(300px);
  z-index: -1;
}

.rpp-banner-two-area::before {
  top: -73px;
  left: -292px;
}

.rpp-banner-two-area::after {
  top: -73px;
  right: -292px;
}

.rpp-banner-two-area .banner-shape-two {
  position: absolute;
  top: 0;
  opacity: 0.5;
  left: 0;
  z-index: -1;
}

/*========================
  RPP Banner Four Area
  ========================*/
.rpp-banner-four-area {
  background: #F8F7F4;
  overflow: hidden;
}

/*========================
  Banner One Main Wrapper
  ========================*/
.tmp-white-version.index-ten .banner-one-main-wrapper .inner .title {
  margin-top: 0 !important;
}

.index-11 .banner-one-main-wrapper .inner .title {
  margin-top: 0 !important;
}

.banner-one-main-wrapper .inner .sub-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-flex;
}

.banner-one-main-wrapper .inner .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 68px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 54px;
  }
}

@media only screen and (max-width: 1199px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 54px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 54px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 32px;
  }
}

.banner-one-main-wrapper .inner .title span {
  color: var(--color-primary);
}

.banner-one-main-wrapper .inner .disc {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper .inner .disc {
    margin-top: 9px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
  }
}

.banner-one-main-wrapper .inner .button-area-banner-one {
  margin-top: 39px;
  position: relative;
  z-index: 2;
}

.banner-one-main-wrapper .banner-right-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
}

@media (min-width: 1450px) {
  .banner-one-main-wrapper .banner-right-content {
    right: -80px;
  }
}

.banner-one-main-wrapper .banner-right-content img {
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-right: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-one-main-wrapper .banner-right-content img {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .banner-one-main-wrapper .banner-right-content img {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-main-wrapper .banner-right-content img {
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper .banner-right-content img {
    margin: auto;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .banner-right-content img {
    max-width: 260px;
  }
}

.banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  position: absolute;
  margin-bottom: 0;
  top: 25%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 300px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 50px;
  }
}

@media (min-width: 500px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 75px;
  }
}

@media (min-width: 600px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 64px;
  }
}

@media (min-width: 1200px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 70px;
  }
}

@media (min-width: 1500px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 90px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-1 {
    font-size: 46px;
  }
}

.banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
  position: absolute;
  bottom: 190px;
  left: 0px;
  font-size: 48px;
  line-height: 1.2;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 300px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 50px;
    bottom: 30px;
  }
}

@media (min-width: 500px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 75px;
    bottom: 30px;
  }
}

@media (min-width: 500px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 80px;
    bottom: 30px;
  }
}

@media (min-width: 600px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 70px;
  }
}

@media (min-width: 1200px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 70px;
  }
}

@media (min-width: 1500px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 64px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-one-main-wrapper .banner-right-content .banner-big-text-2 {
    font-size: 46px;
  }
}

/*========================
  Banner Two Main Wrapper
  ========================*/
.banner-two-main-wrapper {
  padding-bottom: 94px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-two-main-wrapper {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-two-main-wrapper {
    padding-bottom: 0;
  }
}

.banner-two-main-wrapper .inner .sub-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 7px;
  display: inline-flex;
}

.banner-two-main-wrapper .inner .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 54px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-two-main-wrapper .inner .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-two-main-wrapper .inner .title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-two-main-wrapper .inner .title {
    font-size: 28px;
  }
}

.banner-two-main-wrapper .inner .title span {
  color: var(--color-primary);
}

.banner-two-main-wrapper .inner .disc {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .banner-two-main-wrapper .inner .disc {
    font-size: 18px;
    line-height: 30px;
  }
}

.banner-two-main-wrapper .inner .disc span {
  color: var(--color-primary);
}

.banner-two-main-wrapper .inner .button-area-banner-two {
  margin-top: 39px;
}

.banner-two-main-wrapper .banner-right-content .main-img {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.banner-two-main-wrapper .banner-right-content .main-img::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0) 46.14%, #060606 100%);
  width: 100%;
  height: 580.327px;
  z-index: 0;
}

.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  position: absolute;
  top: 265px;
  z-index: -1;
}

@media only screen and (max-width: 575px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
    display: none;
  }
}

@media (min-width: 576px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (min-width: 992px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
    font-size: 90px;
    line-height: 105px;
  }
}

@media (min-width: 1200px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
    font-size: 110px;
    line-height: 120px;
  }
}

.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  font-family: var(--font-primary);
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  position: absolute;
  bottom: 110px;
  z-index: 1;
  margin-bottom: 0;
}

@media (min-width: 400px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 75px;
    line-height: 85px;
  }
}

@media (min-width: 576px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (min-width: 992px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 66px;
    line-height: 105px;
  }
}

@media (min-width: 1200px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 110px;
    line-height: 120px;
  }
}

.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap {
  position: absolute;
  width: 100px;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media (min-width: 992px) {
  .banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap {
    width: 200px;
    left: -110px;
    bottom: -74px;
  }
}

.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img {
  position: relative;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  animation: rotateIn-2 20s linear infinite;
}

.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-two-main-wrapper .banner-right-content .main-img .benner-two-bg-red-img {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

/*==================================================
  Banner Four Main Wrapper, Banner Six Main Wrapper
  ===================================================*/
.banner-four-main-wrapper .inner .sub-title,
.banner-six-main-wrapper .inner .sub-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.banner-four-main-wrapper .inner .title,
.banner-six-main-wrapper .inner .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 58px;
}

@media (min-width: 668px) {

  .banner-four-main-wrapper .inner .title,
  .banner-six-main-wrapper .inner .title {
    font-size: 110px;
    line-height: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {

  .banner-four-main-wrapper .inner .title,
  .banner-six-main-wrapper .inner .title {
    font-size: 90px;
    line-height: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .banner-four-main-wrapper .inner .title,
  .banner-six-main-wrapper .inner .title {
    font-size: 50px;
    margin-bottom: 9px;
  }
}

.banner-four-main-wrapper .inner .description,
.banner-six-main-wrapper .inner .description {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .banner-four-main-wrapper .inner .description,
  .banner-six-main-wrapper .inner .description {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {

  .banner-four-main-wrapper .inner .description,
  .banner-six-main-wrapper .inner .description {
    margin-bottom: 20px;
  }
}

/*========================
  Banner Four Main Wrapper
  ========================*/
.banner-four-main-wrapper {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

@media (min-width: 992px) {
  .banner-four-main-wrapper {
    padding: 201px 0 100px 0;
  }
}

.banner-four-main-wrapper .row {
  justify-content: space-between;
}

@media (min-width: 1400px) {
  .banner-four-main-wrapper .banner-right-content {
    padding: 0 57px;
  }
}

.banner-four-main-wrapper .banner-right-content .find-me-on {
  margin-top: 33px;
}

.banner-four-main-wrapper .banner-right-content .year-expariance-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .banner-four-main-wrapper .banner-right-content .year-expariance-wrap {
    gap: 10px;
  }
}

.banner-four-main-wrapper .banner-right-content .year-expariance-wrap .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 68px;
  font-weight: 700;
  line-height: 78px;
  margin-bottom: 0;
}

.banner-four-main-wrapper .banner-right-content .year-expariance-wrap .para {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

@media (min-width: 992px) {
  .banner-four-main-wrapper .bg-benner-img-four {
    position: absolute;
    right: 245px;
    bottom: 0px;
    z-index: -1;
  }
}

.banner-four-main-wrapper .banner-four-right-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}

.rpp-banner-four-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rpp-banner-four-area .banner-four-left-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/*========================
  Banner Five Main Wrapper
  ========================*/
.banner-five-main-wrapper {
  padding-top: 174px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-five-main-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-five-main-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.banner-five-main-wrapper .inner .title {
  color: var(--color-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-five-main-wrapper .inner .title {
    font-size: 49px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-five-main-wrapper .inner .title {
    font-size: 52px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 767px) {
  .banner-five-main-wrapper .inner .title {
    font-size: 40px;
    line-height: 56px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-five-main-wrapper .inner .title {
    font-size: 26px;
    line-height: 38px;
  }
}

.banner-five-main-wrapper .bg-benner-img-five {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.banner-five-main-wrapper .bg-benner-img-five::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(180deg, #FF494A 0%, rgba(255, 73, 74, 0) 100%);
  border-radius: 291.5px 291.5px 0px 0px;
}

@media (min-width: 400px) {
  .banner-five-main-wrapper .bg-benner-img-five::before {
    height: 482px;
  }
}

.banner-five-main-wrapper .bg-benner-img-five img {
  width: 76%;
  margin: auto;
}

.banner-five-main-wrapper .banner-left-content .banner-counter ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .banner-five-main-wrapper .banner-left-content .banner-counter ul {
    display: inherit;
  }
}

.banner-five-main-wrapper .banner-left-content .banner-counter ul li {
  margin: 0;
}

@media (min-width: 992px) {
  .banner-five-main-wrapper .banner-left-content .banner-counter ul li {
    margin-bottom: 76px;
  }
}

.banner-five-main-wrapper .banner-left-content .banner-counter ul li:last-child {
  margin-bottom: 0;
}

.banner-five-main-wrapper .banner-left-content .banner-counter ul li .banner-counter-card .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
}

@media (min-width: 576px) {
  .banner-five-main-wrapper .banner-left-content .banner-counter ul li .banner-counter-card .title {
    font-size: 48px;
    line-height: 60px;
  }
}

.banner-five-main-wrapper .banner-left-content .banner-counter ul li .banner-counter-card .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
}

@media (min-width: 576px) {
  .banner-five-main-wrapper .banner-left-content .banner-counter ul li .banner-counter-card .para {
    font-size: 16px;
    line-height: 30px;
  }
}

.banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info {
  margin-bottom: 20px;
  background: transparent;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
}

@media (min-width: 1400px) {
  .banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info {
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info:last-child {
  margin-bottom: 0;
}

.banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info .title {
  color: var(--color-heading);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 13px;
}

.banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info .para {
  color: var(--color-gray);
  text-align: right;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 575px) {
  .banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info .para {
    text-align: left;
  }
}

.banner-five-main-wrapper .banner-right-content .banner-contact-info .contact-info .para:last-child {
  margin-bottom: 0;
}

.rpp-banner-five-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #0F0F0F;
}

.rpp-banner-five-area .banner-shape-img-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  top: 0;
  right: 0;
}

/*========================
  Banner Six Main Wrapper
  ========================*/
.rpp-banner-six-area {
  background: var(--color-gray-2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rpp-banner-six-area .bg-left-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.banner-six-main-wrapper {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .banner-six-main-wrapper {
    padding-top: 233px;
    padding-bottom: 136px;
  }
}

.bg-benner-img-six {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bg-benner-img-six img {
  border: 2px solid var(--color-primary);
  border-radius: 100%;
}

.bg-benner-img-six::after {
  content: url("../images/banner/banner-six-shape.png");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: banner-cycle-animation 50s linear infinite;
  display: none;
}

@media (min-width: 1400px) {
  .bg-benner-img-six::after {
    display: block;
  }
}

@keyframes banner-cycle-animation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rpp-banner-five-area .banner-shape-img-bg img {
  height: 100%;
  width: 100%;
}

/*========================
  Find Me On
  ========================*/
.find-me-on {
  margin-top: 60px;
}

.find-me-on .find-me-on-title {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}

/*=====================
  Text Para Doc Wrap
  =====================*/
.text-para-doc-wrap {
  position: relative;
}

.text-para-doc-wrap .text-para-documents {
  color: var(--color-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
}

@media (min-width: 576px) {
  .text-para-doc-wrap .text-para-documents {
    font-size: 48px;
    line-height: 1.25;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-para-doc-wrap .text-para-documents {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .text-para-doc-wrap .text-para-documents {
    font-size: 25px;
    line-height: 1.5;
  }
}

.text-para-doc-wrap .text-para-documents span {
  color: var(--color-primary);
}

.text-para-doc-wrap .right-bg-text-para {
  position: absolute;
  right: -150px;
  top: 0;
  display: none;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .text-para-doc-wrap .right-bg-text-para {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .text-para-doc-wrap .right-bg-text-para {
    right: 0;
  }
}

.text-para-doc-wrap .left-bg-text-para {
  position: absolute;
  left: -150px;
  top: 0;
  display: none;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .text-para-doc-wrap .left-bg-text-para {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .text-para-doc-wrap .left-bg-text-para {
    left: 0;
  }
}

/*========================
  Banner Three Main Wrapper
  ========================*/
.banner-three-main-wrapper {
  position: relative;
  padding: 80px 0;
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .banner-three-main-wrapper {
    padding-top: 250px;
    padding-bottom: 250px;
  }
}

@media (min-width: 1200px) {
  .banner-three-main-wrapper {
    padding-top: 300px;
    padding-bottom: 358px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper {
    padding-bottom: 0;
  }
}

.banner-three-main-wrapper .row {
  justify-content: space-between;
}

.banner-three-main-wrapper .banner-right-content {
  position: relative;
  z-index: 2;
}

.banner-three-main-wrapper .banner-right-content .about-me .title {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .banner-right-content .about-me .title {
    margin-bottom: 4px;
  }
}

.banner-three-main-wrapper .banner-right-content .about-me .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper .banner-right-content .about-me .para {
    width: 68%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .banner-right-content .about-me .para {
    width: 80%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-three-main-wrapper .banner-right-content .about-me .para {
    width: 100%;
  }
}

.banner-three-main-wrapper .banner-right-content .about-me .para span {
  color: var(--color-primary);
}

.banner-three-main-wrapper .banner-right-content .find-me-on {
  margin-top: 11px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper .inner {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .inner {
    padding-top: 30px;
  }
}

.banner-three-main-wrapper .inner .sub-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .inner .sub-title {
    font-size: 20px;
  }
}

.banner-three-main-wrapper .inner .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
}

@media (min-width: 1268px) {
  .banner-three-main-wrapper .inner .title {
    font-size: 90px;
    line-height: 115%;
  }
}

@media (min-width: 992px) and (max-width: 1120px) {
  .banner-three-main-wrapper .inner .title {
    font-size: 64px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper .inner .title {
    font-size: 65px;
    line-height: 115%;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .inner .title {
    margin-bottom: 10px;
  }
}

.banner-three-main-wrapper .bg-benner-img-three {
  width: 100%;
  position: relative;
}

.banner-three-main-wrapper .bg-benner-img-three img {
  width: 100%;
}

@media (min-width: 992px) {
  .banner-three-main-wrapper .bg-benner-img-three::before {
    content: " ";
    position: absolute;
    left: -100px;
    bottom: -50px;
    width: 939px;
    height: 800px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0) 13.58%, #080808 92.06%);
    filter: blur(50px);
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .banner-three-main-wrapper .bg-benner-img-three {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: inherit;
  }
}

.banner-three-main-wrapper .texts-one {
  position: absolute;
  bottom: 5%;
  left: 10%;
  -webkit-text-stroke: 1.25px var(--color-gray);
  color: transparent;
  font-family: var(--font-primary);
  font-size: 212.855px;
  font-weight: 700;
  line-height: 115%;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-three-main-wrapper .texts-one {
    bottom: 20%;
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper .texts-one {
    bottom: 50%;
    font-size: 100px;
    z-index: 2;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .texts-one {
    bottom: 50%;
    font-size: 80px;
    z-index: 2;
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .banner-three-main-wrapper .texts-one {
    bottom: 45%;
    font-size: 70px;
    z-index: 2;
  }
}

@media only screen and (max-width: 479px) {
  .banner-three-main-wrapper .texts-one {
    display: none;
  }
}

.banner-three-main-wrapper .texts-two {
  position: absolute;
  bottom: 0;
  left: 20%;
  -webkit-text-stroke: 1.25px #FF494A;
  font-family: var(--font-primary);
  font-size: 150px;
  font-weight: 700;
  line-height: 115%;
  color: transparent;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-three-main-wrapper .texts-two {
    bottom: 5%;
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-three-main-wrapper .texts-two {
    bottom: 40%;
    font-size: 100px;
    z-index: 2;
  }
}

@media only screen and (max-width: 767px) {
  .banner-three-main-wrapper .texts-two {
    bottom: 45%;
    font-size: 80px;
    z-index: 2;
  }
}

@media only screen and (max-width: 575px) {
  .banner-three-main-wrapper .texts-two {
    bottom: 45%;
    font-size: 70px;
    z-index: 2;
  }
}

@media only screen and (max-width: 479px) {
  .banner-three-main-wrapper .texts-two {
    display: none;
  }
}

/*==========================
  Up Down Animation Start
  ==========================*/
.up-down {
  -webkit-animation: up-down 1s infinite alternate;
  animation: up-down 1s infinite alternate;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.up-down-2 {
  -webkit-animation: up-down-2 0.9s infinite alternate;
  animation: up-down-2 0.9s infinite alternate;
}

@-webkit-keyframes up-down-2 {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes up-dow-2 {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

.tmp-contact-about-inner .download-icon.tmp-btn i {
  top: 0px;
  font-size: 16px;
}

@media only screen and (max-width: 1400px) {
  .index-nine .tab-content-overlay-to-top {
    margin-top: 0;
  }
}

@media screen and (max-width: 1400px) {
  .index-ten .tab-content-overlay-to-top {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .index-ten .tmp-contact-about-inner .thumbnail img {
    max-width: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .index-ten .tmp-contact-about-inner .thumbnail img {
    max-width: 280px;
  }
}

.tmp-white-version .loader-bg-pattern-wrapper {
  z-index: 0;
}

.tmp-white-version .loader-bg-pattern-wrapper {
  position: absolute;
  left: 50%;
  z-index: 0;
  top: 34.1%;
  transform: translate(-50%, -50%);
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern {
  --size: 450px;
  --duration: 4s;
  --logo-color: rgb(214, 214, 214);
  --background: linear-gradient(0deg,
      rgba(209, 209, 209, 0.2) 0%,
      rgba(206, 206, 206, 0.2) 100%);
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 400px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 320px;
  }
}

@media only screen and (max-width: 479px) {
  .tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 220px;
  }
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box {
  position: absolute;
  background: rgba(182, 182, 182, 0.15);
  background: var(--background);
  border-radius: 50%;
  border-top: 1px solid rgb(206, 206, 206);
  box-shadow: rgba(160, 160, 160, 0.123) 0px 10px 10px 0px;
  backdrop-filter: blur(5px);
  animation: ripple-2 var(--duration) infinite ease-in-out;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(1) {
  inset: 40%;
  z-index: 99;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(2) {
  inset: 30%;
  z-index: 98;
  border-color: rgba(100, 100, 100, 0.8);
  animation-delay: 0.2s;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(3) {
  inset: 20%;
  z-index: 97;
  border-color: rgba(100, 100, 100, 0.6);
  animation-delay: 0.4s;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(4) {
  inset: 10%;
  z-index: 96;
  border-color: rgba(203, 203, 203, 0.4);
  animation-delay: 0.6s;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(5) {
  inset: 0%;
  z-index: 95;
  border-color: rgba(100, 100, 100, 0.2);
  animation-delay: 0.8s;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30%;
}

.tmp-white-version .loader-bg-pattern-wrapper .loader-bg-pattern .logo svg {
  fill: var(--logo-color);
  width: 100%;
  animation: color-change var(--duration) infinite ease-in-out;
}

@keyframes ripple-2 {
  0% {
    transform: scale(1);
    box-shadow: rgba(124, 124, 124, 0.3) 0px 10px 10px 0px;
  }

  50% {
    transform: scale(1.3);
    box-shadow: rgba(124, 124, 124, 0.3) 0px 30px 20px 0px;
  }

  100% {
    transform: scale(1);
    box-shadow: rgba(128, 128, 128, 0.3) 0px 10px 10px 0px;
  }
}

@keyframes color-change {
  0% {
    fill: var(--logo-color);
  }

  50% {
    fill: white;
  }

  100% {
    fill: var(--logo-color);
  }
}

.banner-twelve-area {
  position: relative;
  z-index: 1;
  background-image: none !important;
  background: linear-gradient(90deg, rgb(6, 6, 6) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.banner-twelve-area #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.tmp-white-version.home-12 .banner-twelve-area {
  background: linear-gradient(359deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper {
  position: absolute;
  left: 50%;
  z-index: -1;
  top: 34.1%;
  transform: translate(-50%, -50%);
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern {
  --size: 450px;
  --duration: 4s;
  --logo-color: rgb(214, 214, 214);
  --background: linear-gradient(0deg,
      rgba(223, 223, 223, 0.2) 0%,
      rgba(226, 226, 226, 0.2) 100%);
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 400px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 320px;
  }
}

@media only screen and (max-width: 479px) {
  .tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern {
    --size: 220px;
  }
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box {
  position: absolute;
  background: rgba(223, 223, 223, 0.15);
  background: rgba(247, 247, 247, 0.3411764706);
  border-radius: 50%;
  border-top: 1px solid rgb(206, 206, 206);
  box-shadow: rgba(216, 216, 216, 0.123) 0px 10px 10px 0px;
  backdrop-filter: blur(5px);
  animation: ripple-2 var(--duration) infinite ease-in-out;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(1) {
  inset: 40%;
  z-index: 99;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(2) {
  inset: 30%;
  z-index: 98;
  border-color: rgba(100, 100, 100, 0.8);
  animation-delay: 0.2s;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(3) {
  inset: 20%;
  z-index: 97;
  border-color: rgba(100, 100, 100, 0.6);
  animation-delay: 0.4s;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(4) {
  inset: 10%;
  z-index: 96;
  border-color: rgba(203, 203, 203, 0.4);
  animation-delay: 0.6s;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .box:nth-child(5) {
  inset: 0%;
  z-index: 95;
  border-color: rgba(192, 192, 192, 0.2);
  animation-delay: 0.8s;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30%;
}

.tmp-white-version.home-12 .loader-bg-pattern-wrapper .loader-bg-pattern .logo svg {
  fill: var(--logo-color);
  width: 100%;
  animation: color-change var(--duration) infinite ease-in-out;
}

@keyframes ripple-2 {
  0% {
    transform: scale(1);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 10px 10px 0px;
  }

  50% {
    transform: scale(1.3);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 30px 20px 0px;
  }

  100% {
    transform: scale(1);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 10px 10px 0px;
  }
}

@keyframes color-change {
  0% {
    fill: var(--logo-color);
  }

  50% {
    fill: white;
  }

  100% {
    fill: var(--logo-color);
  }
}

.tmp-white-version.home-12 .header-left-sticky {
  background: #fff;
}

.tmp-white-version.home-12 .header-left-sticky .inner-wrapper::after {
  display: none;
}

.tmp-white-version.home-12 .tmp-right-demo .demo-button .text {
  color: var(--color-primary);
}

.tmp-white-version.index-ten .tmp-contact-about-inner::after {
  display: none;
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .index-seven .tmp-banner-one-area {
    background-image: none !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .index-seven .tmp-banner-one-area {
    background-image: none !important;
  }
}

.index-seven .tmp-banner-one-area {
  position: relative;
}

.index-seven .tmp-banner-one-area #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

.tmp-breadcrumb-image {
  position: relative;
  z-index: -1;
}

.tmp-breadcrumb-image #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

.tmp-banner-one-area.style-4 {
  position: relative;
  z-index: 1;
}

.tmp-banner-one-area.style-4 #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.profile-image-1-personal-left-fixed {
  position: sticky;
  top: 110px;
  left: 80px;
  bottom: 80px;
  padding: 30px;
  border: 1px solid rgba(121, 121, 121, 0.09);
  z-index: 1;
}

.profile-image-1-personal-left-fixed img {
  width: 100%;
}

.profile-image-1-personal-left-fixed::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 60px;
  border-radius: 0;
  background: var(--color-primary);
  z-index: -1;
  filter: blur(0px);
}

.profile-image-1-personal-left-fixed::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
  height: calc(100% - 60px);
  width: calc(100% - 60px);
}

.profile-image-1-personal-left-fixed .social-default {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  margin: -8px;
  position: absolute;
  left: 60px;
  top: 60px;
}

@media only screen and (max-width: 575px) {
  .profile-image-1-personal-left-fixed .social-default {
    left: 45px;
    top: 45px;
  }
}

.profile-image-1-personal-left-fixed .social-default li {
  margin: 8px;
}

@media only screen and (max-width: 575px) {
  .profile-image-1-personal-left-fixed .social-default li {
    margin: 4px;
  }
}

.profile-image-1-personal-left-fixed .social-default li a {
  width: 48px;
  background-color: #232324;
  height: 48px;
  line-height: 43px;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  transition: 0.3s;
  color: #fff;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .profile-image-1-personal-left-fixed .social-default li a {
    width: 35px;
    height: 35px;
  }
}

.profile-image-1-personal-left-fixed .social-default li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-primary);
  transform: scale(0.5);
  opacity: 0;
  transition: 0.3s;
  border-radius: 100%;
}

.profile-image-1-personal-left-fixed .social-default li a:hover::after {
  transform: scale(1);
  opacity: 1;
}

.profile-image-1-personal-left-fixed .title {
  position: absolute;
  left: 60px;
  bottom: 50px;
  font-size: 44px;
  z-index: 5;
  line-height: 1.4;
  font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .profile-image-1-personal-left-fixed .title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .profile-image-1-personal-left-fixed .title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 575px) {
  .profile-image-1-personal-left-fixed .title {
    left: 45px;
    bottom: 45px;
  }
}

.profile-image-1-personal-left-fixed .title .header-caption {
  color: var(--color-primary);
}

.banner-twelve-area.with-bg-image {
  background-image: url(../images/bg/01.webp) !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-twelve-area.with-bg-image {
    min-height: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-twelve-area.with-bg-image {
    min-height: 520px;
  }
}

.banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
  font-size: 84px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
    font-size: 54px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
    font-size: 32px;
  }
}

.banner-twelve-area.with-bg-image .social-share-style-1 {
  justify-content: center;
  display: flex;
  margin-top: 40px;
}

.banner-twelve-area.with-bg-image .social-share-style-1 a {
  background: #141414;
}

.model-style-banner {
  position: relative;
}

.model-style-banner .social-area-wrapper-varticle {
  position: absolute;
  left: 60px;
  top: 60%;
}

@media only screen and (max-width: 767px) {
  .model-style-banner .social-area-wrapper-varticle {
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 575px) {
  .model-style-banner .social-area-wrapper-varticle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.model-style-banner .social-area-wrapper-varticle::after {
  position: absolute;
  left: 50%;
  height: 85px;
  width: 2px;
  background: rgba(255, 255, 255, 0.062745098);
  content: "";
  transform: translateX(-50%);
  bottom: -100px;
}

@media only screen and (max-width: 767px) {
  .model-style-banner .social-area-wrapper-varticle::after {
    display: none;
  }
}

.model-style-banner .social-area-wrapper-varticle ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .model-style-banner .social-area-wrapper-varticle ul {
    flex-direction: row-reverse;
  }
}

.model-style-banner .social-area-wrapper-varticle ul li {
  margin: 0;
}

.model-style-banner .social-area-wrapper-varticle ul li a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.062745098);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.model-style-banner .social-area-wrapper-varticle ul li a::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.06;
  transform: scale(0);
  transition: all 0.4s ease;
  z-index: -1;
}

.model-style-banner .social-area-wrapper-varticle ul li a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.model-style-banner.with-instructor .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.model-style-banner.with-instructor .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-style-banner.with-instructor .banner-model-15 {
  text-align: center;
  max-width: 80%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .model-style-banner.with-instructor .banner-model-15 {
    max-width: 100%;
  }
}

.model-style-banner.with-instructor .banner-model-15 p.disc {
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
}

.model-style-banner.with-instructor .banner-model-15 .title {
  font-size: 160px !important;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .model-style-banner.with-instructor .banner-model-15 .title {
    font-size: 120px !important;
  }
}

@media only screen and (max-width: 1199px) {
  .model-style-banner.with-instructor .banner-model-15 .title {
    font-size: 100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .model-style-banner.with-instructor .banner-model-15 .title {
    font-size: 80px !important;
  }
}

@media only screen and (max-width: 575px) {
  .model-style-banner.with-instructor .banner-model-15 .title {
    font-size: 42px !important;
  }
}

.banner-right-thumb-left-content {
  padding-top: 0;
}

.banner-right-thumb-left-content .pre-title {
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.banner-right-thumb-left-content .title {
  margin-bottom: 35px;
  font-size: 64px;
}

@media only screen and (max-width: 767px) {
  .banner-right-thumb-left-content .title {
    font-size: 56px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-right-thumb-left-content .title {
    font-size: 28px;
  }
}

.banner-right-thumb-left-content .title span {
  color: var(--color-primary);
}

.banner-right-thumb-left-content p.disc {
  margin-bottom: 25px;
  max-width: 75%;
}

@media only screen and (max-width: 575px) {
  .banner-right-thumb-left-content p.disc {
    max-width: 100%;
  }
}

.banner-right-thumb-left-content .find-me-on {
  margin-top: 45px;
}

.banner-right-thumbnail-area .thumbnail-right-inner-main-image {
  padding: 25px;
  background: var(--color-gray-2);
  border-radius: 20px;
}

@media only screen and (max-width: 575px) {
  .banner-right-thumbnail-area .thumbnail-right-inner-main-image {
    padding: 15px;
  }
}

.box-body {
  margin: 25px;
  background: #ee0979;
  background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);
  background: var(--gradient-box) !important;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .box-body {
    margin: 10px;
  }
}

.box-body .main-wrapper-inner {
  background: var(--color-secondary);
}

.box-body .banner-right-thumbnail-area .thumbnail-right-inner-main-image {
  background: var(--gradient-box);
}

@media only screen and (max-width: 575px) {
  .box-body .banner-right-thumbnail-area .thumbnail-right-inner-main-image {
    padding: 15px;
  }
}

.box-body .header--sticky.sticky {
  top: 0;
  left: 25px;
  right: 25px;
  width: auto;
  transform: none;
}

.bg_modern-banner-bg {
  background-image: url(../images/bg/05.webp);
  height: 950px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg_modern-banner-bg {
    height: 650px;
  }
}

@media only screen and (max-width: 767px) {
  .bg_modern-banner-bg {
    height: 650px;
  }
}

@media only screen and (max-width: 575px) {
  .bg_modern-banner-bg {
    height: 650px;
  }
}

.bg_modern-banner-bg::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: radial-gradient(circle, rgba(2, 0, 36, 0) 0%, rgba(6, 6, 6, 0.7647058824), #060606);
}

.banner-inner-modern-content {
  position: absolute;
  bottom: 70px;
  display: flex;
  align-items: flex-end;
  gap: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-modern-content {
    align-items: flex-start;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .banner-inner-modern-content {
    align-items: flex-start;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
  }
}

.banner-inner-modern-content .title {
  font-size: 120px;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-inner-modern-content .title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .banner-inner-modern-content .title {
    font-size: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-modern-content .title {
    font-size: 43px;
  }

  .banner-inner-modern-content .title br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .banner-inner-modern-content .title {
    font-size: 43px;
  }

  .banner-inner-modern-content .title br {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .banner-inner-modern-content .title {
    font-size: 36px;
  }
}

.banner-inner-modern-content .title span {
  color: var(--color-primary);
}

.banner-inner-modern-content .right-content {
  flex-basis: 35%;
  margin-bottom: 30px;
}

.banner-inner-modern-content .right-content p.disc {
  color: #fff;
  font-weight: 500;
}

.tmp-banner-area-full-width-modern {
  position: relative;
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle {
  position: absolute;
  left: 60px;
  bottom: 95px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle {
    left: 121px;
    bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle {
    top: 85%;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul {
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul {
    flex-direction: row-reverse;
  }
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul li {
  margin: 0;
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul li a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.062745098);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul li a::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.06;
  transform: scale(0);
  transition: all 0.4s ease;
  z-index: -1;
}

.tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul li a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.container-full {
  max-width: 100%;
}

.text-scale-anim {
  white-space: pre-wrap;
  transform-origin: top left;
}

.invers-word-span {
  display: inline-block;
}

.invers-letter-span {
  display: inline-block;
  transition: color 0.3s ease;
}

.tmp-banner-style-actress {
  background-image: url(../images/bg/07.webp);
  min-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-style-actress {
    height: 750px;
    min-height: 750px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-style-actress {
    height: 650px;
    min-height: 650px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-style-actress {
    height: 550px;
    min-height: 550px;
  }
}

.tmp-banner-style-actress .banner-actress .title {
  position: absolute;
  left: 50%;
  bottom: -68px;
  transform: translateX(-50%);
  font-size: 280px;
  min-width: max-content;
  line-height: 1;
  color: var(--color-heading) !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-style-actress .banner-actress .title {
    font-size: 200px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-style-actress .banner-actress .title {
    font-size: 180px;
    bottom: -30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-style-actress .banner-actress .title {
    font-size: 120px;
    bottom: -20px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-style-actress .banner-actress .title {
    font-size: 80px;
    bottom: -15px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-banner-style-actress .banner-actress .title {
    font-size: 60px;
    bottom: -15px;
  }
}

.tmp-banner-style-actress .banner-actress .title span {
  color: var(--color-heading);
}

/*===============================
  About Me Section Card
  ===============================*/
.testimonial-card {
  position: relative;
  z-index: 2;
  display: flex;
}

.testimonial-card .card-content-wrap {
  z-index: 1;
  position: relative;
}

.testimonial-card .card-content-wrap .text-doc {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-transform: capitalize;
  max-width: 376px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card .card-content-wrap .text-doc {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card .card-content-wrap .text-doc {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    max-width: 393px;
    margin-bottom: 19px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-card .card-content-wrap .text-doc {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial-card .card-content-wrap .text-doc {
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
  }
}

.testimonial-card .card-content-wrap .card-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card .card-content-wrap .card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 2px;
  }
}

.testimonial-card .card-content-wrap .card-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

.testimonial-card .card-content-wrap .testimonital-icon {
  width: 110px;
  height: 93px;
  margin-top: 29px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card .card-content-wrap .testimonital-icon {
    width: 79px;
    height: 71px;
    margin-top: 10px;
  }
}

.testimonial-card .card-content-wrap .testimonital-icon img {
  width: 100%;
}

.testimonial-card .testimonial-card-img {
  display: flex;
  justify-content: end;
  position: absolute;
  right: 0;
  bottom: 15%;
  width: 60%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card .testimonial-card-img {
    bottom: 7%;
    width: 64%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card .testimonial-card-img {
    bottom: 7%;
    width: 39%;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-card .testimonial-card-img {
    bottom: 7%;
    width: 50%;
  }
}

.testimonial-card .testimonial-card-img img {
  object-fit: cover;
}

.testimonial-card.style-2 {
  background: var(--color-gray-2);
  border-radius: 20px;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card.style-2 {
    padding: 30px 20px;
  }
}

.testimonial-card.style-2 .content .text-doc {
  line-height: 1.7;
  font-size: 18px;
  font-family: var(--font-secondary);
  color: var(--color-gray);
  font-weight: 400;
  margin-top: 43px;
  margin-bottom: 38px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card.style-2 .content .text-doc {
    font-size: 16px;
    margin-bottom: 18px;
  }
}

.testimonial-card.style-2 .content .card-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.testimonial-card.style-2 .content .card-para {
  font-family: var(--font-secondary);
  color: var(--color-gray);
  font-size: 14px;
}

.testimonial-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-wrapper .swiper-button-prev,
.testimonial-wrapper .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.testimonial-wrapper .swiper-button-prev i,
.testimonial-wrapper .swiper-button-next i {
  color: var(--color-heading);
  font-size: 24px;
  font-weight: 300;
  transition: all 0.4s ease;
}

.testimonial-wrapper .swiper-button-prev:hover,
.testimonial-wrapper .swiper-button-next:hover {
  background: var(--color-primary);
}

.testimonial-wrapper .swiper-button-prev:hover i,
.testimonial-wrapper .swiper-button-next:hover i {
  color: #ffffff;
  transform: rotate(0deg);
}

.testimonial-wrapper .swiper-button-prev::after,
.testimonial-wrapper .swiper-button-next::after {
  display: none;
}

.testimonial-wrapper .swiper-button-prev {
  display: none;
}

@media (min-width: 1700px) {
  .testimonial-wrapper .swiper-button-prev {
    left: 150px;
    display: inline-flex;
  }
}

.testimonial-wrapper .swiper-button-prev i {
  transform: rotate(45deg);
}

.testimonial-wrapper .swiper-button-next {
  display: none;
}

@media (min-width: 1700px) {
  .testimonial-wrapper .swiper-button-next {
    right: 150px;
    display: inline-flex;
  }
}

.testimonial-wrapper .swiper-button-next i {
  transform: rotate(-45deg);
}

/*===============================
  Price Plan Card
  ===============================*/
.price-plan-card {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 25px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 576px) {
  .price-plan-card {
    padding: 40px;
  }
}

.price-plan-card.active.blur-style-one::before {
  background: var(--color-primary);
  opacity: 1;
}

.price-plan-card.v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price-plan-card.v2 .price-plan-card-icon {
  margin-bottom: 33px;
}

.price-plan-card.v2 .check-box {
  border-top: none;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 40px;
  padding-top: 28px;
}

@media only screen and (max-width: 767px) {
  .price-plan-card.v2 .check-box {
    margin-bottom: 20px;
    padding-top: 16px;
  }
}

.price-plan-card .popular-tag {
  position: absolute;
  top: 0;
  right: 0;
}

.price-plan-card .price-sub-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.price-plan-card .main-price {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.price-plan-card .per-month {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 28px;
}

@media only screen and (max-width: 767px) {
  .price-plan-card .per-month {
    margin-bottom: 14px;
  }
}

/*===============================
  Check Box
  ===============================*/
.check-box {
  border-top: 2px solid rgba(157, 157, 255, 0.0509803922);
  padding-top: 43px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .check-box {
    padding-bottom: 40px;
  }
}

.check-box ul li {
  margin: 0 0 15px 0;
}

.check-box ul li:last-child {
  margin-bottom: 0;
}

.check-box .check-box-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-box .check-box-item .box-icon {
  color: var(--color-primary);
}

.check-box .check-box-item .box-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.pricing-table-col-2 {
  border-radius: 6px;
  padding: 37px 40px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

@media only screen and (max-width: 575px) {
  .pricing-table-col-2 {
    padding: 20px;
  }
}

.pricing-table-col-2 .pricing-table-header {
  border-bottom: 1px solid rgba(157, 157, 255, 0.0509803922);
  padding-bottom: 20px;
  margin-bottom: 34px;
}

.pricing-table-col-2 .pricing-table-header h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.pricing-table-col-2 .pricing-table-header .top p {
  font-size: 13px;
  line-height: 20px;
  color: rgba(226, 230, 255, 0.6509803922);
  margin: 0;
}

.pricing-table-col-2 .pricing-table-header h3 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.pricing-table-col-2 .pricing-table-header h3 span {
  font-size: 24px;
  color: rgba(226, 230, 255, 0.6509803922);
}

.pricing-table-col-2 .feature-lists {
  margin-bottom: 80px;
  padding: 0;
  list-style: none;
}

.pricing-table-col-2 .feature-lists li {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 10px;
  font-weight: 500;
}

.pricing-table-items .info {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  margin: 60px 0 0 0;
}

.pricing-table-items .info a {
  color: var(--color-primary);
  text-decoration: underline;
  line-height: 0;
  padding: 0;
  margin: 0;
  height: 0;
  margin-top: 33px;
}

/*===============================
  Get In Touch Wrapper
  ===============================*/
.get-in-touch-wrapper {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 20px 30px;
  margin-bottom: 43px;
}

@media (min-width: 576px) {
  .get-in-touch-wrapper {
    padding: 48px 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .get-in-touch-wrapper {
    padding: 40px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .get-in-touch-wrapper {
    padding: 30px 20px;
  }
}

/*===============================
  Counter Inner
  ===============================*/
.contact-inner .title-left {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

@media (min-width: 576px) {
  .contact-inner .title-left {
    font-size: 58px;
    line-height: 61px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-inner .title-left {
    font-size: 50px;
    line-height: 1.23;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-inner .title-left {
    font-size: 50px;
    line-height: 1.23;
  }
}

@media only screen and (max-width: 767px) {
  .contact-inner .title-left {
    font-size: 32px;
    line-height: 1.2;
  }
}

/*===============================
  Contact Form
  ===============================*/
.contact-form .contact-form-wrapper .form-group {
  margin-bottom: 0;
  border: none !important;
}

.contact-form .contact-form-wrapper .form-group input {
  background: transparent;
  height: inherit;
  padding: 15px 20px;
  font-size: 16px;
  color: var(--color-heading);
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid var(--color-border);
}

.contact-form .contact-form-wrapper .form-group input:focus {
  border-color: var(--color-primary);
}

.contact-form .contact-form-wrapper .form-group input::placeholder {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.contact-form .contact-form-wrapper .form-group textarea {
  background: transparent;
  font-size: 16px;
  color: var(--color-heading);
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid var(--color-border);
}

.contact-form .contact-form-wrapper .form-group textarea::placeholder {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.contact-form .contact-form-wrapper .form-group textarea:focus {
  border-color: var(--color-primary);
}

.contact-form .tpm-btn-primary {
  width: 100%;
}

.contact-form .tpm-btn-primary button {
  justify-content: center;
}

.contact-form .tpm-btn-primary span {
  justify-content: center;
}

/*===============================
  Contact Info
  ===============================*/
.contact-info {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 50px 0;
  width: 100%;
  background: #0F0F0F;
}

.contact-info .contact-icon {
  width: 70px;
  height: 70px;
  background: rgb(220 223 236);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-size: 30px;
}

.contact-info .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.contact-info .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin-bottom: 5px;
}

.contact-info .para:last-child {
  margin-bottom: 0;
}

/*===============================
  Contact Get In Touch Wrap
  ===============================*/
.contact-get-in-touch-wrap .get-in-touch-wrapper .section-head {
  padding-right: 80px;
  position: sticky;
  top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-get-in-touch-wrap .get-in-touch-wrapper .section-head {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .contact-get-in-touch-wrap .get-in-touch-wrapper .section-head {
    padding-right: 0;
  }
}

#form-messages.error {
  color: var(--color-danger);
}

#form-messages.success {
  color: var(--color-success);
}

.contact-area-left-portfolio-fixed .form-group {
  margin-bottom: 20px;
}

.contact-area-left-portfolio-fixed input,
.contact-area-left-portfolio-fixed textarea {
  background: var(--color-gray-2);
  border: 1px solid #0F0F0F;
}

.contact-area-left-portfolio-fixed input:focus,
.contact-area-left-portfolio-fixed textarea:focus {
  border: 1px solid var(--color-primary) !important;
}

.contact-area-left-portfolio-fixed input {
  height: 70px;
  padding: 0 20px;
}

.contact-area-left-portfolio-fixed textarea {
  padding-top: 20px;
  padding-left: 20px;
  min-height: 193px;
  border-radius: var(--radius);
  resize: none;
  padding: 15px;
  font-size: 16px;
}

.breadcrumb-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/breadcrumb/breadcum-bg.png");
}

.breadcrumb-area {
  padding-top: 135px;
  padding-bottom: 44px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-area {
    padding-top: 128px;
    padding-bottom: 38px;
  }
}

.breadcrumb-inner {
  margin: 0 auto;
}

.breadcrumb-inner .title {
  color: var(--color-heading);
  margin-bottom: 5px;
  font-size: 40px;
}

@media only screen and (max-width: 575px) {
  .breadcrumb-inner .title {
    font-size: 32px;
  }
}

.breadcrumb-inner .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-inner .page-list li {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.breadcrumb-inner .page-list li.icon {
  padding: 0 16px;
}

.breadcrumb-inner .page-list li.icon i {
  font-size: 12px;
}

.breadcrumb-inner .page-list li.active {
  color: var(--color-primary);
}

.breadcrumb-inner:hover a {
  color: var(--color-primary);
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  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: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 0px solid var(--color-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
  font-weight: 300;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f062";
  border: 0px solid var(--color-primary);
  font-weight: 300;
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-weight: 300;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: var(--color-primary) !important;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 0px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  padding: 2px;
}

.home-blue .progress-wrap svg.progress-circle path {
  stroke: var(--color-primary-2);
}

.home-blue .progress-wrap::after {
  border-color: var(--color-primary-2);
  box-shadow: 0px 3px 20px 6px rgba(7, 66, 233, 0.3215686275);
  color: var(--color-primary-2);
}

/*===============================
  Scroll To Top
  ===============================*/
.scrollToTop {
  display: none !important;
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0f0f0f;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  transition: 0.5s ease all;
}

@media only screen and (max-width: 575px) {
  .scrollToTop {
    height: 40px;
    width: 40px;
  }
}

.scrollToTop.active-progress {
  display: block !important;
}

.scrollToTop:hover {
  transform: translateY(-15%);
}

.scrollToTop .arrowUp {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.scrollToTop .arrowUp i {
  font-size: 19px;
}

.scrollToTop .water {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  background-color: var(--color-primary);
  transition: all 0.3s;
}

.scrollToTop .water svg use {
  margin-bottom: -1px;
  position: relative;
  bottom: -1px;
  fill: var(--color-primary) !important;
}

.scrollToTop .water_wave {
  width: 200%;
  position: absolute;
  bottom: 100%;
}

.scrollToTop .water_wave_back {
  right: 0;
  fill: var(--color-heading);
  animation: wave-back 1.4s infinite linear;
}

.scrollToTop .water_wave_front {
  left: 0;
  fill: rgba(122, 37, 158, 0.8784313725);
  margin-bottom: -1px;
  animation: wave-front 0.7s infinite linear;
}

@keyframes wave-front {
  100% {
    transform: translateX(-50%);
  }
}

@keyframes wave-back {
  100% {
    transform: translateX(50%);
  }
}

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #1a1a1a;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 15px;
  text-transform: uppercase;
  z-index: 20;
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
  color: var(--color-heading);
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.year-of-expariance-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-2);
  border-radius: 20px;
  padding: 36px 52px 51px 52px;
}

.year-of-expariance-wrapper.bg-blur-style-one::after,
.year-of-expariance-wrapper.bg-blur-style-two::after,
.year-of-expariance-wrapper.bg-blur-style-three::after {
  content: " ";
  position: absolute;
  right: -250px;
  bottom: -367px;
  min-width: 474px;
  min-height: 474px;
  border-radius: 100px;
  filter: blur(227px);
  z-index: -1;
}

.year-of-expariance-wrapper.bg-blur-style-one::after {
  background: var(--color-primary);
}

@media (min-width: 1400px) {
  .year-of-expariance-wrapper {
    padding: 36px 52px 51px 52px;
  }
}

@media only screen and (max-width: 767px) {
  .year-of-expariance-wrapper {
    padding: 30px 20px;
  }
}

.year-of-expariance-wrapper .year-expariance-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .year-of-expariance-wrapper .year-expariance-wrap {
    gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .year-of-expariance-wrapper .year-expariance-wrap {
    display: block;
  }
}

@media (min-width: 568px) {
  .year-of-expariance-wrapper .year-expariance-wrap {
    gap: 44px;
  }
}

.year-of-expariance-wrapper .year-expariance-wrap .year-number {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 167px;
  line-height: 115%;
  font-weight: 700;
  margin-bottom: 0;
  flex-basis: 40%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-number {
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-number {
    font-size: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-number {
    font-size: 100px;
    line-height: 1;
  }
}

.year-of-expariance-wrapper .year-expariance-wrap .year-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48.14px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-title {
    font-size: 37px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-title {
    font-size: 37px;
  }
}

@media only screen and (max-width: 767px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-title {
    font-size: 32px;
  }

  .year-of-expariance-wrapper .year-expariance-wrap .year-title br {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .year-of-expariance-wrapper .year-expariance-wrap .year-title {
    font-size: 26px;
  }

  .year-of-expariance-wrapper .year-expariance-wrap .year-title br {
    display: none;
  }
}

.year-of-expariance-wrapper .year-para {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 12px;
}

.counter-card {
  padding: 34px 7px;
  border-radius: 20px;
  background: var(--color-gray-2);
  height: 100%;
}

.counter-card .counter-title {
  color: var(--color-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .counter-card .counter-title {
    font-size: 40px;
  }
}

.counter-card .counter-para {
  color: var(--color-gray);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 4px;
}

/*===============================
  Education Experience Card
  ===============================*/
.education-experience-card {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 50px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .education-experience-card {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .education-experience-card {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .education-experience-card {
    padding: 30px 20px;
  }
}

.education-experience-card .edu-sub-title {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 5px;
}

.education-experience-card .edu-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 0;
}

.education-experience-card .edu-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 18px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .education-experience-card .edu-para {
    margin-top: 8px;
  }
}

/*===============================
  Experiences Wrapper
  ===============================*/
.experiences-wrapper {
  margin-top: 75px;
}

.experiences-wrapper.v2 .experiences-wrap-left-content {
  padding-left: 40px;
}

@media only screen and (max-width: 575px) {
  .experiences-wrapper.v2 .experiences-wrap-left-content {
    padding: 0 15px;
  }
}

.experiences-wrapper .experiences-wrap-left-content {
  padding: 0 40px;
}

@media (min-width: 1200px) {
  .experiences-wrapper .experiences-wrap-left-content {
    padding-right: 138px;
    padding-left: 0;
  }
}

@media only screen and (max-width: 575px) {
  .experiences-wrapper .experiences-wrap-left-content {
    padding: 0 15px;
  }
}

.experiences-wrapper .experiences-wrap-left-content .experience-content {
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experiences-wrapper .experiences-wrap-left-content .experience-content {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .experiences-wrapper .experiences-wrap-left-content .experience-content {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .experiences-wrapper .experiences-wrap-left-content .experience-content {
    margin-bottom: 30px;
  }
}

.experiences-wrapper .experiences-wrap-left-content .experience-content:last-child {
  margin-bottom: 0;
}

.experiences-wrapper .experiences-wrap-left-content .experience-content .ex-subtitle {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
}

.experiences-wrapper .experiences-wrap-left-content .experience-content .ex-name {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
  margin-top: 0px;
}

.experiences-wrapper .experiences-wrap-left-content .experience-content .ex-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 0;
  margin-top: 6px;
}

.experiences-wrapper .experiences-wrap-left-content .experience-content .ex-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 16px;
}

.experiences-wrapper .experiences-wrap-right-content {
  overflow: hidden;
}

.experiences-wrapper .experiences-wrap-right-content img {
  width: 100%;
  border-radius: 20px;
}

/*===============================
  Latest Portfolio Area
  ===============================*/
.custom-column-grid .row {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 4rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-column-grid .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-column-grid .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .custom-column-grid .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 30px;
  }
}

/*===============================
  Latest Portfolio Custom Title
  ===============================*/
.latest-portfolio-custom-title {
  text-align: center;
  -webkit-text-stroke: 1px #242424;
  color: transparent;
  font-family: var(--font-primary);
  text-transform: uppercase;
  margin-bottom: 34px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

@media (min-width: 576px) {
  .latest-portfolio-custom-title {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (min-width: 1640px) {
  .latest-portfolio-custom-title {
    font-size: 165px;
    line-height: 115%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-portfolio-custom-title {
    font-size: 65px;
  }
}

@media only screen and (max-width: 767px) {
  .latest-portfolio-custom-title {
    font-size: 65px;
  }
}

/*===============================
  Latest Portfolio Card
  ===============================*/
.latest-portfolio-card .portfoli-card-img {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 20px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-portfolio-card .portfoli-card-img {
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .latest-portfolio-card .portfoli-card-img {
    padding: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .latest-portfolio-card .portfoli-card-img {
    padding: 5px;
  }
}

.latest-portfolio-card .portfoli-card-img a {
  display: block;
  transition: var(--transition);
}

.latest-portfolio-card .portfoli-card-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.latest-portfolio-card:hover .portfoli-card-img img {
  transform: scale(1.03);
}

.latest-portfolio-card.v5 .portfoli-card-img {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.latest-portfolio-card.v5 .portfoli-card-img .img-link-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  border: 2px solid var(--color-primary);
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .latest-portfolio-card.v5 .portfoli-card-img .img-link-icon {
    width: 112px;
    height: 112px;
  }
}

.latest-portfolio-card.v5 .portfoli-card-img .img-link-icon i {
  transform: rotate(45deg);
  transition: all 0.4s ease;
  color: var(--color-white);
}

.latest-portfolio-card.v5 .portfoli-card-img .img-link-icon:hover {
  color: var(--color-heading);
}

.latest-portfolio-card.v5 .portfoli-card-img .img-link-icon:hover i {
  transform: rotate(90deg);
}

.latest-portfolio-card.v5 .portfoli-card-img:hover .img-link-icon {
  opacity: 1;
}

.latest-portfolio-card.v5 .portfolio-card-title:hover a {
  color: var(--color-primary);
}

.latest-portfolio-card .portfolio-card-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 33px;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .latest-portfolio-card .portfolio-card-content-wrap {
    margin-top: 15px;
  }
}

.latest-portfolio-card .portfolio-card-content-wrap .portfolio-card-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
  transition: var(--transition);
}

@media only screen and (max-width: 479px) {
  .latest-portfolio-card .portfolio-card-content-wrap .portfolio-card-title {
    font-size: 20px;
  }
}

.latest-portfolio-card .portfolio-card-content-wrap .portfolio-card-title:hover {
  color: var(--color-primary);
}

.latest-portfolio-card .portfolio-card-content-wrap .portfoli-card-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
}

/*===============================
  Latest Portfolio Area
  ===============================*/
.latest-portfolio-area .see-all-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

/*===================================
  Latest Portfolio Card Style Two
  ===================================*/
.latest-portfolio-card-style-two {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 20px;
  height: 100%;
}

@media (min-width: 576px) {
  .latest-portfolio-card-style-two {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .latest-portfolio-card-style-two {
    padding: 10px;
  }
}

.latest-portfolio-card-style-two .portfoli-card-img img {
  border-radius: 10px;
}

.latest-portfolio-card-style-two .portfolio-card-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin-top: 13px;
  margin-bottom: -3px;
}

@media only screen and (max-width: 767px) {
  .latest-portfolio-card-style-two .portfolio-card-title {
    font-size: 26px;
    line-height: 34px;
  }
}

.latest-portfolio-card-style-two .portfolio-card-content-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}

/*===============================
  Tags Items
  ===============================*/
.tag-items ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .tag-items ul {
    gap: 6px;
    flex-wrap: wrap;
  }
}

.tag-items ul li {
  margin: 0;
  margin-bottom: 6px;
}

.tag-items ul li a {
  border-radius: 500px;
  border: 2px solid var(--color-border);
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 15px;
  transition: var(--transition);
}

.tag-items ul li a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/*===================================
  Latest Portfolio Tabs Area
  ===================================*/
.latest-portfolio-tabs-area .nav-tabs {
  border-bottom: 1px solid none;
  border: none;
}

.latest-portfolio-tabs-area .nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 776px) {
  .latest-portfolio-tabs-area .nav {
    gap: 15px;
  }
}

.latest-portfolio-tabs-area .nav li {
  margin: 0;
}

.latest-portfolio-tabs-area .nav .nav-link {
  padding: 6px 25px;
  border-radius: 999px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  background: var(--color-gray-2);
  border: none;
}

.latest-portfolio-tabs-area .nav .nav-link.active {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: none;
}

.latest-portfolio-tabs-area .tab-content {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-two::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-two::before,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-three::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-three::before {
  content: " ";
  position: absolute;
  width: 304px;
  height: 304px;
  opacity: 0.6;
  filter: blur(280px);
  z-index: -1;
}

.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-two::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-three::after {
  left: 0;
  bottom: 172px;
}

.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-two::before,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-three::before {
  right: 0;
  bottom: 65%;
}

.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after,
.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before {
  background: var(--color-primary);
}

.latest-portfolio-tabs-area .tab-content img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.latest-portfolio-tabs-area .tab-content .tab-right-img-wrap .small-img:last-child {
  margin-top: 30px;
}

/*----------------------
    Tmp Portfolio  
-----------------------*/
.tmp-portfolio {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.tmp-portfolio img {
  width: 100%;
}

.tmp-portfolio::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(var(--color-primary) 10%, #000);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.tmp-portfolio:hover::after {
  opacity: 0.85;
}

.tmp-portfolio:hover .portfolio-card-content-wrap {
  bottom: 30px;
  opacity: 1;
  pointer-events: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-portfolio:hover .portfolio-card-content-wrap {
    bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-portfolio:hover .portfolio-card-content-wrap {
    bottom: 15px;
  }
}

.tmp-portfolio .portfolio-card-content-wrap {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 999;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-portfolio .portfolio-card-content-wrap {
    left: 15px;
    right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-portfolio .portfolio-card-content-wrap {
    left: 15px;
    right: 15px;
  }
}

.tmp-portfolio .portfolio-card-content-wrap .portfoli-card-para {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: var(--font-secondary);
  color: var(--color-white);
}

.tmp-portfolio .portfolio-card-content-wrap .portfolio-card-title {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--color-white);
  line-height: 1.3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-portfolio .portfolio-card-content-wrap .portfolio-card-title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-portfolio .portfolio-card-content-wrap .portfolio-card-title {
    font-size: 18px;
  }
}

.tmp-portfolio .portfolio-card-content-wrap .portfolio-card-title:hover {
  color: #fff !important;
}

.tmp-portfolio .tmp-arrow-icon-btn i {
  color: var(--color-white);
}

.over_link {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/*===============================
  My Skill Card Wrapper
  ===============================*/
.my-skill-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 43px 20px 32px 20px;
}

.my-skill-card:first-child {
  border-top: 2px solid rgba(227, 227, 227, 0.2);
}

@media (min-width: 992px) {
  .my-skill-card {
    justify-content: space-between;
    flex-direction: inherit;
  }
}

.my-skill-card .card-icon {
  color: var(--color-body);
  font-size: 34px;
  font-weight: 600;
  transition: all 0.4s ease;
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-border);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-skill-card .card-icon img {
  max-height: 32px;
  filter: invert(1);
}

.my-skill-card .main-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .my-skill-card .main-title {
    font-size: 17px;
    line-height: 1.2;
  }
}

.my-skill-card .sub-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
}

@media (min-width: 900px) {
  .my-skill-card .sub-title {
    text-align: start;
  }
}

.my-skill-card .card-para {
  max-width: 452px;
  margin-bottom: 0;
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

@media (min-width: 900px) {
  .my-skill-card .card-para {
    text-align: start;
  }
}

.my-skill-card .read-more-btn:hover {
  color: var(--color-heading);
}

/*=========================
  My Skill Card Style Two
  =========================*/
.my-skill-area-style-two .my-skill-area-left-content-wrap {
  position: sticky;
  top: 100px;
}

@media (min-width: 576px) {
  .my-skill-area-style-two .my-skill-area-left-content-wrap {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-skill-area-style-two .my-skill-area-left-content-wrap {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .my-skill-area-style-two .my-skill-area-left-content-wrap {
    padding-right: 0;
  }
}

/*===============================
  My Skill Card Style Two
  ===============================*/
.my-skill-card-style-two .my-skill-card {
  padding: 40px;
  position: relative;
  border-top: none;
  flex-direction: column;
}

@media (min-width: 900px) {
  .my-skill-card-style-two .my-skill-card {
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .my-skill-card-style-two .my-skill-card {
    padding: 40px 15px;
  }
}

.my-skill-card-style-two .my-skill-card::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--color-border);
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.my-skill-card-style-two .my-skill-card .card-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 19px;
  margin-bottom: 0;
}

.my-skill-card-style-two .my-skill-card .card-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 21px;
}

.border--radious-20 {
  border-radius: 20px !important;
}

/*===============================
  About Me Section Card
===============================*/
.about-us-section-card .about-us-card {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 38px 22px;
  height: 100%;
}

@media only screen and (max-width: 575px) {
  .about-us-section-card .about-us-card {
    padding: 15px;
  }
}

.about-us-section-card .about-us-card .card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-us-section-card .about-us-card .card-head .logo-img {
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  min-width: 45px;
}

.about-us-section-card .about-us-card .card-head .logo-img i {
  font-size: 18px;
  color: var(--color-white);
}

.about-us-section-card .about-us-card .card-head .card-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.about-us-section-card .about-us-card .card-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 11px;
}

/*===============================
  About Me Left Content Wrap
  ===============================*/
.about-us-left-content-wrap {
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .about-us-left-content-wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about-us-left-content-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap {
    padding: 0;
  }
}

.about-us-left-content-wrap.bg-vactor-one::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 197px;
  background: linear-gradient(0deg, rgba(255, 1, 79, 0) 15.49%, var(--color-primary) 100%);
  filter: blur(2px);
  border-radius: 100%;
  width: 410px;
  height: 410px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-left-content-wrap.bg-vactor-one::after {
    width: 250px;
    height: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap.bg-vactor-one::after {
    width: 200px;
    height: 200px;
  }
}

.about-us-left-content-wrap.bg-vactor-two::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 197px;
  background: linear-gradient(0deg, rgba(255, 1, 79, 0) 15.49%, #FDC448 100%);
  filter: blur(2px);
  border-radius: 100%;
  width: 410px;
  height: 410px;
  z-index: -1;
}

.about-us-left-content-wrap .years-of-experience-card {
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.04);
  backdrop-filter: blur(35px);
  padding: 10px 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-left-content-wrap .years-of-experience-card {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .years-of-experience-card {
    padding: 40px 30px;
  }
}

.about-us-left-content-wrap .years-of-experience-card .counter-main {
  width: 150px;
  height: 150px;
  background: #060606;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-bottom: 0;
  min-width: 100px;
}

.about-us-left-content-wrap .years-of-experience-card .counter-main .card-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 68px;
  font-weight: 700;
  line-height: 78px;
}

.about-us-left-content-wrap .years-of-experience-card .card-title {
  margin-bottom: 0.5rem;
  font-size: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-left-content-wrap .years-of-experience-card .card-title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .years-of-experience-card .card-title {
    font-size: 60px;
  }
}

.about-us-left-content-wrap .years-of-experience-card .card-para {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .years-of-experience-card .card-para {
    font-size: 32px;
    line-height: 42px;
    margin-top: 10px;
  }
}

.about-us-left-content-wrap .design-card {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.04);
  backdrop-filter: blur(35px);
  padding: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card {
    gap: 15px;
    padding: 30px 15px;
  }
}

.about-us-left-content-wrap .design-card .design-card-img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card .design-card-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}

.about-us-left-content-wrap .design-card .design-card-img i {
  color: var(--color-primary);
  font-size: 40px;
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card .design-card-img i {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card .design-card-img img {
    max-height: 30px;
  }
}

.about-us-left-content-wrap .design-card .card-info p {
  color: var(--color-heading);
}

.download-btn {
  max-width: max-content;
  display: flex;
  gap: 18px;
  margin: auto;
}

.download-btn .icon-reverse-wrapper {
  gap: 7px;
}

.download-btn i {
  transform: rotate(90deg);
  top: 0;
  padding: 0 !important;
}

/*===============================
  Tmp Custom Box Tag
  ===============================*/
.tpm-custom-box-bg {
  padding: 100px 15px;
  border-radius: 40px;
  background: var(--color-gray-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tpm-custom-box-bg {
    padding: 100px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpm-custom-box-bg {
    padding: 60px 15px;
    margin: 60px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .tpm-custom-box-bg {
    padding: 30px 5px;
    border-radius: 0;
  }
}

/*===============================
  My Expertise Area
  ===============================*/
.my-expertise-area .section-head {
  padding-bottom: 0;
}

.my-expertise-area .header-top-inner {
  padding-bottom: 60px;
}

/*===============================
  My Expertise Eontent Wrap
  ===============================*/
.my-expertise-content-wrap ul li {
  margin: 0;
  margin-bottom: 30px;
}

.my-expertise-content-wrap ul li:last-child {
  margin-bottom: 0;
}

.banner-two-main-wrapper .inner .split-line {
  display: inline-block !important;
}

/*===============================
  My Expertise Card wrap
  ===============================*/
.my-expertise-card-wrap {
  border-radius: 20px;
  border: 2px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 30px;
}

@media (min-width: 576px) {
  .my-expertise-card-wrap {
    padding: 50px 60px;
    justify-content: space-between;
  }
}

@media (min-width: 576px) and (max-width: 720px) {
  .my-expertise-card-wrap {
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .my-expertise-card-wrap {
    gap: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .my-expertise-card-wrap {
    padding: 30px 15px;
    gap: 25px;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 575px) {
  .my-expertise-card-wrap {
    flex-direction: column;
  }
}

.my-expertise-card-wrap .expertise-card-left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-basis: 28%;
}

@media (min-width: 576px) {
  .my-expertise-card-wrap .expertise-card-left {
    justify-content: inherit;
    justify-content: flex-start;
    flex-basis: 28%;
  }
}

@media only screen and (max-width: 575px) {
  .my-expertise-card-wrap .expertise-card-left {
    justify-content: center;
  }
}

.my-expertise-card-wrap .expertise-card-left .expertise-card-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--color-primary);
  border: 2px solid var(--color-border);
}

.my-expertise-card-wrap .expertise-card-left .expertise-card-logo img {
  max-height: 28px;
}

.my-expertise-card-wrap .expertise-card-left .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 576px) {
  .my-expertise-card-wrap .expertise-card-left .title {
    text-align: inherit;
  }
}

.my-expertise-card-wrap .para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  max-width: 452px;
  text-align: center;
  transition: all 0.4s ease;
}

@media (min-width: 576px) {
  .my-expertise-card-wrap .para {
    text-align: inherit;
  }
}

/* Service Card v1*/
.service-card-v1 {
  border-radius: 20px;
  border: 1px solid rgba(255, 73, 74, 0.16);
  padding: 40px 0 40px 0;
  transition: 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-card-v1 {
    padding: 30px 0 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .service-card-v1 {
    padding: 30px 0 30px 0;
  }
}

.service-card-v1.vc-primary-2nd {
  border: 1px solid rgba(255, 73, 74, 0.16);
}

.service-card-v1.vc-primary-2nd .service-card-icon {
  color: var(--color-primary);
}

.service-card-v1 .service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  min-height: 55px;
  color: var(--color-primary);
  font-size: 50px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-card-v1 .service-card-icon {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .service-card-v1 .service-card-icon {
    margin-bottom: 16px;
  }
}

.service-card-v1 .service-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  margin-bottom: 9px;
}

.service-card-v1 .service-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

/* Service Card v2*/
.service-card-v2 {
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 36px 40px 36px 40px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .service-card-v2 {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .service-card-v2 {
    padding: 30px 15px;
  }
}

.service-card-v2:last-child {
  margin-bottom: 0;
}

.service-card-v2 .service-card-num {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.service-card-v2 .service-card-num span {
  margin-right: 15px;
}

.service-card-v2 .service-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 22px;
}

@media only screen and (max-width: 767px) {
  .service-card-v2 .service-para {
    margin-top: 7px;
  }
}

.service-card-user-image {
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) {
  .service-card-user-image {
    margin-left: 70px;
  }
}

.inner .ft-link li span {
  background: var(--color-primary) !important;
}

.inner .ft-link li span i {
  color: #fff;
}

.service-details-area-wrapper .service-thumnail-wrap {
  margin-bottom: 20px;
}

.service-details-area-wrapper .service-thumnail-wrap img {
  border-radius: 20px;
}

.service-details-area-wrapper .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .service-details-area-wrapper .title {
    font-size: 48px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details-area-wrapper .title {
    font-size: 40px;
    line-height: 52px;
  }
}

.service-details-area-wrapper .doc-para {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}

.service-details-area-wrapper .doc-para:last-child {
  margin-bottom: 0;
}

.service-details-area-wrapper .title-mini {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}

/*=========================
  Services Widget
  =========================*/
.services-widget {
  position: relative;
}

.services-widget.v1 .service-item .my-skill-card .card-para {
  color: white;
}

.services-widget.v1 .service-item.mleave .my-skill-card .card-para {
  color: var(--color-gray);
}

.services-widget.v1 .service-item.mleave .my-skill-card .card-icon {
  color: var(--color-primary);
}

.services-widget.v1 .active-bg {
  background: var(--color-primary);
}

.services-widget.v1 .mleave .my-skill-card .card-icon {
  border: 2px solid var(--color-border);
}

.services-widget.v1 .mleave .my-skill-card .card-icon i {
  color: var(--color-body);
}

.services-widget.v1 .my-skill-card .card-icon {
  border: 2px solid var(--color-border);
}

.services-widget.v1 .my-skill-card .card-icon i {
  color: var(--color-heading);
}

.services-widget.v2 .service-item {
  margin-bottom: 20px;
}

.services-widget.v2 .service-item:last-child {
  margin-bottom: 0;
}

.services-widget.v2 .service-item .expertise-card-logo {
  background: transparent !important;
}

.services-widget.v2 .service-item .para {
  color: var(--color-heading);
}

.services-widget.v2 .service-item.mleave .expertise-card-logo {
  background: var(--color-primary) !important;
}

.services-widget.v2 .service-item.mleave .para {
  color: var(--color-gray);
}

.services-widget.v2 .active-bg {
  border-radius: 20px;
  background: rgba(255, 1, 79, 0.1019607843);
  backdrop-filter: blur(35px);
}

.services-widget.v3 .service-item .my-skill-card .card-para {
  color: white;
}

.services-widget.v3 .service-item.mleave .my-skill-card .card-para {
  color: var(--color-gray);
}

.services-widget.v3 .service-item.mleave .my-skill-card .card-icon {
  color: var(--color-primary);
}

.services-widget.v3 .active-bg {
  background: var(--color-primary);
}

.services-widget.v4 .service-item {
  margin-bottom: 20px;
}

.services-widget.v4 .service-item:last-child {
  margin-bottom: 0;
}

.services-widget.v4 .service-item .expertise-card-logo {
  background: var(--color-secondary) !important;
}

.services-widget.v4 .service-item .para {
  color: var(--color-heading);
}

.services-widget.v4 .service-item.mleave .expertise-card-logo {
  background: var(--color-primary) !important;
}

.services-widget.v4 .service-item.mleave .para {
  color: var(--color-gray);
}

.services-widget.v4 .active-bg {
  border-radius: 20px;
  background: rgba(253, 196, 72, 0.0901960784);
  backdrop-filter: blur(10px);
}

.services-widget.v5 .service-item .my-skill-card .card-para {
  color: white;
}

.services-widget.v5 .service-item.mleave .my-skill-card .card-para {
  color: var(--color-gray);
}

.services-widget.v5 .service-item.mleave .my-skill-card .card-icon {
  color: var(--color-primary);
}

.services-widget.v5 .active-bg {
  background: var(--color-primary);
}

.services-widget.v6 .service-item {
  margin-bottom: 20px;
}

.services-widget.v6 .service-item:last-child {
  margin-bottom: 0;
}

.services-widget.v6 .service-item .expertise-card-logo {
  background: var(--color-secondary) !important;
}

.services-widget.v6 .service-item .para {
  color: var(--color-heading);
}

.services-widget.v6 .service-item.mleave .expertise-card-logo {
  background: var(--color-primary) !important;
}

.services-widget.v6 .service-item.mleave .para {
  color: var(--color-gray);
}

.services-widget.v6 .active-bg {
  border-radius: 20px;
  background: var(--color-primary);
}

.services-widget .service-item {
  position: relative;
  z-index: 2;
  gap: 20px;
  overflow: hidden;
}

.services-widget .service-item .service-link {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.services-widget .service-item .expertise-card-logo {
  transition: all 0.4s ease;
}

.services-widget .number {
  color: var(--color-primary);
  font-size: 20px;
  /* 	font-weight: var(--tj-fw-bold); */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.services-widget .active-bg {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  position: absolute;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service.service__style--1 {
  padding: 30px 26px;
  padding-bottom: 30px;
  transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1), box-shadow 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .service.service__style--1 {
    padding: 30px 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service.service__style--1 {
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .service.service__style--1 {
    padding: 30px 14px;
  }
}

.service.service__style--1 .shape-service-1 {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  max-width: 150px;
  margin: auto;
  opacity: 0;
}

.service.service__style--1 .icon {
  transition: 0.3s;
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 23px;
  color: var(--color-primary);
  text-align: center;
  border-radius: 100%;
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service.service__style--1 .icon {
    margin-bottom: 11px;
  }
}

.service.service__style--1 .icon i {
  stroke-width: 1 !important;
  font-size: 60px;
}

.service.service__style--1 .icon svg {
  stroke-width: 2px !important;
  width: 45px;
  height: 45px;
}

.service.service__style--1 .icon img {
  max-height: 60px;
}

.service.service__style--1 .content .title {
  margin-bottom: 19px;
  transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service.service__style--1 .content .title {
    margin-bottom: 8px;
  }
}

.service.service__style--1 .content .title a {
  color: inherit;
  transition: 0.3s;
}

.service.service__style--1 .content .title a:hover {
  color: var(--color-primary);
}

.service.service__style--1 .content p {
  transition: 0.3s;
}

.service.service__style--1 .content .discover-btn {
  text-align: center;
  display: flex;
  justify-content: center;
}

.service.service__style--1:hover {
  transform: translateY(-5px);
}

.service.service__style--1:hover .shape-service-1 {
  opacity: 0.3;
}

.service.service__style--1:hover .shape-service-1 img {
  animation: moveOut 0.4s linear;
}

.service.service__style--1.tmp-border-none {
  border: none;
}

.service.service__style--1.tmp-border {
  border: 2px solid var(--color-border);
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .service.service__style--1.text-left,
  .service.service__style--1.text-start {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .service.service__style--1.text-left,
  .service.service__style--1.text-start {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .service.service__style--1.text-left,
  .service.service__style--1.text-start {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 767px) {

  .service.service__style--1.text-left,
  .service.service__style--1.text-start {
    padding: 30px 20px;
  }
}

.service.service__style--1.text-left .icon,
.service.service__style--1.text-start .icon {
  justify-content: left;
}

.service.service__style--1.text-left .content .discover-btn,
.service.service__style--1.text-start .content .discover-btn {
  justify-content: flex-start;
}

.service.service__style--1.icon-circle-style {
  background-color: transparent;
  box-shadow: none;
  padding: 0px 35px;
  margin-top: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .service.service__style--1.icon-circle-style {
    padding: 0px 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service.service__style--1.icon-circle-style {
    padding: 0px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service.service__style--1.icon-circle-style {
    padding: 0px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .service.service__style--1.icon-circle-style {
    padding: 0px 10px;
  }
}

.service.service__style--1.icon-circle-style .icon {
  font-size: 39px;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  margin-bottom: 23px;
  background-color: var(--color-primary-darker);
  line-height: 90px;
  align-items: center;
}

.service.service__style--1.with-working-process {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service.service__style--1.with-working-process {
    padding: 20px 0;
  }
}

.service.service__style--1.with-working-process .icon {
  width: 180px;
  height: 180px;
  line-height: 180px;
  font-size: 60px;
  position: relative;
}

.service.service__style--1.with-working-process .line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  left: 100%;
  background-color: var(--color-border);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service.service__style--1.with-working-process .line {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .service.service__style--1.with-working-process .line {
    display: none;
  }
}

.service.service__style--1.with-working-process:hover {
  transform: none;
}

.service.service__style--1.variation-2 {
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service.service__style--1.variation-3 {
  padding-bottom: 50px;
}

.service.service__style--1.service-bg-transparent {
  padding: 0;
}

.service.service__style--1.service-bg-transparent .icon {
  margin-bottom: 12px;
}

.service.service__style--1.service-bg-transparent .content .title {
  margin-bottom: 12px;
}

.skill-style-border-card {
  border-radius: 5px;
  padding: 30px 0 18px 0;
  margin-bottom: 0;
  transition: 0.3s;
  height: 100%;
  text-align: center;
}

.skill-style-border-card img {
  display: block;
  margin: auto auto 20px auto;
  max-width: 50px;
  max-height: 50px;
}

.skill-style-border-card .count-number {
  margin-bottom: 5px;
  font-size: 44px;
}

.service-card-box-1 {
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.service-card-box-1:hover {
  transform: translateY(-10px);
}

.service-card-box-1 .icon {
  margin-bottom: 50px;
}

.service-card-box-1 .icon i {
  font-size: 50px;
  color: var(--color-primary);
}

.service-card-box-1 .title {
  font-size: 26px;
  margin-bottom: 15px;
}

.service-card-box-1 p.desc {
  margin-bottom: 0;
}

.our-supported-company-area {
  border-radius: 30px;
}

.our-supported-company-area .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  border-left: 2px solid var(--color-border);
  border-top: 2px solid var(--color-border);
}

.support-company-logo {
  border-right: 2px solid var(--color-border);
  padding: 40px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-bottom: 2px solid var(--color-border);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .support-company-logo {
    padding: 50px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .support-company-logo {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .support-company-logo {
    padding: 24px 0;
  }
}

@media only screen and (max-width: 575px) {
  .support-company-logo {
    padding: 24px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .support-company-logo img {
    max-height: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .support-company-logo img {
    max-height: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .support-company-logo img {
    max-height: 44px;
  }
}

.rts-progress-area .thumbnail {
  display: block;
  overflow: hidden;
  max-width: max-content;
}

.rts-progress-area .thumbnail img {
  transition: 0.3s;
}

.rts-progress-area .thumbnail:hover img {
  transform: scale(0.95);
}

.single-progress-area-h4 {
  margin-top: 30px;
}

.single-progress-area-h4:first-child {
  margin-top: 0;
}

.single-progress-area-h4 .page-wrapper {
  width: calc(100% - 100px);
  margin: 100px auto 200px;
}

.single-progress-area-h4 .progress {
  height: 5px;
  position: relative;
  margin-top: 14px;
  border-radius: 0;
}

.single-progress-area-h4 .progress .bg--primary {
  background: red;
  border-radius: 0;
}

.single-progress-area-h4 .progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.single-progress-area-h4 .progress .progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-progress-area-h4 .progress .progress-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  margin-bottom: 0;
}

.single-progress-area-h4 .progress .progress-top span.parcent {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

/* circle progress */
svg.radial-progress {
  height: auto;
  max-width: 100px;
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 33, 0.08);
  transform: rotate(-90deg);
  width: 100%;
  background-image: none;
  transition: 0.3s;
}

svg.radial-progress circle {
  fill: transparent;
  stroke: #fff;
}

svg.radial-progress circle.bar-static {
  stroke: rgb(38, 38, 38) !important;
  stroke-width: 2px;
  transition: 0.3s;
}

svg.radial-progress circle.bar--animated {
  stroke-dasharray: 219.9114857513;
  stroke: var(--color-heading);
  stroke-dashoffset: 219.9114857513;
  stroke-width: 3px;
  transition: 0.3s;
  stroke-linecap: round;
}

svg.radial-progress text {
  fill: #fafafa;
  font-size: 16px;
  font-weight: 700;
  text-anchor: middle;
  font-family: var(--font-primary);
  transition: 0.3s;
}

svg.radial-progress:hover circle.bar-static {
  stroke-width: 1px;
}

svg.radial-progress:hover circle.bar--animated {
  stroke-width: 4px;
}

section.svg-container svg.radial-progress:nth-child(even) {
  margin: 0 15px;
}

section.svg-container svg.radial-progress:nth-last-of-type(1) {
  background: linear-gradient(260deg, #ff0300, #ffc900);
}

section.svg-container svg.radial-progress:nth-last-of-type(0) {
  background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);
}

.devider {
  font-size: 50px;
  padding: 20px;
  min-height: 11vh;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-225deg, #FF057C 0%, #FF057C 40%, #321575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.devider:nth-last-of-type(2) {
  background-image: linear-gradient(260deg, #ff0300, #ffc900);
}

.single-progress-circle {
  display: flex;
  justify-content: center;
  position: relative;
}

.single-progress-circle .small-text {
  position: absolute;
  top: 55%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1F1F21;
  font-family: var(--font-primary);
}

.resume-widget .resume-single {
  position: relative;
  padding: 20px 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: var(--color-gray-2);
  z-index: 10;
  overflow: hidden;
}

.resume-widget .resume-single::after {
  transition: all 0.8s ease;
  content: " ";
  position: absolute;
  bottom: -313px;
  right: -407px;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  filter: blur(227px);
  opacity: 0;
  pointer-events: none;
}

.resume-widget .resume-single:hover::after {
  background: var(--color-primary);
  opacity: 1;
}

.resume-section .section-title i {
  color: var(--color-primary);
  margin-right: 15px;
}

.resume-widget .resume-single:hover:before {
  opacity: 1;
}

.resume-widget .resume-single .time {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  gap: 12px;
  display: flex;
  align-items: center;
}

.resume-widget .resume-single .time i {
  opacity: 1;
}

.resume-widget .resume-single .time i::after {
  display: none;
}

.resume-widget .resume-single .time i::before {
  top: -10px;
}

.resume-widget .resume-single .institute {
  color: var(--color-gray);
}

.resume-widget .resume-single:hover .time {
  color: var(--color-primary);
}

.resume-widget .resume-single .resume-title {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .resume-widget .resume-single .resume-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .resume-widget .resume-single .resume-title {
    font-size: 20px;
  }
}

.resume-section .section-title i {
  font-family: "fontawesome";
}

.ready-chatting-option {
  max-width: max-content;
}

.ready-chatting-option.chat-visible label {
  bottom: 90px !important;
}

@media only screen and (max-width: 575px) {
  .ready-chatting-option.chat-visible label {
    bottom: 70px !important;
  }
}

.ready-chatting-option #click {
  display: none;
}

.ready-chatting-option label {
  bottom: 20px;
  height: 55px;
  width: 55px;
  background: var(--color-primary);
  text-align: center;
  line-height: 55px;
  border-radius: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  position: fixed !important;
  right: 20px;
  z-index: 1019;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  z-index: 50;
}

@media only screen and (max-width: 575px) {
  .ready-chatting-option label {
    height: 40px;
    width: 40px;
  }
}

.ready-chatting-option label::before {
  display: none;
}

.ready-chatting-option label::after {
  display: none;
}

.ready-chatting-option label i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  font-size: 22px;
  color: #fff;
}

.ready-chatting-option label i.fas {
  opacity: 0;
  pointer-events: none;
}

.ready-chatting-option #click:checked~label i.fas {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(180deg);
}

.ready-chatting-option #click:checked~label i.fab {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(180deg);
}

.ready-chatting-option .wrapper {
  position: fixed;
  right: 90px;
  bottom: 30px;
  max-width: 400px;
  background: var(--color-gray-2);
  border-radius: 5px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 1100;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media only screen and (max-width: 575px) {
  .ready-chatting-option .wrapper {
    max-width: 280px;
    right: 65px;
  }
}

@media only screen and (max-width: 479px) {
  .ready-chatting-option .wrapper {
    right: 15px;
    bottom: 90px;
  }
}

.ready-chatting-option #click:checked~.wrapper {
  opacity: 1;
  bottom: 85px;
  pointer-events: auto;
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 479px) {
  .ready-chatting-option #click:checked~.wrapper {
    bottom: 112px;
  }
}

.ready-chatting-option .wrapper .head-text {
  line-height: 60px;
  color: #fff;
  border-radius: 5px 5px 0 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 20px;
  background: var(--color-primary);
}

.ready-chatting-option .wrapper .chat-box {
  padding: 20px;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .ready-chatting-option .wrapper .chat-box {
    padding: 10px;
  }
}

.ready-chatting-option .chat-box .desc-text {
  color: var(--color-body);
  text-align: center;
  line-height: 25px;
  font-size: 17px;
  font-weight: 500;
}

.ready-chatting-option .chat-box form {
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 5px;
  border: 2px solid var(--color-border);
}

.ready-chatting-option .chat-box form .field {
  height: 50px;
  width: 100%;
  margin-top: 20px;
}

.ready-chatting-option .chat-box form .field:last-child {
  margin-bottom: 15px;
}

.ready-chatting-option form .field input,
.ready-chatting-option form .field button,
.ready-chatting-option form .textarea textarea {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border: 2px solid var(--color-border);
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--color-body);
  font-family: var(--font-secondary);
}

.ready-chatting-option form .field input:focus,
.ready-chatting-option form .textarea textarea:focus {
  border-color: var(--color-primary);
}

.ready-chatting-option form .field input::placeholder,
.ready-chatting-option form .textarea textarea::placeholder {
  color: var(--color-body);
  transition: all 0.3s ease;
}

.ready-chatting-option form .field input:focus::placeholder,
.ready-chatting-option form .textarea textarea:focus::placeholder {
  color: var(--color-body);
}

.ready-chatting-option .chat-box form .textarea {
  height: 70px;
  width: 100%;
}

.ready-chatting-option .chat-box form .textarea textarea {
  height: 100%;
  border-radius: 5px;
  resize: none;
  padding: 15px 20px;
  font-size: 16px;
}

.ready-chatting-option .chat-box form .field button {
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.ready-chatting-option .chat-box form .field button:active {
  transform: scale(0.97);
}

/* Progress Area  */
.progress-charts {
  overflow: hidden;
}

.progress-charts+.progress-charts {
  margin-top: 30px;
}

.progress-charts h6.heading {
  margin-bottom: 15px;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

.progress-charts h6.heading span.percent-label {
  color: var(--color-heading);
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.progress-charts .progress {
  height: 13px;
  overflow: visible;
  font-size: 14px;
  border-radius: 10px;
  padding: 3px;
  background: var(--color-gray-2);
}

.progress-charts .progress .progress-bar {
  overflow: visible;
  position: relative;
  border-radius: 14px;
  background: var(--color-primary);
}

.progress-charts .progress .progress-bar span.percent-label {
  position: absolute;
  right: 0;
  top: -37px;
  font-weight: 400;
  color: var(--color-heading);
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--font-secondary);
}

/*-----------------------
    Progress Bar 
-----------------------*/
.single-progress+.single-progress {
  margin-top: 40px;
}

.single-progress {
  position: relative;
  overflow: hidden;
}

.single-progress .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-body);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.progress {
  height: 30px;
  overflow: hidden;
  background-color: var(--color-card);
  border-radius: 500px;
}

.progress .progress-bar {
  border-radius: 500px;
  width: 0;
  height: 100%;
  background-color: var(--color-primary);
  transition: width 0.5s ease;
  overflow: visible;
}

.progress .progress-bar.bar-color-2 {
  background: rgb(251, 83, 67);
}

.progress .progress-bar.bar-color-3 {
  background: #E33FA1;
}

.progress .progress-bar.bar-color-4 {
  background: #6549D5;
}

.progress .progress-bar.bar-gradiand {
  background: radial-gradient(circle farthest-corner at 0% 0%, var(--color-pink) 25%, var(--color-secondary) 45%, var(--color-primary) 65%, var(--color-light-green) 85%);
}

.progress .progress-number {
  position: absolute;
  font-size: 14px;
  top: 0;
  line-height: 24px;
  right: 0;
  z-index: 1;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.progress-info .title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--color-body);
  letter-spacing: 0.5px;
}

.progress-info span.progress-number {
  font-size: 14px;
  color: var(--color-body);
}

.no-radius .progress {
  border-radius: 0;
}

.no-radius .progress .progress-bar {
  border-radius: 0;
}

.large-size .progress {
  height: 20px;
}

/*-----------------------------------
    Radial Progress 
-----------------------------------*/
.radial-progress-single {
  text-align: center;
}

.radial-progress-single .circle-info {
  padding-top: 20px;
  text-align: center;
}

.radial-progress-single .circle-info .title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.radial-progress-single .circle-info .subtitle {
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--color-body);
}

.radial-progress {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .radial-progress {
    display: inline-block;
  }
}

.radial-progress .circle-text {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.radial-progress .circle-text span.count {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-body);
  position: relative;
}

.radial-progress .circle-text span.count::after {
  position: absolute;
  content: "%";
  left: 100%;
  color: var(--color-body);
}

/* -------------------------------- 

Primary style

-------------------------------- */
.cd-title {
  position: relative;
  text-align: center;
}

.cd-intro {
  width: 90%;
  max-width: 768px;
  text-align: center;
}

.cd-intro {
  margin: 4em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 6em auto;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

  xrotate-1 

  -------------------------------- */
.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/* -------------------------------- 

  xtype 

  -------------------------------- */
.cd-headline.type .cd-words-wrapper {
  vertical-align: top;
  overflow: hidden;
}

.cd-headline.type .cd-words-wrapper::after {
  /* vertical bar */
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.waiting::after {
  -webkit-animation: cd-pulse 1s infinite;
  -moz-animation: cd-pulse 1s infinite;
  animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
  background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.selected::after {
  visibility: hidden;
}

.cd-headline.type .cd-words-wrapper.selected b {
  color: #0d0d0d;
}

.cd-headline.type b {
  visibility: hidden;
}

.cd-headline.type b.is-visible {
  visibility: visible;
}

.cd-headline.type i {
  position: absolute;
  visibility: hidden;
}

.cd-headline.type i.in {
  position: relative;
  visibility: visible;
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}

@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: translateY(-50%) scale(1);
    opacity: 1;
  }

  40% {
    -moz-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }

  100% {
    -moz-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}

@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}

/* -------------------------------- 

  xrotate-2 

  -------------------------------- */
.cd-headline.rotate-2 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-2 i,
.cd-headline.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-headline.rotate-2 b {
  opacity: 0;
}

.cd-headline.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  -moz-transform: translateZ(-20px) rotateX(90deg);
  -ms-transform: translateZ(-20px) rotateX(90deg);
  -o-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.is-visible .cd-headline.rotate-2 i {
  opacity: 1;
}

.cd-headline.rotate-2 i.in {
  -webkit-animation: cd-rotate-2-in 0.4s forwards;
  -moz-animation: cd-rotate-2-in 0.4s forwards;
  animation: cd-rotate-2-in 0.4s forwards;
}

.cd-headline.rotate-2 i.out {
  -webkit-animation: cd-rotate-2-out 0.4s forwards;
  -moz-animation: cd-rotate-2-out 0.4s forwards;
  animation: cd-rotate-2-out 0.4s forwards;
}

.cd-headline.rotate-2 em {
  -webkit-transform: translateZ(20px);
  -moz-transform: translateZ(20px);
  -ms-transform: translateZ(20px);
  -o-transform: translateZ(20px);
  transform: translateZ(20px);
}

.no-csstransitions .cd-headline.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0;
}

.no-csstransitions .cd-headline.rotate-2 i em {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}

@-moz-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    -moz-transform: translateZ(-20px) rotateX(0deg);
    -ms-transform: translateZ(-20px) rotateX(0deg);
    -o-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}

@-moz-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

/* -------------------------------- 

  xloading-bar 

  -------------------------------- */
.cd-headline.loading-bar span {
  display: inline-block;
  padding: 0.2em 0;
}

.cd-headline.loading-bar .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.loading-bar .cd-words-wrapper::after {
  /* loading bar */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  z-index: 2;
  -webkit-transition: width 0.3s -0.1s;
  -moz-transition: width 0.3s -0.1s;
  transition: width 0.3s -0.1s;
}

.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s;
  -moz-transition: width 3s;
  transition: width 3s;
}

.cd-headline.loading-bar b {
  top: 0.2em;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cd-headline.loading-bar b.is-visible {
  opacity: 1;
  top: 0;
}

/* -------------------------------- 

  xslide 

  -------------------------------- */
.cd-headline.slide span {
  display: inline-block;
}

.cd-headline.slide .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.slide b {
  opacity: 0;
  top: 0.2em;
}

.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}

@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

/* -------------------------------- 

  xclip 

  -------------------------------- */
.cd-headline.clip span {
  display: inline-block;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

  xzoom 

  -------------------------------- */
.cd-headline.zoom .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.zoom b {
  opacity: 0;
}

.cd-headline.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in 0.8s;
  -moz-animation: zoom-in 0.8s;
  animation: zoom-in 0.8s;
}

.cd-headline.zoom b.is-hidden {
  -webkit-animation: zoom-out 0.8s;
  -moz-animation: zoom-out 0.8s;
  animation: zoom-out 0.8s;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}

@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}

@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}

/* -------------------------------- 

  xrotate-3 

  -------------------------------- */
.cd-headline.rotate-3 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-3 b {
  opacity: 0;
}

.cd-headline.rotate-3 i {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-visible .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.cd-headline.rotate-3 i.in {
  -webkit-animation: cd-rotate-3-in 0.6s forwards;
  -moz-animation: cd-rotate-3-in 0.6s forwards;
  animation: cd-rotate-3-in 0.6s forwards;
}

.cd-headline.rotate-3 i.out {
  -webkit-animation: cd-rotate-3-out 0.6s forwards;
  -moz-animation: cd-rotate-3-out 0.6s forwards;
  animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 0;
}

.no-csstransitions .cd-headline.rotate-3 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }

  100% {
    -webkit-transform: rotateY(0deg);
  }
}

@-moz-keyframes cd-rotate-3-in {
  0% {
    -moz-transform: rotateY(180deg);
  }

  100% {
    -moz-transform: rotateY(0deg);
  }
}

@keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  100% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(-180deg);
  }
}

@-moz-keyframes cd-rotate-3-out {
  0% {
    -moz-transform: rotateY(0);
  }

  100% {
    -moz-transform: rotateY(-180deg);
  }
}

@keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}

/* -------------------------------- 

  xscale 

  -------------------------------- */
.cd-headline.scale b {
  opacity: 0;
}

.cd-headline.scale i {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.is-visible .cd-headline.scale i {
  opacity: 1;
}

.cd-headline.scale i.in {
  -webkit-animation: scale-up 0.6s forwards;
  -moz-animation: scale-up 0.6s forwards;
  animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
  -webkit-animation: scale-down 0.6s forwards;
  -moz-animation: scale-down 0.6s forwards;
  animation: scale-down 0.6s forwards;
}

.no-csstransitions .cd-headline.scale i {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
  opacity: 1;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes scale-up {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
  }

  60% {
    -moz-transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}

@-moz-keyframes scale-down {
  0% {
    -moz-transform: scale(1);
    opacity: 1;
  }

  60% {
    -moz-transform: scale(0);
    opacity: 0;
  }
}

@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}

/* -------------------------------- 

  xpush 

  -------------------------------- */
.cd-headline.push b {
  opacity: 0;
}

.cd-headline.push b.is-visible {
  opacity: 1;
  -webkit-animation: push-in 0.6s;
  -moz-animation: push-in 0.6s;
  animation: push-in 0.6s;
}

.cd-headline.push b.is-hidden {
  -webkit-animation: push-out 0.6s;
  -moz-animation: push-out 0.6s;
  animation: push-out 0.6s;
}

@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes push-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
}

@-moz-keyframes push-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }

  60% {
    opacity: 0;
    -moz-transform: translateX(110%);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
}

@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transform: translateX(110%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.personal-portfolio-right-inner-wrapper {
  max-width: 80%;
  margin-right: auto;
}

.personal-portfolio-right-inner-wrapper p {
  font-weight: 500;
}

.personal-portfolio-right-inner-wrapper .section-header .subtitle {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0px;
}

.personal-portfolio-right-inner-wrapper .section-header .subtitle i {
  margin-right: 10px;
}

.personal-portfolio-right-inner-wrapper .tmp-title-split {
  font-weight: 500;
}

@media only screen and (max-width: 575px) {
  .personal-portfolio-right-inner-wrapper .tmp-title-split {
    font-size: 22px;
  }
}

.personal-portfolio-right-inner-wrapper .tmp-title-split span {
  color: var(--color-primary);
}

.personal-portfolio-right-inner-wrapper .section-header h1 {
  font-weight: 400;
  font-size: 60px;
  line-height: 58px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .personal-portfolio-right-inner-wrapper .section-header h1 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 1199px) {
  .personal-portfolio-right-inner-wrapper .section-header h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .personal-portfolio-right-inner-wrapper .section-header h1 {
    font-size: 26px;
  }
}

.personal-portfolio-right-inner-wrapper .section-header h1 span {
  color: var(--color-primary);
}

.personal-portfolio-right-inner-wrapper .counter-style-2 {
  margin-top: 30px;
}

.personal-portfolio-right-inner-wrapper .counter-style-2 .title {
  margin-bottom: 6px;
}

.personal-portfolio-right-inner-wrapper .counter-style-2.border-style.small-radious .count-number {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 170px;
  background-color: #1b1b1c;
}

.personal-portfolio-right-inner-wrapper .counter-style-2 .description {
  padding: 0 10%;
}

.personal-portfolio-right-inner-wrapper .counter-style-2 .count-number {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 170px;
  background-color: #1b1b1c;
  font-size: 44px;
  background-color: #1b1b1c;
  display: inline-block;
  min-width: 150px;
  height: 150px;
  border-radius: 100%;
  text-align: center;
  line-height: 150px;
  margin-bottom: 20px;
  padding: 0 20px;
  font-weight: 500;
  color: #fff;
}

.personal-portfolio-right-inner-wrapper .tmponhover::after {
  border-radius: 5px;
}

.personal-portfolio-right-inner-wrapper .contact-area-left-portfolio-fixed .thumbnail {
  height: 100%;
}

.personal-portfolio-right-inner-wrapper .contact-area-left-portfolio-fixed .thumbnail img {
  height: 100%;
}

.experience-style-list .experience-list {
  padding-left: 31px;
  border-left: 5px solid #17191c;
}

@media only screen and (max-width: 767px) {
  .experience-style-list .experience-list {
    padding-left: 27px;
  }
}

@media only screen and (max-width: 479px) {
  .experience-style-list .experience-list {
    padding-left: 14px;
  }
}

.experience-style-list .experience-list .resume-single-list {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding: 45px 40px;
  border-radius: 6px;
  background: var(--color-card);
  transition: var(--transition);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experience-style-list .experience-list .resume-single-list {
    padding: 30px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .experience-style-list .experience-list .resume-single-list {
    padding: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .experience-style-list .experience-list .resume-single-list {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .experience-style-list .experience-list .resume-single-list {
    padding: 20px;
  }
}

.experience-style-list .experience-list .resume-single-list .inner::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 5px solid #17191c;
  border-radius: 100%;
  right: 104%;
  top: 55px;
  transform: translateY(-7px);
  background: #222529;
  transition: var(--transition);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experience-style-list .experience-list .resume-single-list .inner::after {
    right: 106%;
  }
}

@media only screen and (max-width: 479px) {
  .experience-style-list .experience-list .resume-single-list .inner::after {
    right: 102%;
  }
}

.experience-style-list .experience-list .resume-single-list .inner::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 5px;
  right: 100%;
  top: 63px;
  transform: translateY(-7px);
  background: #1b1c1d;
  z-index: 0;
}

@media only screen and (max-width: 479px) {
  .experience-style-list .experience-list .resume-single-list .inner::before {
    width: 15px;
  }
}

.experience-style-list .experience-list .resume-single-list .inner .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #1e2025;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experience-style-list .experience-list .resume-single-list .inner .heading {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .experience-style-list .experience-list .resume-single-list .inner .heading {
    display: block;
  }
}

.experience-style-list .experience-list .resume-single-list .inner .heading .title {
  margin-bottom: 15px;
}

.experience-style-list .experience-list .resume-single-list .inner .heading .title h4 {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 24px;
  line-height: 39px;
  margin-bottom: 7px;
  font-weight: 500;
  transition: var(--transition);
}

@media only screen and (max-width: 479px) {
  .experience-style-list .experience-list .resume-single-list .inner .heading .title h4 {
    font-size: 21px;
    line-height: 34px;
  }
}

.experience-style-list .experience-list .resume-single-list .inner .heading .title span {
  color: #e1e1e1;
  display: block;
  font-size: 14px;
}

.experience-style-list .experience-list .resume-single-list .inner .heading .date-of-time {
  display: inline-block;
}

.experience-style-list .experience-list .resume-single-list .inner .heading .date-of-time span {
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 0 15px;
  height: 36px;
  line-height: 36px;
  border-radius: 6px;
  background: #1e2025;
  transition: var(--transition);
  font-weight: 500;
}

.experience-style-list .experience-list .resume-single-list .inner p {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-body);
  transition: var(--transition);
}

.experience-style-list .experience-list .resume-single-list .inner.psudo-after-none::after {
  display: none;
}

.experience-style-list .experience-list .resume-single-list .inner.psudo-after-none::before {
  display: none;
}

.experience-style-list .experience-list .resume-single-list:hover .inner .heading .title h4 {
  color: var(--color-white);
}

.experience-style-list .experience-list .resume-single-list:hover .inner .heading .date-of-time span {
  background: var(--color-primary);
}

.experience-style-list .experience-list .resume-single-list:hover .inner .description {
  color: var(--color-lightn);
}

.experience-style-list .experience-list .resume-single-list:hover .inner::after {
  background: var(--color-primary);
}

.experience-style-list .experience-list .resume-single-list:hover::before {
  opacity: 1;
}

.bg-card {
  background: var(--color-card);
}

.personal-portfolio-right-inner-wrapper {
  max-width: 100%;
  margin-right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .personal-portfolio-right-inner-wrapper {
    max-width: 90%;
  }
}

@media only screen and (max-width: 1199px) {
  .personal-portfolio-right-inner-wrapper {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .personal-portfolio-right-inner-wrapper {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .personal-portfolio-right-inner-wrapper {
    max-width: 100%;
  }
}

.tmp-portfolio-small {
  text-align: left;
  padding: 30px;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: 0.5s all ease-in-out;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-portfolio-small {
    padding: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .tmp-portfolio-small {
    padding: 20px;
  }
}

.tmp-portfolio-small .inner .thumbnail a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.tmp-portfolio-small .inner .thumbnail a img {
  width: 100%;
  transition: var(--transition);
  height: auto;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-portfolio-small .inner .thumbnail a img {
    height: inherit;
  }
}

.tmp-portfolio-small .inner .thumbnail a video {
  border-radius: 10px;
  height: 100%;
  transition: var(--transition);
  object-fit: cover;
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .tmp-portfolio-small .inner .thumbnail a {
    display: inline-flex;
  }
}

.tmp-portfolio-small .inner .content {
  padding-top: 18px;
}

.tmp-portfolio-small .inner .content .category-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.tmp-portfolio-small .inner .content .category-info .category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tmp-portfolio-small .inner .content .category-info .category-list a {
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.tmp-portfolio-small .inner .content .category-info .meta span {
  color: var(--color-lightn);
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: 13px;
}

.tmp-portfolio-small .inner .content .category-info .meta span i {
  margin-right: 2px;
  font-size: 13px;
  transition: var(--transition);
}

.tmp-portfolio-small .inner .content .category-info .meta span a i {
  margin-right: 2px;
  font-size: 13px;
  transition: var(--transition);
}

.tmp-portfolio-small .inner .content .title {
  margin: 0;
}

.tmp-portfolio-small .inner .content .title a {
  transition: var(--transition);
  color: var(--color-lightn);
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  display: inline-block;
}

@media only screen and (max-width: 479px) {
  .tmp-portfolio-small .inner .content .title a {
    font-size: 20px;
    line-height: 30px;
  }
}

.tmp-portfolio-small .inner .content .title a i {
  font-size: 0;
  position: relative;
  top: 10px;
  transition: var(--transition);
  opacity: 0;
}

.tmp-portfolio-small .inner .content .title:hover a {
  color: var(--color-primary);
}

.tmp-portfolio-small .inner .content .title:hover a i {
  color: var(--color-primary);
  top: 3px;
  opacity: 1;
  font-size: 23px;
}

.tmp-portfolio-small::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.tmp-portfolio-small:hover::before {
  opacity: 1;
}

.tmp-portfolio-small:hover .thumbnail a img {
  transform: scale(1.1);
}

.tmp-portfolio-small:hover video {
  transform: scale(1.1);
}

.tmponhover {
  position: relative;
  overflow: hidden;
}

.tmponhover::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(var(--color-primary), transparent, transparent);
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0.5s, top 0s, left 0s;
  border-radius: 20px;
}

.tmponhover:hover::before {
  opacity: 1;
}

.tmponhover::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-gray-2);
  border-radius: 20px;
}

.tmponhover>* {
  z-index: 2;
  position: relative;
}

/*------------------
Right Demo  
--------------------*/
.tmp-right-demo {
  width: 40px;
  position: fixed;
  z-index: 99;
  right: 0px;
  top: calc(60% - 55px);
}

.tmp-right-demo p {
  font-weight: 700;
  color: #fff;
}

.tmp-right-demo .demo-button {
  border-radius: 6px 0 0 6px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  font-size: 14px;
  border: 0 none;
  width: 100%;
  min-width: 100%;
  padding: 10px 0px 8px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.tmp-right-demo .demo-button::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 2px 0 0 2px;
  top: 0;
  left: 0;
  background: var(--color-primary);
  opacity: 1;
  z-index: -1;
  background: linear-gradient(-45deg, #ee7752, #252525, #ff004b, #d52323);
  background-size: 400% 400%;
  animation: gradient 4s ease infinite;
  opacity: 1;
  backdrop-filter: blur(21px);
}

@keyframes gradient {
  0% {
    background-position: 25% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 25% 50%;
  }
}

.tmp-right-demo .demo-button .text {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-left: 5px;
  padding-right: 5px;
  color: #ffffff;
  font-weight: 500;
  font-family: var(--font-secondary);
}

/*-------------------
 Popup Tab  
-----------------------*/
.popuptab-area {
  justify-content: center;
  margin: -20px -10px;
  margin-bottom: 30px;
  border: 0 none;
}

.popuptab-area li {
  margin: 20px 10px;
}

@media only screen and (max-width: 767px) {
  .popuptab-area li {
    margin: 10px 10px;
  }
}

.popuptab-area li a.nav-link {
  border-radius: 8px;
  background: var(--color-secondary);
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 15px 35px;
  list-style: none;
  text-decoration: none;
  color: #ffffff;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.0784313725);
  font-family: var(--font-secondary);
  transition: var(--transition);
}

.popuptab-area li a.nav-link.active {
  border-color: var(--color-primary) !important;
  color: #ffffff !important;
  background: var(--color-primary) !important;
}

.popuptab-area li a.nav-link:hover,
.popuptab-area li a.nav-link.active {
  border-color: transparent;
}

/*-----------------------
    Demo Modal Popup  
------------------------*/
.demo-modal-area {
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border: 0px;
  background-color: #060606;
  position: fixed;
  z-index: 999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translateX(100px);
}

.demo-modal-area .demo-close-btn {
  border: 0 none;
  position: fixed;
  right: 80px;
  top: 40px;
  width: 40px;
  display: inline-block;
  height: 40px;
  font-size: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 2;
  border-radius: 100px;
  background: #141414;
  color: var(--color-primary);
  min-width: 40px;
  line-height: 42px;
}

@media only screen and (max-width: 575px) {
  .demo-modal-area .demo-close-btn {
    right: 40px;
    top: auto;
    bottom: 30px;
  }
}

.demo-modal-area .demo-close-btn:hover {
  color: var(--color-primary);
}

.demo-modal-area .wrapper .tmp-modal-inner {
  margin: 70px auto;
  border-radius: 6px;
  padding: 50px;
  background: #141414;
  position: relative;
  max-width: 1170px;
  width: 90%;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-modal-area .wrapper .tmp-modal-inner {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .demo-modal-area .wrapper .tmp-modal-inner {
    padding: 30px 20px;
  }
}

.demo-modal-area .wrapper .tmp-modal-inner::after {
  content: " ";
  position: absolute;
  right: -450px;
  bottom: -500px;
  min-width: 474px;
  min-height: 474px;
  border-radius: 100px;
  filter: blur(227px);
  z-index: 1;
  background: var(--color-primary);
}

.demo-modal-area .wrapper .tmp-modal-inner::before {
  content: " ";
  position: absolute;
  left: -450px;
  top: -500px;
  min-width: 474px;
  min-height: 474px;
  border-radius: 100px;
  filter: blur(227px);
  z-index: 1;
  background: var(--color-primary);
}

.demo-modal-area .wrapper .tmp-modal-inner .demo-top .title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 40px;
}

.demo-modal-area .wrapper .tmp-modal-inner .demo-top .subtitle {
  font-size: 16px;
  font-family: var(--font-secondary);
  width: 48%;
  margin: 0 auto;
  margin-bottom: 28px;
  margin-top: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-modal-area .wrapper .tmp-modal-inner .demo-top .subtitle {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .demo-modal-area .wrapper .tmp-modal-inner .demo-top .subtitle {
    width: 100%;
  }
}

.demo-modal-area.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.single-demo {
  position: relative;
  background-color: var(--color-secondary);
  z-index: 1;
  border-radius: 10px;
  transition: all var(--transition) linear;
}

.single-demo::before {
  position: absolute;
  content: "";
  top: -2px;
  left: -2px;
  transition: all var(--transition) linear;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0.2;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  border-radius: 10px;
}

.single-demo.coming-soon {
  pointer-events: none;
}

.single-demo .inner {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.single-demo .inner.badge-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-demo .inner.badge-1::after {
  position: absolute;
  content: "Hot";
  padding: 3px 10px;
  border-radius: 5px;
  z-index: 2;
  font-size: 14px;
  top: 15px;
  right: 15px;
  background: linear-gradient(to right, #6a67ce, #fc636b) !important;
  color: #ffffff;
  transition: 0.3s;
}

.single-demo .inner.badge-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-demo .inner.badge-2::after {
  position: absolute;
  content: "New";
  padding: 3px 10px;
  border-radius: 5px;
  z-index: 2;
  font-size: 14px;
  top: 15px;
  right: 15px;
  background: linear-gradient(to right, #6a67ce, #fc636b) !important;
  color: #ffffff;
  transition: 0.3s;
}

.single-demo .inner .thumbnail {
  border-radius: 6px 6px 0 0;
}

.single-demo .inner .thumbnail a {
  position: relative;
  display: block;
  z-index: 2;
}

.single-demo .inner .thumbnail a::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px 8px 0 0;
  transition: 0.4s;
  opacity: 0;
}

.single-demo .inner .thumbnail a .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin-top: 10px;
  display: inline-block;
  transition: 0.4s;
}

.single-demo .inner .thumbnail a .overlay-content .overlay-text {
  display: inline-block;
  padding: 8px 15px;
  background: var(--color-primary);
  font-size: 14px;
  border-radius: 8px;
  opacity: 0;
  transition: 0.4s;
  color: #ffffff;
  font-family: var(--font-secondary);
}

.single-demo .inner .thumbnail img {
  border-radius: 6px 6px 0 0;
}

.single-demo .inner .title {
  margin-bottom: 0;
  padding-top: 16px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0;
  font-weight: 500;
  padding-bottom: 16px;
  font-family: var(--font-secondary);
}

.single-demo .inner .title a {
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.single-demo .inner .title a:hover {
  color: var(--color-primary);
}

.single-demo:hover .inner .thumbnail a::after {
  opacity: 1;
}

.single-demo:hover .inner .thumbnail a .overlay-content {
  margin-top: 0;
}

.single-demo:hover .inner .thumbnail a .overlay-content .overlay-text {
  opacity: 1;
}

.single-demo:hover .badge-1:after {
  transform: scale(0.8);
  right: 0;
  top: 7px;
}

.single-demo:hover .badge-2:after {
  transform: scale(0.8);
  right: 0;
  top: 7px;
}

.single-demo:hover::before {
  transition: var(--transition);
  opacity: 1;
}

/*---------------------------------
    Right Demo Light Version  
----------------------------------*/
.demo-modal-area.active-light .wrapper .tmp-modal-inner {
  background: #EDEDED;
}

.demo-modal-area.active-light .single-demo {
  background: #ffffff;
}

.demo-modal-area.active-light .single-demo .inner .title a {
  color: #141414;
  transition: var(--transition);
}

.demo-modal-area.active-light .single-demo::before {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-white) 100%);
}

.demo-modal-area.active-light .demo-close-btn {
  background: var(--color-white);
}

.demo-modal-area .popuptab-area li a.nav-link {
  position: relative;
  z-index: 2;
}

.demo-modal-area.active-light .single-demo .inner .title {
  border-top: 1px solid transparent;
}

.demo-modal-area.active-light .wrapper .tmp-modal-inner .demo-top .title {
  color: #ffffff;
}

.demo-modal-area.active-light .wrapper .tmp-modal-inner .demo-top .subtitle {
  color: #6A7789;
}

.demo-modal-area.active-light .wrapper .tmp-modal-inner .demo-top .title {
  color: #141414;
}

.tmp-white-version .tmp-right-demo .demo-button .text {
  color: #141414;
}

.active-light .popuptab-area li a.nav-link {
  background: #ffffff;
  color: #141414;
}

.demo-modal-area.active-light {
  background-color: #eee4e7;
}

body.tmp-white-version.index-8 .tmp-contact-about-inner .info-box {
  background: #f2f2f2;
}

.demo-button-wrapper {
  width: auto;
  white-space: nowrap;
  position: fixed;
  right: 0%;
  top: 40%;
  cursor: pointer;
  z-index: 1000;
  -webkit-transform: rotate(-90deg) translateY(-100%);
  -ms-transform: rotate(-90deg) translateY(-100%);
  transform: rotate(-90deg) translateY(-100%);
  -webkit-transform-origin: 100% 0 0;
  -ms-transform-origin: 100% 0 0;
  transform-origin: 100% 0 0;
  margin-right: -1px;
  display: flex;
}

.demo-button-wrapper .buy-theme {
  text-align: center;
  background-color: #48a133;
  position: relative;
  z-index: 1;
}

.demo-button-wrapper .buy-theme a {
  color: #fff;
  font-size: 11px;
  padding: 10px 15px;
  display: block;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-button-wrapper .buy-theme a {
    padding: 7px;
  }
}

@media only screen and (max-width: 767px) {
  .demo-button-wrapper .buy-theme a {
    padding: 7px;
  }
}

.demo-button-wrapper .buy-theme .theme-wrapper {
  padding: 0;
  position: relative;
  top: 0;
  opacity: 1;
  transition-delay: 0.3s;
  line-height: 0;
}

.demo-button-wrapper .all-demo .demos {
  font-size: 11px;
  padding: 10px 15px;
  display: block;
  font-weight: 500;
  background-color: #1f242e;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-button-wrapper .all-demo .demos {
    padding: 7px;
  }
}

@media only screen and (max-width: 767px) {
  .demo-button-wrapper .all-demo .demos {
    padding: 7px;
  }
}

.demo-button-wrapper .all-demo .theme-wrapper {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 1;
  transition-delay: 0.3s;
  line-height: 0;
}

.demo-button-wrapper .all-demo .theme-wrapper>div {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 21px;
}

.demo-modal-area.open::-webkit-scrollbar {
  display: none;
}

.tmp-about-area.section-height {
  padding: 35px 40px 40px;
  border-radius: 6px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tmp-about-area.section-height:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .tmp-about-area.section-height {
    padding: 20px;
  }
}

.tmp-about-area.section-height::after {
  border-radius: 6px;
}

.tmp-about-area.section-height .inner {
  text-align: center;
}

.tmp-about-area.section-height .inner .title {
  position: relative;
  margin-bottom: 35px;
  font-size: 30px;
  text-align: center;
}

.tmp-about-area.section-height .inner .separator-animated-border {
  bottom: auto;
  top: 50px;
}

.tmp-about-area.section-height .inner .separator-animated-border {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  overflow: hidden;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 50%, rgba(0, 0, 0, 0) 100%);
}

.tmp-about-area.section-height .inner .skill-share-inner span.title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  color: var(--color-lightn);
  display: inline-block;
  margin-bottom: 20px;
}

.tmp-about-area.section-height .inner .skill-share-inner .skill-share {
  justify-content: center;
  margin-right: -25px;
  margin-bottom: -8px;
  flex-wrap: wrap;
  margin: -10px -12px;
  list-style: none;
  padding-left: 0;
}

.tmp-about-area.section-height .inner .skill-share-inner .skill-share li {
  width: 81px;
  height: 81px;
  line-height: 81px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 12px;
  text-transform: uppercase;
  border-radius: 6px;
  background: #181818;
}

@media only screen and (max-width: 575px) {
  .tmp-about-area.section-height .inner .skill-share-inner .skill-share li {
    margin: 10px 8px;
  }
}

.tmp-about-area.section-height .inner .skill-share-inner .skill-share li img {
  max-height: 30px;
}

.tmp-about-area.section-height .inner .wrap-ul-card-inner {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

@media only screen and (max-width: 575px) {
  .tmp-about-area.section-height .inner .wrap-ul-card-inner {
    flex-wrap: wrap;
    gap: 0;
  }
}

.tmp-about-area.section-height .inner .card-list-ser-pro {
  text-align: left;
  flex-basis: calc(50% - 10px);
}

@media only screen and (max-width: 575px) {
  .tmp-about-area.section-height .inner .card-list-ser-pro {
    flex-basis: 100%;
  }
}

.tmp-about-area.section-height .inner .card-list-ser-pro li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 20px;
  position: relative;
  line-height: 38px;
  transition: 0.3s;
  max-width: max-content;
}

.tmp-about-area.section-height .inner .card-list-ser-pro li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-body);
  border-radius: 50%;
  top: 50%;
  left: -20px;
  opacity: 0.3;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.tmp-about-area.section-height .inner .card-list-ser-pro li a {
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
  color: var(--color-body);
  line-height: 30px;
}

.tmp-about-area.section-height .inner .card-list-ser-pro li a svg {
  width: 0px;
  transition: var(--transition);
  color: var(--color-primary);
}

.tmp-about-area.section-height .inner .card-list-ser-pro li a:hover {
  color: var(--color-primary);
}

.tmp-about-area.section-height .inner .card-list-ser-pro li a:hover svg {
  width: 30px;
}

.tmp-about-area.section-height .inner .card-list-ser-pro li:hover::before {
  background-color: var(--color-primary);
  opacity: 1;
  scale: 1.5;
}

.tmp-about-area.section-height .inner .blog-card .blog-content-wrap {
  padding: 20px;
}

.tmp-about-area.section-height .inner .blog-card .blog-content-wrap .blog-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.tmp-about-area.section-height .inner .form-group input {
  background-color: #181818;
  border: 1px solid transparent;
}

.tmp-about-area.section-height .inner .form-group input:focus {
  border: 1px solid var(--color-primary);
}

.tmp-about-area.section-height .inner .form-group textarea {
  border: 1px solid transparent;
  background-color: #181818;
}

.tmp-about-area.section-height .inner .form-group textarea:focus {
  border: 1px solid var(--color-primary);
}

.tmp-banner-sticky-wrapper .thumbnail {
  position: relative;
  z-index: 2;
  padding: 10px;
  max-width: max-content;
  border-radius: 50%;
}

.tmp-banner-sticky-wrapper .thumbnail::after {
  border-radius: 50%;
}

.tmp-banner-sticky-wrapper .thumbnail img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  object-fit: cover;
}

.tmp-banner-sticky-wrapper .title .span {
  color: var(--color-primary);
}

.tmp-banner-sticky-wrapper .button-group {
  gap: 15px;
  display: flex;
}

.tmp-banner-sticky-wrapper .banner-title-area .title {
  font-size: 50px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-sticky-wrapper .banner-title-area .title {
    font-size: 32px;
  }
}

.demo-modern-sticky {
  font-family: var(--font-secondary);
}

.demo-modern-sticky .footer-style-4 {
  position: relative;
}

.demo-modern-sticky .footer-style-4 .separator-animated-border {
  bottom: auto;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.324) 50%, rgba(0, 0, 0, 0) 100%);
}

.demo-modern-sticky #particles-js {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.demo-modern-sticky .testimonial-card.style-2 {
  padding: 0;
  margin-top: 15px;
}

.demo-modern-sticky.box-body {
  margin: 0 25px !important;
}

@media only screen and (max-width: 767px) {
  .demo-modern-sticky.box-body {
    margin: 0 10px !important;
  }
}

.demo-modern-sticky.box-body .tmp-about-area.section-height .inner .skill-share-inner span.title {
  color: var(--color-body);
}

.separator-animated-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  overflow: hidden;
  height: 2px;
  width: 75%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(233, 100, 100, 0.357) 50%, rgba(0, 0, 0, 0) 100%);
}

.separator-animated-border.animated-true::before {
  content: "";
  position: absolute;
  width: 7%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, var(--color-primary) 50%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(20px);
  animation: separateline 4s ease-in-out infinite;
}

@keyframes separateline {
  0% {
    left: 0;
  }

  100% {
    left: 110%;
  }
}

/*----Template Style----*/
.project-details-thumnail-wrap img {
  border-radius: 20px;
}

.project-details-area-wrapper .project-details-content-wrap .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .project-details-area-wrapper .project-details-content-wrap .title {
    font-size: 48px;
    line-height: 60px;
  }
}

.project-details-area-wrapper .project-details-content-wrap .mini-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.project-details-area-wrapper .project-details-content-wrap .docs {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

.check-box-wrap {
  margin-bottom: 45px;
}

.check-box-wrap ul li {
  margin: 0;
  margin-bottom: 7px;
}

.check-box-wrap ul li:last-child {
  margin-bottom: 0;
}

.check-box-wrap ul li .check-box-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}

.check-box-wrap ul li .check-box-item span {
  color: var(--color-primary);
}

.check-box-wrap ul li .check-box-item span i {
  background: transparent;
  border-radius: 100px;
  font-weight: 400;
  margin-top: 6px;
}

.project-details-swiper-wrapper .project-details-swiper .project-details-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.project-details-swiper-wrapper .project-details-swiper-btn {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-next,
.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-prev {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-gray);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  transition: all 0.4s ease;
}

.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-next span,
.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-prev span {
  min-width: 40px;
  min-height: 40px;
  border: 2px solid var(--color-border);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  transition: all 0.4s ease;
}

.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-next i,
.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-prev i {
  transition: all 0.4s ease;
  font-weight: 400;
  font-size: 14px;
}

.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-next:hover,
.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-prev:hover {
  color: var(--color-primary);
}

.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-next:hover span,
.project-details-swiper-wrapper .project-details-swiper-btn .project-swiper-button-prev:hover span {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white);
}

/*---------------------
    Card Styles  
----------------------*/
.tmp-breadcrumb-image {
  height: 400px;
}

@media only screen and (max-width: 767px) {
  .tmp-breadcrumb-image {
    height: 250px;
  }
}

.tmp-breadcrumb-image .bg_image--2 {
  background-position: center center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cv-card-area {
    margin-top: -200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cv-card-area {
    margin-top: -200px;
  }
}

@media only screen and (max-width: 767px) {
  .cv-card-area {
    margin-top: -200px;
  }
}

.tab-content-overlay-to-top {
  margin-top: -300px;
  position: sticky;
  top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tab-content-overlay-to-top {
    margin-top: -200px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-content-overlay-to-top {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-content-overlay-to-top {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .tab-content-overlay-to-top {
    margin-top: 0px;
  }
}

.tab-wrapper-overlay-to-top {
  margin-top: -100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tab-wrapper-overlay-to-top {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-wrapper-overlay-to-top {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-wrapper-overlay-to-top {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .tab-wrapper-overlay-to-top {
    margin-top: 0px;
  }
}

.sticky-top {
  z-index: 10 !important;
}

.sticky-top.tmp-sticky-top {
  padding: 0 !important;
  margin: 0 !important;
}

.tmp-contact-about-inner {
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--color-border);
  background: #0F0F0F;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-contact-about-inner {
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tmp-contact-about-inner {
    display: flex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-contact-about-inner {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner {
    display: flex;
    padding: 30px 15px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-contact-about-inner {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tmp-contact-about-inner .content {
    text-align: left;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-contact-about-inner .content {
    text-align: left;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner .content {
    text-align: left;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-contact-about-inner .content {
    padding-left: 0;
  }
}

.tmp-contact-about-inner .thumbnail {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-contact-about-inner .thumbnail {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-contact-about-inner .thumbnail {
    margin-bottom: 0;
  }
}

.tmp-contact-about-inner .thumbnail img {
  width: 100%;
  transition: var(--transition);
  max-width: 300px;
  border-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  .tmp-contact-about-inner .thumbnail img {
    max-width: max-content;
    margin-bottom: 0;
  }
}

.tmp-contact-about-inner .title-area {
  margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-contact-about-inner .title-area {
    margin-bottom: 5px;
  }
}

.tmp-contact-about-inner .title-area h4.title {
  font-size: 29px;
  line-height: 44px;
  color: var(--color-heading);
  margin-bottom: 9px;
}

@media only screen and (max-width: 479px) {
  .tmp-contact-about-inner .title-area h4.title {
    font-size: 20px;
  }
}

.tmp-contact-about-inner .subtitle {
  font-family: var(--font-secondary);
  color: var(--color-body);
}

.tmp-contact-about-inner .info-box {
  background: var(--color-secondary);
  padding: 20px 30px;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner .info-box {
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner .tmp-btn {
    margin: 0;
  }
}

.tmp-contact-about-inner .description {
  margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-contact-about-inner .description {
    margin-bottom: 5px;
  }
}

.tmp-contact-about-inner .description p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  font-family: var(--font-secondary);
  line-height: 28px;
  display: inline-block;
  margin-bottom: 20px;
}

.tmp-contact-about-inner .description span {
  display: block;
  font-family: var(--font-secondary);
  color: var(--color-body);
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner .description span {
    font-size: 16px;
  }
}

.tmp-contact-about-inner .description span a {
  transition: var(--transition);
  position: relative;
  color: var(--color-body);
  font-weight: 400;
}

.tmp-contact-about-inner .description span a::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: var(--color-primary);
  height: 1px;
  left: 0;
  bottom: 2px;
  transition: var(--transition);
  z-index: 10;
}

.tmp-contact-about-inner .description span a:hover {
  color: var(--color-primary);
}

.tmp-contact-about-inner .description span a:hover::before {
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tmp-contact-about-inner .social-link {
    justify-content: flex-start !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-contact-about-inner .social-link {
    justify-content: flex-start !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-contact-about-inner .social-link {
    justify-content: flex-start !important;
  }
}

.tmp-contact-about-inner::after {
  content: " ";
  position: absolute;
  right: -450px;
  bottom: -500px;
  min-width: 474px;
  min-height: 474px;
  border-radius: 100px;
  filter: blur(227px);
  z-index: 1;
  background: var(--color-primary);
}

@media only screen and (max-width: 1199px) {
  body.index-8 .tmp-contact-about-inner .thumbnail img {
    max-width: 420px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 778px) {
  body.index-8 .tmp-contact-about-inner .thumbnail img {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  body.index-8 .tmp-contact-about-inner {
    display: flex;
    padding: 15px;
  }
}

.tab-navigation-button {
  float: left;
  background-color: #181818;
  border-radius: 10px;
  width: 100%;
  height: auto;
  flex-wrap: nowrap;
  margin-top: 0;
  padding: 20px;
  border: 2px solid var(--color-border);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-navigation-button {
    padding: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-navigation-button {
    display: flex;
    flex-direction: row !important;
    margin-bottom: 0;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button {
    display: flex;
    flex-direction: row !important;
    margin-bottom: 0;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
}

.tab-navigation-button .nav-item {
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-navigation-button .nav-item {
    margin: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button .nav-item {
    margin: 5px;
  }
}

.tab-navigation-button .nav-item .nav-link {
  border: none;
  font-size: 18px;
  color: var(--color-body);
  height: 80px;
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
  display: flex;
  margin: 0;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
  font-family: var(--font-secondary);
  background: var(--color-gray-2);
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-navigation-button .nav-item .nav-link {
    height: auto;
    padding: 15px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-navigation-button .nav-item .nav-link {
    height: auto;
    padding: 15px 20px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button .nav-item .nav-link {
    height: auto;
    padding: 5px 12px;
    margin-bottom: 0;
    font-size: 14px;
  }
}

.tab-navigation-button .nav-item .nav-link:hover,
.tab-navigation-button .nav-item .nav-link:focus,
.tab-navigation-button .nav-item .nav-link.active {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
}

.tab-navigation-button .nav-item:last-child .nav-link {
  margin-bottom: 0;
}

.tab-navigation-button.style-2 {
  float: none;
  width: 100%;
  margin-bottom: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-navigation-button.style-2 {
    width: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-navigation-button.style-2 {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button.style-2 {
    width: auto;
    margin-bottom: -5px;
  }
}

.tab-navigation-button.style-2 .nav-item {
  margin: 0 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button.style-2 .nav-item {
    margin: 0 5px;
    margin-bottom: 5px;
  }
}

.tab-navigation-button.style-2 .nav-item .nav-link {
  padding: 15px 38px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .tab-navigation-button.style-2 .nav-item .nav-link {
    padding: 13px 22px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .tab-navigation-button.style-2 .nav-item .nav-link {
    padding: 5px;
  }
}

.tmp-all-tab-content {
  background: #0F0F0F;
  padding: 40px;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .tmp-all-tab-content {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-all-tab-content {
    padding: 5px;
  }
}

/*----Footer Style----*/
.footer-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-area .footer-bg-img {
  position: absolute;
  left: 84px;
  top: 60px;
  z-index: -1;
}

.footer-area .footer-bg-img img {
  animation: sppeen-box 70s linear infinite;
}

@keyframes sppeen-box {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer-style-one-wrapper,
.footer-style-two-wrapper {
  background: var(--color-gray-2);
}

.footer-style-one .ft-title,
.footer-style-two .ft-title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 40px;
}

/*================================
   Footer Style One
  ================================*/
.footer-style-one .description {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-weight: 400;
  margin-top: 22px;
  font-size: 50px;
  line-height: 60px;
}

@media (min-width: 992px) {
  .footer-style-one .description {
    font-size: 50px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 575px) {
  .footer-style-one .description {
    font-size: 40px;
    line-height: 45px;
  }
}

.footer-style-one .description span {
  font-weight: 700;
}

/*================================
   Footer Style two
  ================================*/
.footer-style-two .logo {
  margin-bottom: 30px;
}

.footer-style-two .description {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}

.footer-style-two .row {
  --bs-gutter-y: 0;
}

.footer-style-two .quick-link-wrap {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .footer-style-two .quick-link-wrap {
    margin-left: 0;
    margin-top: 0;
  }
}

.footer-style-two .contact-wrap {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .footer-style-two .contact-wrap {
    margin-left: 0;
    margin-top: 0;
  }
}

/*================================
   Newsletter Form 1
  ================================*/
.newsletter-form-1 {
  display: flex;
  align-items: center;
  padding-bottom: 19px;
  border-bottom: 2px solid var(--color-border);
  max-width: 330px;
}

.newsletter-form-1:focus {
  border-color: var(--color-primary) !important;
}

.newsletter-form-1 input {
  padding: 0;
  color: #fff;
  padding-right: 20px;
  border: 0 none;
}

.newsletter-form-1 input::placeholder {
  color: #FFF;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.newsletter-form-1 button {
  max-width: max-content;
  margin-left: auto;
  border: none;
}

.newsletter-form-1 .form-icon {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-heading);
  cursor: pointer;
}

/*================================
   Single Footer Wrapper
  ================================*/
@media (min-width: 768px) {
  .single-footer-wrapper.quick-link-wrap {
    margin-left: 80px;
  }
}

.single-footer-wrapper .social-link {
  margin-top: 30px;
}

/*================================
   FT Link
  ================================*/
.ft-link li {
  margin-top: 0;
  margin-bottom: 8px;
}

.ft-link li:last-child {
  margin-bottom: 0;
}

.ft-link.v2 li {
  margin-top: 0;
  margin-bottom: 22px;
  gap: 15px;
}

.ft-link.v2 li span {
  border: 1px solid var(--color-border);
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.ft-link.v2 li:last-child {
  margin-bottom: 0;
}

.ft-link a {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.ft-link li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
}

.ft-link li span {
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-heading);
  background: transparent;
}

.ft-link li .ft-link-wrap .link-title {
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}

.ft-link li a {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.contact-wrap .ft-link li {
  margin-bottom: 15px;
}

/*================================
   Copyright Area One
  ================================*/
.copyright-area-one {
  background: var(--color-primary);
  padding-bottom: 22px;
}

.copyright-area-one .main-wrapper {
  /* border-top: 1px solid var(--color-border); */
  display: flex;
  justify-content: center;
  align-items: center;
  color: wheat;
  padding: 4px 0;
  text-align: center;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .copyright-area-one .main-wrapper {
    gap: 4px;
  }
}

@media (min-width: 700px) {
  .copyright-area-one .main-wrapper {
    justify-content: center;
  }
}

.copyright-area-one .main-wrapper .copy-right-para {
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0;
  text-align: center;
}

.copyright-area-one .main-wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 350px) {
  .copyright-area-one .main-wrapper ul {
    justify-content: inherit;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .copyright-area-one .main-wrapper ul {
    gap: 15px;
  }
}

.copyright-area-one .main-wrapper ul li {
  margin: 0;
}

.copyright-area-one .main-wrapper ul li a {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.copyright-area-one .main-wrapper ul li a:hover {
  color: var(--color-primary);
}

/*================================
   Newslatter
  ================================*/
.newslatter {
  border-radius: 20px;
  border: 1px solid rgba(159, 159, 159, 0.2);
  padding: 25px 25px 25px 25px;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .newslatter {
    margin-top: 0;
    padding: 40px 40px 30px 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newslatter {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newslatter {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .newslatter {
    padding: 20px 10px;
  }
}

.newslatter .title {
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.newslatter .para {
  margin: 7px 0 0 0;
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .newslatter .para {
    font-size: 14px;
    line-height: 23px;
  }
}

.newslatter .newsletter-form-1 {
  border-radius: 999px;
  border: 1px solid rgba(159, 159, 159, 0.2);
  padding: 5px 5px 5px 30px;
  margin-top: 20px;
}

.newslatter .newsletter-form-1 .form-icon {
  min-width: 52px;
  min-height: 52px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.newslatter .newsletter-form-1 .form-icon:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.footer-style-4 .description {
  font-size: 17px;
  color: var(--color-body);
  font-family: var(--font-secondary);
}

.tmp-footer-area-style-net .footer-style-3 .tmp-call-to-action.style-8 {
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  background: #1b1b1c;
}

@media only screen and (max-width: 575px) {
  .tmp-footer-area-style-net .footer-style-3 .tmp-call-to-action.style-8 {
    padding: 50px 0;
  }
}

.tmp-footer-area-style-net .bg_patern-1 {
  position: relative;
  z-index: 1;
  background-image: none !important;
  background-color: rgba(27, 27, 28, 0.5568627451) !important;
}

.tmp-footer-area-style-net .bg_patern-1::after {
  background-size: auto !important;
  background-repeat: repeat !important;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/bg/patern.svg) !important;
  z-index: -1;
  opacity: 0.5;
}

.tmp-footer-area-style-net .inner * {
  font-weight: 400;
}

.tmp-footer-area-style-net .inner .title {
  font-size: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-footer-area-style-net .inner .title {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-footer-area-style-net .inner .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-footer-area-style-net .inner .title {
    font-size: 26px;
  }
}

.copyright-style-net {
  padding: 20px 0;
  border-top: 1px solid rgba(157, 157, 255, 0.0509803922);
}

.copyright-style-net .tmp-menu {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-style-net .tmp-menu {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-style-net .tmp-menu {
    justify-content: center;
  }
}

.copyright-style-net .tmp-menu li a {
  font-weight: 500;
}

.copyright-style-net .copyright-center ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright-style-net .copyright-center ul li {
  margin: 0;
  padding: 0;
}

.copyright-style-net .copyright-center ul li a {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1b1c;
  border-radius: 50%;
}

.copyright-style-net .copyright-center ul li a i {
  color: #fff;
}

.footer-modern-style-start {
  background: var(--color-gray-2) !important;
  padding-top: 100px;
}

.container-sm-fluid {
  max-width: 1600px;
  margin: auto;
  padding: 0 35px;
}

.modern-text-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .modern-text-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

.footer-textlarge-animation {
  font-size: 180px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .footer-textlarge-animation {
    font-size: 120px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-textlarge-animation {
    font-size: 80px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-textlarge-animation {
    font-size: 40px;
  }
}

.footer-modern-style-start {
  background: var(--color-darker);
  padding-top: 100px;
}

@media only screen and (max-width: 1199px) {
  .footer-modern-style-start {
    padding-top: 70px;
  }
}

.copyright-center-cocial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
  border-top: 1px solid var(--color-border);
}

@media only screen and (max-width: 767px) {
  .copyright-center-cocial {
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-start;
  }
}

.copyright-center-cocial p {
  margin: 0;
}

body.color-primary-2nd {
  --color-primary: var(--color-primary-2nd);
}

body.color-blue {
  --color-primary: #5237f9;
}

body.primary-yellow {
  --color-primary: #FFB400;
}

body.primary-yellow .bg_image--8 {
  background-image: url(../images/bg/04.webp);
}

body.color-pink {
  --color-primary: #EA4C89;
}

body.color-pink .bg_image--2 {
  background-image: url(../images/bg/bg-image-13.jpg);
}

body.color-primary-3rd {
  --color-primary: #b37a31;
  --color-primary-alt: var(--color-primary-3rd);
}

body.color-primary-3rd .services-widget.v2 .active-bg {
  background: rgba(255, 193, 7, 0.0784313725);
}

body.color-primary-4th {
  --color-primary: var(--color-primary-4th);
}

body.tmp-white-version {
  --color-heading: #141414;
  --color-gray: #5d6570;
  --color-body: #2a2d31;
  --color-gray-2: #F4F4F4;
  --color-border: #D9DDE0;
  background: #ffffff;
}

body.tmp-white-version .bg_modern-banner-bg {
  background-image: url(../images/bg/06.webp);
}

body.tmp-white-version .bg_modern-banner-bg::after {
  display: none;
}

body.tmp-white-version .banner-inner-modern-content .right-content p.disc {
  color: #141414;
}

body.tmp-white-version.box-body .main-wrapper-inner {
  background: #ffffff;
}

body.tmp-white-version .newsletter-form-1 input {
  color: #141414;
}

body.tmp-white-version .tmp-banner-one-area {
  background-image: url(../images/bg/bg-image-12.jpg);
  background-color: #EDEDED;
}

body.tmp-white-version.demo-model .tmp-banner-one-area.style-2 {
  background-image: url(../images/bg/03.webp);
}

body.tmp-white-version .rpp-banner-five-area {
  background-color: #EDEDED;
}

body.tmp-white-version .model-style-banner.with-instructor .banner-model-15 .title {
  color: #fff;
}

body.tmp-white-version .services-widget.v1 .service-item .my-skill-card .card-para {
  color: var(--color-heading);
}

body.tmp-white-version .services-widget.v1 .service-item.mleave .my-skill-card .card-para {
  color: var(--color-gray);
}

body.tmp-white-version.demo-model .banner-model-15 .title {
  color: #fff;
}

body.tmp-white-version .newsletter-form-1 input::placeholder,
body.tmp-white-version .newsletter-form-1 textarea::placeholder,
body.tmp-white-version input::placeholder,
body.tmp-white-version textarea::placeholder {
  color: var(--color-gray);
}

body.tmp-white-version .social-link a {
  background: rgba(10, 10, 10, 0.06);
}

body.tmp-white-version .custom-title span img {
  filter: brightness(0.5);
}

body.tmp-white-version .rpp-banner-two-area .banner-shape-two img {
  opacity: 0.1;
}

body.tmp-white-version .banner-two-main-wrapper .banner-right-content .main-img::after {
  display: none;
}

body.tmp-white-version .banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img img {
  filter: invert(1);
}

body.tmp-white-version .right-bg-text-para,
body.tmp-white-version .left-bg-text-para {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

body.tmp-white-version .about-us-left-content-wrap .years-of-experience-card,
body.tmp-white-version .about-us-left-content-wrap .design-card {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

body.tmp-white-version .client-testimonial-swiper .swiper::before {
  background: linear-gradient(90deg, rgba(244, 244, 244, 0.6901960784) 0%, rgba(235, 231, 231, 0.05) 100%);
}

body.tmp-white-version .client-testimonial-swiper .swiper::after {
  background: linear-gradient(90deg, rgba(244, 244, 244, 0.6901960784) 0%, rgba(235, 231, 231, 0.05) 100%);
}

body.tmp-white-version .client-testimonial-card-wrap .quat-logo img,
body.tmp-white-version .my-skill-card .card-icon img {
  filter: inherit;
}

body.tmp-white-version .banner-three-main-wrapper .bg-benner-img-three::before {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0) 27.58%, #d3b0b0 80.06%);
}

body.tmp-white-version svg.radial-progress text {
  fill: #141414;
}

body.tmp-white-version .service-item.current .my-expertise-card-wrap .expertise-card-left .expertise-card-logo img {
  filter: brightness(1);
}

body.tmp-white-version .service-item .my-expertise-card-wrap .expertise-card-left .expertise-card-logo img {
  filter: brightness(0.5);
}

body.tmp-white-version #side-hide,
body.tmp-white-version .breadcrumb-area,
body.tmp-white-version .tmp-sidebar-area .inner .top-area {
  background: #f4f4f4;
}

body.tmp-white-version #side-hide .top-area,
body.tmp-white-version .contact-info {
  background: #ffffff;
}

body.tmp-white-version .tmp-round-action-btn {
  background: rgba(10, 10, 10, 0.06);
  color: var(--color-heading);
}

body.tmp-white-version .tmp-round-action-btn:hover {
  color: var(--color-white);
}

body.tmp-white-version .tmp-arrow-icon-btn:hover i.tmp-icon-bottom {
  color: var(--color-white);
}

body.tmp-white-version .signle-side-bar .tags-wrapper .tag-link {
  background: rgba(10, 10, 10, 0.06);
}

body.tmp-white-version .signle-side-bar .tags-wrapper .tag-link:hover {
  color: var(--color-white);
  background: var(--color-primary) !important;
}

body.tmp-white-version .logo img.logo-white {
  display: block;
}

body.tmp-white-version .logo img.logo-dark {
  display: none;
}

body.tmp-white-version .tmp-contact-about-inner,
body.tmp-white-version .tab-navigation-button,
body.tmp-white-version .tmp-all-tab-content {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

body.tmp-white-version .tmp-contact-about-inner .info-box {
  background: var(--color-white);
}

body.tmp-white-version .tmp-banner-one-area.style-2 {
  background-image: url(../images/bg/bg-image-9.jpg);
}

body.tmp-white-version .bg_image--8 {
  background-image: url(../images/bg/bg-image-8.jpg);
}

body.tmp-white-version.primary-yellow .bg_image--8 {
  background-image: url(../images/bg/04.webp);
}

body.tmp-white-version .tmp-banner-one-area.style-4 {
  background-image: url(../images/bg/bg-image-11.jpg);
}

body.tmp-white-version .tmp-popup-mobile-menu .header-top .close-menu .close-button {
  background: rgba(10, 10, 10, 0.06);
  color: var(--color-heading);
}

body.tmp-white-version .newslatter .newsletter-form-1 .form-icon i {
  color: #fff;
}

body.tmp-white-version .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
  -webkit-text-stroke: 1px #fff;
}

body.tmp-white-version .tmp-about-area.section-height .inner .skill-share-inner .skill-share li {
  background: #fff;
}

body.tmp-white-version .tmp-about-area.section-height .inner .separator-animated-border,
body.tmp-white-version.demo-modern-sticky .footer-style-4 .separator-animated-border {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(255, 1, 79) 50%, rgba(0, 0, 0, 0) 100%);
}

body.tmp-white-version .separator-animated-border.animated-true::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(0, 0, 0, 0) 100%);
}

body.tmp-white-version .tmp-about-area.section-height .inner .form-group input,
body.tmp-white-version .tmp-about-area.section-height .inner .form-group textarea {
  background-color: #ffffff;
  border: 1px solid transparent;
}

body.tmp-white-version.color-blue .tmp-about-area.section-height .inner .separator-animated-border,
body.tmp-white-version.color-blue body.tmp-white-version.demo-modern-sticky .footer-style-4 .separator-animated-border {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(171, 171, 171) 50%, rgba(0, 0, 0, 0) 100%);
}

body.tmp-white-version.color-blue .footer-style-4 .separator-animated-border {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0) 0%, rgb(197, 197, 197) 50%, rgba(0, 0, 0, 0) 100%);
}

body.tmp-white-version.personal-demo-left-fixed .skill-style-border-card img {
  filter: brightness(0) saturate(100%);
}

body.tmp-white-version.personal-demo-left-fixed .pricing-table-col-2 .pricing-table-header h4,
body.tmp-white-version.personal-demo-left-fixed .pricing-table-col-2 .pricing-table-header .top p,
body.tmp-white-version.personal-demo-left-fixed .pricing-table-col-2 .feature-lists li,
body.tmp-white-version.personal-demo-left-fixed .pricing-table-col-2 .pricing-table-header h3 span,
body.tmp-white-version.personal-demo-left-fixed .pricing-table-items .info,
body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list:hover .inner .heading .title h4 {
  color: var(--color-heading);
}

body.tmp-white-version.personal-demo-left-fixed .tmp-footer-area-style-net .bg_patern-1 {
  background-color: rgba(255, 255, 255, 0.56) !important;
}

body.tmp-white-version.personal-demo-left-fixed .tmp-footer-area-style-net .bg_patern-1::after {
  opacity: 0.1;
}

body.tmp-white-version.personal-demo-left-fixed .contact-area-left-portfolio-fixed input,
body.tmp-white-version.personal-demo-left-fixed .contact-area-left-portfolio-fixed textarea {
  background: var(--color-gray-2);
  border: 1px solid #e4e4e4;
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list {
  background: #f4f4f4;
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list .inner::after {
  border: 5px solid #e4e4e4;
  background: var(--color-primary);
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list .inner .heading .date-of-time span {
  background: var(--color-primary);
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list .inner .heading .title span {
  color: #333333;
  font-weight: 500;
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list .inner::before {
  background: #e4e4e4;
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list {
  border-left: 5px solid #e4e4e4;
}

body.tmp-white-version.personal-demo-left-fixed .progress {
  background-color: #e4e4e4;
}

body.tmp-white-version.personal-demo-left-fixed .personal-portfolio-right-inner-wrapper .counter-style-2.border-style.small-radious .count-number {
  background-color: #ffffff;
  color: #141414 !important;
}

body.tmp-white-version.personal-demo-left-fixed .personal-portfolio-right-inner-wrapper .counter-style-2.border-style.small-radious .count-number span {
  color: #141414 !important;
}

body.tmp-white-version.personal-demo-left-fixed .experience-style-list .experience-list .resume-single-list .inner .heading {
  border-bottom: 1px solid #e8e8e8;
}

body.tmp-white-version.personal-demo-left-fixed .profile-image-1-personal-left-fixed::after {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

body.tmp-white-version.personal-demo-left-fixed .profile-image-1-personal-left-fixed .social-default li a {
  background-color: #ffffff;
}

body.tmp-white-version.personal-demo-left-fixed .profile-image-1-personal-left-fixed .social-default li a i {
  color: var(--color-primary);
}

body.tmp-white-version.personal-demo-left-fixed .profile-image-1-personal-left-fixed .social-default li a:hover i {
  color: #fff;
}

body.tmp-white-version.personal-demo-left-fixed .copyright-style-net .copyright-center ul li a {
  background: var(--color-primary);
}

body.tmp-white-version .banner-twelve-area.with-bg-image .banner-one-main-wrapper .inner .title {
  color: #fff;
}

body.tmp-white-version .banner-twelve-area.with-bg-image .social-share-style-1 a {
  background: #fff;
}

body.tmp-white-version .banner-twelve-area.with-bg-image {
  background-image: url(../images/bg/02.webp) !important;
}

body.tmp-white-version .header-left-sticky .inner-wrapper::after {
  background: transparent;
}

body.tmp-white-version.demo-actress .header-one.header--transparent {
  position: absolute;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  /* backdrop-filter: blur(9px); */
}

body.tmp-white-version.demo-actress .tmp-banner-style-actress .banner-actress .title {
  color: var(--color-white) !important;
}

body.tmp-white-version.demo-actress .tmp-banner-style-actress .banner-actress .title span {
  color: #fff;
}

.tmp-white-version .tmp-right-demo .demo-button::before {
  content: "";
  background: linear-gradient(-45deg, #ee7752, #ff004b, #ff004b, #d52323);
  background-size: 400% 400%;
  animation: gradient 4s ease infinite;
  opacity: 1;
  backdrop-filter: blur(21px);
}

.tmp-white-version .tmp-right-demo * {
  color: #fff !important;
}

.tmp-white-version.index-8 .tmp-contact-about-inner::after {
  display: none !important;
}

.tmp-white-version .tmp-banner-one-area.style-3 .thumbnail-author img,
.tmp-white-version .tmp-banner-one-area.style-4 .thumbnail-author img {
  border: 25px solid #ebebeb;
}

.index-ten .tmp-contact-about-inner {
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .index-ten .tmp-contact-about-inner .thumbnail img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.tmp-white-version .year-of-expariance-wrapper.bg-blur-style-one::after {
  display: none;
}

.tmp-white-version .services-widget.v1 .my-skill-card .card-icon {
  border: 2px solid #141414;
}

.tmp-white-version .color-primary-2nd .services-widget.v1 .my-skill-card .card-icon i {
  color: var(--color-heading);
}

.tmp-white-version .about-us-left-content-wrap .design-card .design-card-img {
  border: 2px solid var(--color-primary);
}

.tmp-white-version .color-primary-2nd .services-widget.v2 .active-bg {
  background: var(--color-primary);
}

.tmp-white-version .color-primary-2nd .my-expertise-card-wrap .expertise-card-left .expertise-card-logo img {
  filter: brightness(0) saturate(100%) !important;
}

.tmp-white-version .my-expertise-card-wrap .expertise-card-left .expertise-card-logo {
  border: 2px solid #141414;
}

.tmp-white-version .rpp-banner-two-area::before {
  display: none;
}

.tmp-white-version .rpp-banner-two-area::after {
  display: none;
}

.tmp-white-version .banner-three-main-wrapper .bg-benner-img-three::before {
  display: none;
}

.tmp-white-version .services-widget.v4 .active-bg {
  background: rgb(253, 196, 72);
}

.tmp-white-version .tmp-banner-one-area.style-4 .galaxy {
  opacity: 0.07;
}

.tmp-white-version .tmponhover {
  transition: 0.3s;
}

.tmp-white-version .tmponhover:hover {
  box-shadow: none;
}

.tmp-white-version .tmp-banner-area-full-width-modern .social-area-wrapper-varticle ul li a {
  background: #0d6efd;
}

body.tmp-white-version.color-primary-3rd .services-widget.v2 .active-bg {
  background: rgb(255, 193, 7);
}

.demo-modal-area .wrapper .tmp-modal-inner .demo-top .subtitle {
  color: #c2c2c2 !important;
}

.active-light.demo-modal-area .wrapper .tmp-modal-inner .demo-top .subtitle {
  color: #3d3d3d !important;
}

/*# sourceMappingURL=../maps/style.css.map */
.logo_1 img {
  width: 300px;
}

.home_1 {
  margin: 0px 20px 0px 20px;
}

.home-about-1 img {
  border-radius: 15px;
}

.py-40 {
  padding: 60px 0px;
}

/*=========================================
    BEVERAGE CATEGORIES
=========================================*/

.vk-category-section {
  position: relative;
  padding: 68px 0;
  background: #F8F7F4;
  overflow: hidden;
}

/* Decorative Shapes */

.vk-category-section::before {

  content: '';

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(200, 155, 60, .05);

  border-radius: 50%;

  top: -180px;
  right: -180px;

}

.vk-category-section::after {

  content: '';

  position: absolute;

  width: 280px;
  height: 280px;

  background: rgba(11, 35, 65, .04);

  border-radius: 50%;

  left: -120px;
  bottom: -120px;

}


/*=========================================
    Heading
=========================================*/

.vk-section-subtitle {

  display: inline-block;

  font-size: 15px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: #C89B3C;

  margin-bottom: 18px;

}

.vk-section-title {

  font-size: 52px;

  line-height: 1.2;

  font-weight: 700;

  color: #0B2341;

  margin-bottom: 25px;

}

.vk-section-text {

  font-size: 18px;

  line-height: 32px;

  color: #666;

  max-width: 760px;

  margin: auto;

}


/*=========================================
    Card
=========================================*/

.vk-category-card {

  position: relative;

  background: #fff;

  border-radius: 25px;

  padding: 45px 35px;

  border: 1px solid #ECECEC;

  transition: .45s;

  height: 100%;

  overflow: hidden;

}

/* Gold Top Border */

.vk-category-card::before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 0;

  height: 4px;

  background: #C89B3C;

  transition: .4s;

}

/* Hover */

.vk-category-card:hover {

  transform: translateY(-12px);

  box-shadow:

    0 20px 45px rgba(0, 0, 0, .08),

    0 8px 25px rgba(200, 155, 60, .12);

}

.vk-category-card:hover::before {

  width: 100%;

}


/*=========================================
    Number
=========================================*/

.vk-category-number {

  position: absolute;

  right: 35px;

  top: 35px;

  font-size: 60px;

  font-weight: 700;

  color: #F2F2F2;

  transition: .4s;

}

.vk-category-card:hover .vk-category-number {

  color: #E7D5A8;

}


/*=========================================
    Icon
=========================================*/

.vk-category-icon {

width: 85px;

height: 85px;

border-radius: 50%;

background:

    linear-gradient(135deg,

      #FFF8EA,

      #F7E5B5);

display: flex;

align-items: center;

justify-content: center;

margin-bottom: -5px;

transition: .4s;
}

.vk-category-card {

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

}

.vk-category-btn {

  font-size: 16px;

  font-weight: 700;

  letter-spacing: .5px;

}

.vk-category-card:hover {

  transform:

    translateY(-15px) scale(1.03);

}

.vk-category-card:hover {

  box-shadow:

    0 35px 80px rgba(0, 0, 0, .08),

    0 10px 30px rgba(200, 155, 60, .15);

}

.vk-category-icon i {

  font-size: 36px;

  color: #C89B3C;

}

.vk-category-card:hover .vk-category-icon {

  background: #0B2341;

}

.vk-category-card:hover .vk-category-icon i {

  color: #fff;

}


/*=========================================
    Title
=========================================*/

.vk-category-card h3 {

  font-size: 30px;

  color: #0B2341;

  margin-bottom: 18px;

  transition: .3s;

}

.vk-category-card:hover h3 {

  color: #C89B3C;

}


/*=========================================
    Description
=========================================*/

.vk-category-card p {

font-size: 16px;

line-height: 30px;

color: #666;

font-weight: 600;

margin-bottom: 25px;
}


/*=========================================
    List
=========================================*/

.vk-category-card ul {

  padding: 0;

  margin: 0 0 30px;

  list-style: none;

}

.vk-category-card ul li {

position: relative;

padding-left: 24px;

margin-bottom: 5px;

font-size: 17px;

font-weight: 600;

color: #555;
}

.vk-category-card ul li::before {

  content: "";

  position: absolute;

  left: 0;

  top: 10px;

  width: 8px;

  height: 8px;

  background: #C89B3C;

  border-radius: 50%;

}


/*=========================================
    Button
=========================================*/

.vk-category-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #0B2341;

  font-weight: 600;

  text-decoration: none;

  transition: .3s;

}

.vk-category-btn i {

  transition: .3s;

}

.vk-category-btn:hover {

  color: #C89B3C;

}

.vk-category-btn:hover i {

  transform: translateX(8px);

}

/*=========================================
    PREMIUM HOVER EFFECTS
=========================================*/

/* Smooth Animation */

.vk-category-card,
.vk-category-card *,
.vk-category-icon,
.vk-category-btn,
.vk-category-number {
  transition: all .45s ease;
}

/*=========================================
    Gold Background Circle
=========================================*/

.vk-category-card::after {

  content: '';

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(200, 155, 60, .08);

  top: -260px;
  right: -260px;

  transition: .6s;

  z-index: 0;

}

.vk-category-card:hover::after {

  top: -120px;
  right: -120px;

}

/* Keep Content Above */

.vk-category-card>* {

  position: relative;
  z-index: 2;

}

/*=========================================
    Icon Animation
=========================================*/

.vk-category-card:hover .vk-category-icon {

  transform: rotate(-8deg) scale(1.08);

  box-shadow:

    0 0 0 10px rgba(200, 155, 60, .10),

    0 20px 35px rgba(0, 0, 0, .12);

}

/*=========================================
    Icon Floating
=========================================*/

.vk-category-icon {

  animation: iconFloat 5s ease-in-out infinite;

}

@keyframes iconFloat {

  0% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-6px);

  }

  100% {

    transform: translateY(0);

  }

}

/*=========================================
    Heading Underline
=========================================*/

.vk-category-card h3 {

  position: relative;
  display: inline-block;

}

.vk-category-card h3::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;

  height: 2px;

  background: #C89B3C;

  transition: .35s;

}

.vk-category-card:hover h3::after {

  width: 100%;

}

/*=========================================
    List Animation
=========================================*/

.vk-category-card ul li {

  transition: .3s;

}

.vk-category-card:hover ul li {

  padding-left: 30px;

}

/* Gold Dot */

.vk-category-card:hover ul li::before {

  transform: scale(1.4);

}

/*=========================================
    Button
=========================================*/

.vk-category-btn {

  position: relative;

}

.vk-category-btn::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;

  height: 2px;

  background: #C89B3C;

  transition: .35s;

}

.vk-category-btn:hover::after {

  width: 100%;

}

/*=========================================
    Card Lift
=========================================*/

.vk-category-card:hover {

  transform:

    translateY(-14px) scale(1.02);

}

/*=========================================
    Gold Border
=========================================*/

.vk-category-card:hover {

  border-color: #C89B3C;

}

/*=========================================
    Number Animation
=========================================*/

.vk-category-card:hover .vk-category-number {

  transform: scale(1.1);

}

/*=========================================
    Shine Effect
=========================================*/

.vk-category-card span.shine {

  position: absolute;

  top: 0;
  left: -120%;

  width: 80px;
  height: 100%;

  background: rgba(255, 255, 255, .35);

  transform: skewX(-25deg);

}

.vk-category-card:hover span.shine {

  animation: shineMove .9s;

}

@keyframes shineMove {

  100% {

    left: 160%;

  }

}

/*=========================================
        RESPONSIVE CSS
=========================================*/

/*=============================
    Large Laptop
=============================*/

@media (max-width: 1399px) {

  .vk-category-section {
    padding: 110px 0;
  }

  .vk-section-title {
    font-size: 46px;
  }

  .vk-category-card {
    padding: 40px 30px;
  }

  .vk-category-card h3 {
    font-size: 28px;
  }

}


/*=============================
    Laptop
=============================*/

@media (max-width:1199px) {

  .vk-section-title {
    font-size: 40px;
  }

  .vk-section-text {
    font-size: 17px;
    line-height: 30px;
  }

  .vk-category-icon {
    width: 75px;
    height: 75px;
  }

  .vk-category-icon i {
    font-size: 32px;
  }

  .vk-category-number {
    font-size: 50px;
  }

  .vk-category-card {
    padding: 35px 28px;
  }

}


/*=============================
    Tablet
=============================*/

@media (max-width:991px) {

  .vk-category-section {
    padding: 90px 0;
  }

  .vk-section-title {
    font-size: 34px;
  }

  .vk-section-text {
    font-size: 16px;
    line-height: 28px;
  }

  .vk-category-card {
    padding: 35px 25px;
  }

  .vk-category-card h3 {
    font-size: 25px;
  }

  .vk-category-card ul li {
    font-size: 15px;
  }

}


/*=============================
    Mobile
=============================*/

@media (max-width:767px) {

  .vk-category-section {
    padding: 80px 0;
  }

  .vk-section-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .vk-section-title {
    font-size: 30px;
    line-height: 1.35;
  }

  .vk-section-text {
    font-size: 15px;
    line-height: 28px;
  }

  .vk-category-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .vk-category-card h3 {
    font-size: 24px;
  }

  .vk-category-icon {
    width: 70px;
    height: 70px;
  }

  .vk-category-icon i {
    font-size: 30px;
  }

  .vk-category-number {
    font-size: 42px;
    top: 20px;
    right: 20px;
  }

  .vk-category-card p {
    font-size: 15px;
    line-height: 28px;
  }

  .vk-category-card ul li {
    font-size: 15px;
  }

}


/*=============================
    Small Mobile
=============================*/

@media (max-width:575px) {

  .vk-category-section {
    padding: 70px 0;
  }

  .vk-section-title {
    font-size: 26px;
  }

  .vk-section-text {
    font-size: 14px;
  }

  .vk-category-card {
    padding: 25px 20px;
  }

  .vk-category-card h3 {
    font-size: 22px;
  }

  .vk-category-icon {
    width: 65px;
    height: 65px;
  }

  .vk-category-icon i {
    font-size: 26px;
  }

  .vk-category-btn {
    font-size: 15px;
  }

}


/*=============================
    Extra Small
=============================*/

@media (max-width:420px) {

  .vk-section-title {
    font-size: 22px;
  }

  .vk-category-card {
    padding: 22px 18px;
  }

  .vk-category-card h3 {
    font-size: 20px;
  }

  .vk-category-card p {
    font-size: 14px;
    line-height: 26px;
  }

  .vk-category-card ul li {
    font-size: 14px;
  }

}

/*=========================================
        Divider
=========================================*/

.vk-divider {

width: 100%;
display: flex;
justify-content: center;
margin-top: 35px;
margin-bottom: -3px;
}

.vk-divider span {

  width: 80px;
  height: 4px;
  background: #C89B3C;
  border-radius: 30px;
  position: relative;

}

.vk-divider span::before {

  content: '';

  width: 14px;
  height: 14px;
  background: #0B2341;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

}

/*=========================================
        Shapes
=========================================*/

.vk-shape {

  position: absolute;
  border-radius: 50%;
  pointer-events: none;

}

.shape-one {

  width: 260px;
  height: 260px;
  border: 22px solid rgba(200, 155, 60, .05);
  right: -130px;
  top: 120px;

  animation: floatOne 8s infinite;

}

.shape-two {

  width: 180px;
  height: 180px;
  border: 16px solid rgba(11, 35, 65, .05);
  left: -90px;
  bottom: 80px;
  animation: floatTwo 7s infinite;
}

@keyframes floatOne {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }

}

@keyframes floatTwo {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }

  100% {

    transform: translateY(0);

  }

}

.vk-category-section {

background: linear-gradient(180deg, #fdc4480d 0%, #f8f7f4 100%);
}
.inner_1
{
  background-color: white;
}