:root {
  --bodyFont: "Poppins", sans-serif;
  --titleFont: "Tomorrow", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --primaryColor: #ed2a00;
  --titleColor: #ffffff;
  --textColor: #474747;
  --bodyColor: #000000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --menuColor: #000000;
  --borderColor: #e6e6e6;
  --borderColor2: #ffffff14;
  --btnTextColor: #000000;
  --btnTextHoverColor: var(--primaryColor);
  --btnBgColor: var(--primaryColor);
  --btnBgHoverColor: var(--primaryColor5);
  --linkColor: var(--secondaryColor);
  --linkHoverColor: var(--primaryColor);
  --neutralColor0: #ffffff;
  --neutralColor10: #fafafa;
  --neutralColor20: #f5f5f6;
  --neutralColor30: #ebebed;
  --neutralColor40: #dfdfe1;
  --neutralColor50: #c2c2c6;
  --neutralColor60: #b3b3b8;
  --neutralColor70: #a7a7ac;
  --neutralColor80: #98999e;
  --neutralColor90: #898a91;
  --neutralColor100: #7b7b83;
  --neutralColor200: #6c6d75;
  --neutralColor300: #5d5e67;
  --neutralColor400: #51525c;
  --neutralColor500: #42434e;
  --neutralColor600: #363742;
  --neutralColor700: #252632;
  --neutralColor800: #161725;
  --neutralColor900: #0a0b19;
  --neutralColor1000: #0d0d0d;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.tp-portfolio-style2 .portfolio-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-portfolio-style2 .portfolio-item img {
  width: 100%;
}
.tp-portfolio-style2 .portfolio-item .portfolio-content {
  padding: 0;
}
.tp-portfolio-style2 .portfolio-item .portfolio-content .p-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.tp-portfolio-style2 .portfolio-item .portfolio-content .p-title span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.tp-portfolio-style2 .portfolio-item .portfolio-content .p-title span,
.tp-portfolio-style2 .portfolio-item .portfolio-content .p-title a {
  color: var(--whiteColor);
}
.tp-portfolio-style2 .portfolio-item .portfolio-content .p-title a:hover {
  color: var(--primaryColor);
}
.tp-portfolio-style2 .portfolio-item .pf-btn {
  color: var(--primaryColor);
  background: var(--whiteColor);
  width: 48px;
  height: 48px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease 0s;
}
.tp-portfolio-style2 .portfolio-item:hover .pf-btn {
  transform: scale(1);
}
.tp-portfolio-style2 .portfolio-item:hover:after {
  visibility: visible;
  height: 100%;
}

.tp-portfolio-style3 .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.tp-portfolio-style3 .portfolio-item .portfolio-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-portfolio-style3 .portfolio-item .portfolio-img:before {
  content: "";
  position: absolute;
  background: #bb0b0b;
  opacity: 0.902;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.tp-portfolio-style3 .portfolio-item .portfolio-img img {
  width: 100%;
  transition: 1.3s all ease;
  border-radius: 0px;
}
.tp-portfolio-style3 .portfolio-item .portfolio-img .p-link {
  display: none !important;
  top: 20px;
  right: 20px;
  display: inline-block;
  font-size: 32px;
  color: #ffffff;
  transition: 0.6s all ease;
  opacity: 0;
  z-index: 10;
}
.tp-portfolio-style3 .portfolio-item .portfolio-img .p-link i {
  margin-left: 2px;
  display: none;
}
.tp-portfolio-style3 .portfolio-item .portfolio-content {
  position: relative;
  padding: 20px 0px 0;
  opacity: 1;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  border-top: 0;
}
.tp-portfolio-style3 .portfolio-item .portfolio-content a {
  color: var(--secondaryColor);
}
.tp-portfolio-style3 .portfolio-item .portfolio-content h4 {
  margin-bottom: 0;
  font-size: 24px;
  transform: translateY(0);
  transition: 0.6s all ease;
  font-weight: 500 !important;
  line-height: 30px !important;
}
.tp-portfolio-style3 .portfolio-item .portfolio-content h4 a:hover {
  color: var(--primaryColor);
}
.tp-portfolio-style3 .portfolio-item .portfolio-content p {
  margin-bottom: 0;
  color: var(--secondaryColor);
  transform: translateY(0px);
  transition: 0.6s all ease;
}
.tp-portfolio-style3 .portfolio-item .portfolio-content p a {
  font-size: 14px;
}
.tp-portfolio-style3 .portfolio-item a.pf-btn2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
}
.tp-portfolio-style3 .portfolio-item:hover h4 a {
  text-decoration: underline !important;
}
.tp-portfolio-style3 .portfolio-item:hover .portfolio-img:before {
  height: 100%;
}
.tp-portfolio-style3 .portfolio-item:hover .portfolio-img a.pf-btn2 {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

.tp-portfolio-style4 .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.tp-portfolio-style4 .portfolio-item .portfolio-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-portfolio-style4 .portfolio-item .portfolio-img:before {
  content: "";
  position: absolute;
  background: #086ad8;
  opacity: 0.902;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
  -webkit-clip-path: polygon(0% -65%, 0% 100%, 99% 100%);
          clip-path: polygon(0% -65%, 0% 100%, 99% 100%);
}
.tp-portfolio-style4 .portfolio-item .portfolio-img img {
  width: 100%;
  transition: 1.3s all ease;
  border-radius: 0px;
}
.tp-portfolio-style4 .portfolio-item .portfolio-img .p-link {
  display: none !important;
  top: 20px;
  right: 20px;
  display: inline-block;
  font-size: 32px;
  color: #ffffff;
  transition: 0.6s all ease;
  opacity: 0;
  z-index: 10;
}
.tp-portfolio-style4 .portfolio-item .portfolio-img .p-link i {
  margin-left: 2px;
  display: none;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content {
  position: relative;
  padding: 35px 0px 0;
  opacity: 1;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  border-top: 0;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content a {
  color: var(--secondaryColor);
}
.tp-portfolio-style4 .portfolio-item .portfolio-content h4 {
  margin-bottom: 0;
  font-size: 24px;
  transform: translateY(0);
  transition: 0.6s all ease;
  font-weight: 500 !important;
  line-height: 30px !important;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content h4 a:hover {
  color: var(--primaryColor);
}
.tp-portfolio-style4 .portfolio-item .portfolio-content p {
  margin-bottom: 0;
  color: var(--secondaryColor);
  transform: translateY(0px);
  transition: 0.6s all ease;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content p a {
  font-size: 14px;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content {
  transition: 0.4s;
  opacity: 0;
  display: none;
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 5;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content .p-title {
  margin-bottom: 0;
  max-width: 255px;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content .p-title a {
  color: #ffffff;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content .p-category {
  margin-bottom: 0;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content .p-category .separator {
  color: #fff;
}
.tp-portfolio-style4 .portfolio-item .portfolio-content .p-category a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.tp-portfolio-style4 .portfolio-item a.pf-btn2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  position: absolute;
  z-index: 6;
  right: 30px;
  bottom: 30px;
  transform: translate(-50%, -50%) scale(0);
  transform: translate(0%, 0%) scale(0);
  border-radius: 100px;
  background: #ffffff;
  width: 50px;
  height: 50px;
}
.tp-portfolio-style4 .portfolio-item a.pf-btn2 i {
  color: #333333;
  position: relative;
  left: -3px;
}
.tp-portfolio-style4 .portfolio-item a.pf-btn2:hover {
  background: #086ad8;
}
.tp-portfolio-style4 .portfolio-item a.pf-btn2:hover i {
  color: #fff;
}
.tp-portfolio-style4 .portfolio-item:hover h4 a {
  text-decoration: underline !important;
}
.tp-portfolio-style4 .portfolio-item:hover .portfolio-img:before {
  height: 100%;
  display: block;
}
.tp-portfolio-style4 .portfolio-item:hover .portfolio-img .portfolio-content {
  display: block;
  opacity: 1;
}
.tp-portfolio-style4 .portfolio-item:hover .portfolio-img a.pf-btn2 {
  transform: translate(0%, 0%) scale(1);
  -webkit-transform: translate(0%, 0%) scale(1);
  -moz-transform: translate(0%, 0%) scale(1);
  -ms-transform: translate(0%, 0%) scale(1);
  -o-transform: translate(0%, 0%) scale(1);
}

.tp-portfolio-style5 .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #edeff3;
  padding: 35px;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 133%;
  background: var(--primaryColor);
  opacity: 0.5;
  left: 0;
  top: 0;
  transform: rotate(-54deg) translateY(-162%);
  transition: 0.5s;
  z-index: 0;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 133%;
  background: var(--primaryColor);
  opacity: 0.5;
  left: 0;
  top: 0;
  transform: rotate(-45deg) translateY(126%);
  transition: 0.5s;
  z-index: 0;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img img {
  width: 100%;
  transition: 1.3s all ease;
  border-radius: 0px;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img a.pf-btn2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 5;
  background: var(--primaryColor);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img a.pf-btn2 i {
  color: #fff;
}
.tp-portfolio-style5 .portfolio-item .portfolio-img:hover:before {
  transform: rotate(-54deg) translateY(-100%);
}
.tp-portfolio-style5 .portfolio-item .portfolio-img:hover:after {
  transform: rotate(-54deg) translateY(30%);
}
.tp-portfolio-style5 .portfolio-item .portfolio-content {
  position: relative;
  padding: 35px 0px 0;
  opacity: 1;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  border-top: 0;
}
.tp-portfolio-style5 .portfolio-item .portfolio-content a {
  color: var(--secondaryColor);
}
.tp-portfolio-style5 .portfolio-item .portfolio-content .p-title {
  line-height: 28px;
  margin-bottom: 8px;
}
.tp-portfolio-style5 .portfolio-item .portfolio-content h4 {
  margin-bottom: 0;
  font-size: 24px;
  transform: translateY(0);
  transition: 0.6s all ease;
  font-weight: 500 !important;
  line-height: 30px !important;
}
.tp-portfolio-style5 .portfolio-item .portfolio-content h4 a:hover {
  color: var(--primaryColor);
}
.tp-portfolio-style5 .portfolio-item .portfolio-content p {
  margin-bottom: 0;
  color: var(--bodyColor);
  transform: translateY(0px);
  transition: 0.6s all ease;
}
.tp-portfolio-style5 .portfolio-item .portfolio-content p a {
  font-size: 14px;
}
.tp-portfolio-style5 .portfolio-item:hover h4 a {
  text-decoration: underline !important;
}
.tp-portfolio-style5 .portfolio-item:hover .portfolio-img:before {
  height: 100%;
  display: block;
}
.tp-portfolio-style5 .portfolio-item:hover .portfolio-img .portfolio-content {
  top: 0;
  display: block;
  opacity: 1;
}
.tp-portfolio-style5 .portfolio-item:hover .portfolio-img a.pf-btn2 {
  transform: translate(-50%, -50%) scale(1);
}

.tps-btn {
  padding: 17px 30px;
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  border-radius: 15px;
  background: var(--primaryColor);
  color: #fff;
}
.tps-btn:hover {
  background-color: var(--titleColor);
}

.tp-portfolio-style6.swiper {
  overflow: visible !important;
}
.tp-portfolio-style6.swiper .swiper-pagination-frac {
  top: -19%;
  right: 75px;
  font-weight: 700;
  position: absolute;
  max-width: -moz-max-content;
  max-width: max-content;
  left: unset;
}
.tp-portfolio-style6.swiper .swiper-pagination-frac .swiper-pagination-current {
  color: var(--primaryColor);
}
.tp-portfolio-style6 .bg-right-gallery {
  background: #181c27;
  padding: 102px 50px 60px;
  border-radius: 15px;
  position: relative;
}
.tp-portfolio-style6 .bg-right-gallery .shape--bg {
  position: absolute;
  top: 0;
  right: 0;
}
.tp-portfolio-style6 .bg-right-gallery .tps-btn:hover {
  background: #ffecec;
  color: var(--titleColor);
}
.tp-portfolio-style6 .p-title {
  margin-top: 30px;
}
.tp-portfolio-style6 .p-title a {
  font-size: 30px;
  font-family: var(--titleFont);
  font-weight: 700;
  color: #fff;
}
.tp-portfolio-style6 .p-category a {
  font-size: 16px;
  color: #fff;
}
.tp-portfolio-style6 p.disc {
  margin-top: 16px;
  color: #b3b7c1;
  margin-bottom: 45px;
  line-height: 26px;
  margin-top: 20px;
}
.tp-portfolio-style6 .thumbnail-gallery img {
  border-radius: 15px;
}
.tp-portfolio-style6 .swiper-btn-next {
  top: -16%;
  right: 0px;
}
.tp-portfolio-style6 .swiper-btn-prev {
  top: -16%;
  right: 135px;
  left: auto;
}
.tp-portfolio-style6 .swiper-btn-prev,
.tp-portfolio-style6 .swiper-btn-next {
  background: #fff;
  box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
  border-radius: 8px;
}

.tp-portfolio-style7 .tps-business-case-s-2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  transition: 0.3s;
}
.tp-portfolio-style7 .tps-business-case-s-2 .shape--bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: -75%;
  right: -55%;
  opacity: 0;
}
.tp-portfolio-style7 .tps-business-case-s-2 .thumbnail {
  border-radius: 20px;
  overflow: hidden;
}
.tp-portfolio-style7 .tps-business-case-s-2 .thumbnail img {
  overflow: hidden;
  transition: 0.3s;
  border-radius: 20px;
}
.tp-portfolio-style7 .tps-business-case-s-2 .inner {
  padding: 35px;
  text-align: center;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 10;
}
.tp-portfolio-style7 .tps-business-case-s-2 .inner .icon {
  position: absolute;
  height: 58px;
  width: 58px;
  bottom: -48px;
  left: -36px;
  transition: 0.3s;
  opacity: 0;
}
.tp-portfolio-style7 .tps-business-case-s-2 .inner span {
  color: #5d666f;
  font-size: 16px;
  position: relative;
}
.tp-portfolio-style7 .tps-business-case-s-2 .inner .title {
  margin-bottom: 2px;
  transition: 0.3s;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1c2539;
}
.tp-portfolio-style7 .tps-business-case-s-2:hover .thumbnail img {
  transform: scale(1.1);
}
.tp-portfolio-style7 .tps-business-case-s-2:hover::after {
  top: -16%;
  right: -56%;
}
.tp-portfolio-style7 .tps-business-case-s-2:hover .inner span::after {
  bottom: -55px;
  left: -111px;
}
.tp-portfolio-style7 .tps-business-case-s-2:hover .shape--bg {
  top: -28%;
  right: -55%;
  opacity: 1;
}
.tp-portfolio-style7 .tps-business-case-s-2:hover .inner .icon {
  bottom: -17px;
  left: -17px;
  opacity: 1;
}

.tp-portfolio-style8 .tps-business-case-s-2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
  width: 100%;
  transition: 1.3s;
}
.tp-portfolio-style8 .tps-business-case-s-2 .thumbnail {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.tp-portfolio-style8 .tps-business-case-s-2 .thumbnail img {
  overflow: hidden;
  transition: 1.3s;
  border-radius: 5px;
}
.tp-portfolio-style8 .tps-business-case-s-2 .thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryColor);
  background: #fff;
  z-index: 5;
  border-radius: 50%;
  transition: 0.3s;
}
.tp-portfolio-style8 .tps-business-case-s-2 .inner {
  position: absolute;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  bottom: -30px;
  left: 30px;
  right: 30px;
  display: block;
  width: 90%;
  padding: 33px;
  opacity: 0;
  transition: 1s;
}
.tp-portfolio-style8 .tps-business-case-s-2 .inner .icon {
  position: absolute;
  height: 58px;
  width: 58px;
  bottom: -48px;
  left: -36px;
  transition: 0.3s;
  opacity: 0;
}
.tp-portfolio-style8 .tps-business-case-s-2 .inner span {
  color: #5d666f;
  font-size: 16px;
  position: relative;
}
.tp-portfolio-style8 .tps-business-case-s-2 .inner .title {
  margin-bottom: 2px;
  transition: 0.3s;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1c2539;
}
.tp-portfolio-style8 .tps-business-case-s-2:hover .thumbnail img {
  transform: scale(1.15);
}
.tp-portfolio-style8 .tps-business-case-s-2:hover .thumbnail i {
  transform: translate(-50%, -50%) scale(1);
}
.tp-portfolio-style8 .tps-business-case-s-2:hover::after {
  top: -16%;
  right: -56%;
}
.tp-portfolio-style8 .tps-business-case-s-2:hover .inner span::after {
  bottom: -55px;
  left: -111px;
}

.swipper-bulet-pagination {
  margin-top: 100px;
}
.swipper-bulet-pagination .swiper-pagination-bullets {
  position: absolute;
  bottom: -108px;
  left: 47.5%;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #fff;
  padding: 5px 15px;
  border-radius: 33px;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #ededed;
  border-radius: 50%;
  opacity: 1;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 9px;
  height: 9px;
  background: var(--primaryColor);
  border-radius: 50%;
  opacity: 1;
}

.swiper-pagination-new.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin: auto;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-slider-nav-style-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.portfolio-slider-nav-style-1 .swiper-btn-prev,
.portfolio-slider-nav-style-1 .swiper-btn-next {
  background: transparent;
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.portfolio-slider-nav-style-1 .swiper-btn-prev:hover,
.portfolio-slider-nav-style-1 .swiper-btn-next:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}/*# sourceMappingURL=portfolio-slider.css.map */