/* main banner */

.pd-home-banner {
  background: var(--darkBlue);
  padding: 2rem 0;
  min-height: 920px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 10rem;
}

.pd-home-banner .pd-wawe {
  position: absolute;
  bottom: -6rem;
  left: 0;
  width: 100%;
  transform: rotate(deg);
}

.pd-home-banner .pd-wawe svg path {
  fill: #f7f9fd;
}

.pd-banner-inner-img {
  position: absolute;
  top: 0;
  width: 124%;
  right: 0;
  opacity: 0.4;
  animation: bannerRotate 800s linear infinite;
}

@keyframes bannerRotate {
  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.pd-home-banner h2 {
  color: var(--white);
  font-size: 58px;
  font-weight: normal;
  font-family: var(--fnt-main);
  margin-bottom: 2rem;
}

.pd-home-banner p {
  color: var(--white);
  font-family: var(--fnt-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 5px;
}

.pd-home-banner video {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.pd-home-banner .pd-banner-link {
  color: white;
  margin-top: 4.5rem;
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  position: relative;
  transition: all 0.5s;
  padding-left: 1rem;
}

.pd-home-banner .pd-banner-link::before {
  content: "";
  width: 70px;
  height: 70px;
  background: #3f569d;
  border-radius: 100%;
  left: -1rem;
  position: absolute;
  top: -1.2rem;
  z-index: -1;
  transition: all 0.8s;
  animation: pulse 2s infinite;
}

.pd-banner-cards {
  position: relative;
  z-index: 9;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pd-home-banner .pd-banner-link:hover::before {
  background: transparent;
  animation-play-state: running;
}

.pd-home-banner .pd-banner-link::after {
  content: "";
  width: 70px;
  height: 70px;
  background: transparent;
  border-radius: 100%;
  left: -1rem;
  position: absolute;
  top: -1.2rem;
  z-index: -1;
  transition: all 0.8s;
  transform: scale(0) translateX(-100%);
  transform-origin: right;
}

.pd-home-banner .pd-banner-link:hover::after {
  transform: scaleX(3.5);
  transform-origin: left;
  background: #5a5a5aa6;
  border-radius: 0;
  transition-behavior: allow-discrete;
  transition-delay: 0.25s;
}

.pd-home-banner img.pd-partners-img {
  width: 150px;
  display: block;
  margin-top: 3rem;
}

.pd-home-banner .pd-banner-link svg {
  margin-left: 1rem;
}

/* services banner - bottom */
.pd-services-cards-sec {
  margin: auto;
  margin-top: 0;
  padding-bottom: 6%;
  padding-top: 20px;
}

.pd-services-cards-sec .col-lg-3:nth-child(even) .pd-banner-card {
  transform: translateY(50px);
}

.pd-banner-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0px -1px 9px -6px #00000047;
  transition: all 0.5s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  margin-bottom: 30px;
}

.pd-banner-card a{
    margin-top: auto;
    margin-bottom: auto;
}

.pd-banner-card h3 {
  font-size: 18px;
  font-weight: normal;
  font-family: var(--fnt-main);
  text-align: center;
  max-width: 70%;
  margin: auto;
  line-height: 26px;
  transition: all 0.5s;
}

.pd-banner-card img {
  width: 50px;
  margin: auto;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0px 0px 0px #00000047);
  transition: all 0.5s;
}

.pd-banner-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0px 6px 23px -13px #00000047;
}

.pd-banner-card:hover img {
  filter: drop-shadow(0px 20px 14px #00000037);
  transform: translateY(-3px);
}

.pd-banner-card:hover h3 {
  color: var(--primaryColor);
}

/* services slider */

.pd-services-slider {
  padding: 5% 10%;
  padding-top: 2%;
}

.pd-services-slider h2 {
  margin-bottom: 3rem;
  font-size: 42px;
  font-weight: 400;
  color: var(--fntColor);
}

.pd-services-slider h5 {
  font-weight: 400;
  line-height: 42px;
  font-size: 30px;
  margin-top: 1rem;
}

.pd-services-slider .pd-serv-img {
  border-radius: 25px;
}

.pd-services-slider .slick-next {
  bottom: 0;
  top: auto;
  right: 10%;
}

.pd-services-slider .slick-prev {
  bottom: 0;
  top: auto;
  right: 12.5%;
  left: auto;
}

.pd-services-slider .slick-dots {
  bottom: 15px;
}

/* why chose us sec */

.pd-wcu-sec {
  padding: var(--paddingFull);
  background: var(--white);
  padding-top: 8%;
  position: relative;
}

.pd-wcu-sec .pd-wawe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
}

.pd-wcu-sec .pd-wawe svg path {
  fill: #f7f9fd;
}

.pd-wcu-item h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  transition-duration: 0.3s;
  margin-bottom: 24px;
}

.pd-wcu-item p {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  color: var(--paraGray);
  width: 75%;
  transition-duration: 0.3s;
}

.pd-wcu-sec .pd-sec-title {
  width: 80%;
  margin: auto;
  text-align: center !important;
  margin-bottom: 6rem;
  line-height: 80px;
}

.pd-wcu-item {
  border-top: 1px solid #cfdaec;
  padding: 20px;
  transition: all 0.5s;
  padding-bottom: 60px;
  cursor: pointer;
  z-index: 9;
  position: relative;
}

.pd-wcu-item .pd-rm-arrow {
  position: absolute;
  right: 0;
  top: 30px;
  width: 35px;
  height: 35px;
  transition: all 0.5s;
  transform: scale(0);
  transform-origin: right;
}

.pd-wcu-item:hover {
  /* background: white; */
  padding: 20px 20px 60px 40px;
}

.pd-wcu-item:hover .pd-rm-arrow {
  transform: scale(1) translateX(-25px);
}

.pd-inner-padding {
  padding: var(--innerPadding);
}

/* tech stack */
.pd-tech-stack {
  padding-top: var(--sectionPadding);
  padding-bottom: 8%;
  position: relative;
  overflow: visible;
}

.pd-tech-stack .pd-wawe {
  position: absolute;
  width: 100%;
  top: -18rem;
}

.pd-tech-stack .pd-wawe svg path {
  fill: #f7f9fd;
}

.pd-tech-stack .nav-link {
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  max-width: max-content;
  transition: all 0.5s;
  position: relative;
  padding-left: 0;
  margin: 10px 0;
  border-radius: 39px;
  /* box-shadow: inset -1px -3px 10px -3px #00000040; */
  padding: 7px 30px;
  border: 1px solid var(--fntColor);
  color: var(--fntColor);
}

.pd-tech-stack .nav-link::before {
  content: "";
  width: 50px;
  background: var(--primaryColor);
  height: 4px;
  left: 0;
  top: 48%;
  position: absolute;
  transform: scale(0);
  transform-origin: left;
  transition: all 0.5s;
  border-radius: 5px;
}

.pd-tech-stack .nav-pills .nav-link.active {
  padding-left: 60px;
  color: var(--white);
  box-shadow: 1px 3px 10px -7px #00000040;
  background: var(--buttonColor);
}

.pd-tech-stack .nav-pills .nav-link:hover {
  padding-left: 60px;
  color: var(--white);
  box-shadow: 1px 3px 10px -7px #00000040;
  background: var(--buttonColor);
}

/* .pd-tech-stack .nav-pills .nav-link.active::before {
  transform: scale(1);
} */

.pd-tech-stack-tab {
  border-top: 1px solid #7c217242;
  padding-top: 1rem;
}

.pd-tech-stack .container {
  position: relative;
  z-index: 9;
}

/* get in touch */

.pd-git-sec {
  padding-bottom: -5px;
  padding-top: var(--sectionPadding);
  background: var(--white);
  padding-top: 8%;
}

.pd-git-sec .container {
  position: relative;
  z-index: 9;
}

.pd-contact-form label {
  margin-left: 10px;
}

.pd-contact-form input {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  box-sizing: border-box;
  outline: 0;
  color: #444;
  background: #fff;
  transition: border-color 0.4s ease;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-color: #cfdaec;
  border-radius: 28px;
}

.pd-contact-form textarea {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  box-sizing: border-box;
  outline: 0;
  color: #444;
  background: #fff;
  transition: border-color 0.4s ease;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-color: #cfdaec;
  height: 150px;
  border-radius: 28px;
}

input[type="submit"] {
  background-color: var(--buttonColor);
  color: white;
  font-weight: 400;
  letter-spacing: 0.1px;
  font-size: 13px;
  padding: 16px 65px;
  width: auto;
  position: relative;
  transition: 0.5s;
  background-size: 200% 100%;
  background-image: linear-gradient(
    to right,
    transparent 50%,
    var(--primaryColor) 50%
  );
  display: inline-block;
  text-align: center;
  border-radius: 35px;
  width: 200px;
}

input[type="submit"]:hover {
  background-position: -100% 0;
}

/* tech stack tab */

.pd-tech-stack .nav-pills {
  flex: 0 0 40%;
  max-width: 40%;
}

.pd-tech-stack .tab-content {
  flex: 0 0 60%;
  max-width: 60%;
}

.pd-ts-inner-tab {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.pd-ts-t-nav-wrapper {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 5px;
}

.pd-tech-stack .pd-ts-t-nav {
  border: 1px solid #cfdaec61;
  transition-duration: 0.3s;
  height: 150px;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 15px;
  box-shadow: inset -1px -3px 10px -3px #0000001f;
  background: var(--white);
}

.pd-tech-stack .pd-ts-t-nav img {
  height: 100%;
  object-fit: contain;
}

.pd-ts-t-nav.active {
  background: var(--white);
  border-bottom: 1px solid var(--white);
  position: relative;
  border-color: var(--white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.pd-ts-t-nav.active::after {
  content: "";
  position: absolute;
  width: 100%;
  background: var(--white);
  bottom: -14px;
  left: 0;
  height: 20px;
  z-index: 999;
}

.pd-tech-stack .tab-pane h2 {
  color: #687281;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.pd-ts-inner-tab .pd-ts-tab-body {
  position: absolute;
  background: white;
  z-index: 9;
  display: none;
  animation: 0.5s fade-in;
  padding: 28px;
  right: min(3vw, 4px);
  width: 99%;
  margin-top: 10px;
  border-radius: 15px;
}

.pd-ts-inner-tab .pd-ts-tab-body .pd-tab-desc {
  color: #202020;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin: 0;
}

/* partners slider */

.pd-partners-slider {
  padding-top: 3%;
  padding-bottom: 5%;
  position: relative;
}

.pd-services-home {
  position: relative;
  overflow: hidden;
}

.pd-partners-slider::before {
  background: linear-gradient(90deg, #f7f9fd, transparent);
  width: 270px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}

.pd-partners-slider::after {
  background: linear-gradient(-90deg, #f7f9fd, transparent);
  width: 270px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}

.pd-partners-slider .slick-slide {
  padding: 25px;
  z-index: 9;
}

.pd-partners-slider .slick-slide img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.pd-git-sec .pd-wawe path {
  fill: var(--darkBlue);
}

.pd-footer-dark-box .custom-logo-link img {
  width: 300px;
  height: auto;
  margin-left: -10px;
}

.contact-us-img {
  width: 90%;
  margin-left: auto;
  display: block;
  border-radius: 20px;
}

.pd-mt-minus-7 {
  margin-top: -7rem;
}

.header .logo-wrap {
  opacity: 1;
}

.page-template-Home-page .header .logo-wrap {
  opacity: 1;
}

.pd-pad-bottom-full {
  padding-bottom: var(--paddingOneSidedFull);
}

.pd-pad-top-full {
  padding-top: var(--paddingOneSidedFull);
}

.not-found {
  font-size: 100px;
  font-weight: 800;
}

.error-msg {
  max-width: 50%;
  margin: auto;
}

.pd-search-btn {
  background: transparent;
  border: none;
  margin-left: 20px;
  margin-top: -3px;
}

.pd-search-page-items{
  padding-left: 0;
}

.pd-search-page-items li {
  padding: 10px;
  background: #f4f4f4;
  margin: 10px 0;
  list-style: none;
  font-size: 40px;
  line-height: 10px;
}

.page-template-technologies .pd-inner-banner .row {
  height: 595px;
}

.pd-banner-c-1 {
  animation: animateCard1 linear infinite;
  animation-duration: 10s;
  animation-delay: 2s;
}

.pd-banner-c-2 {
  animation: animateCard1 linear infinite;
  animation-duration: 15s;
  animation-delay: 1s;
}

.pd-banner-c-3 {
  animation: animateCard1 linear infinite;
  animation-duration: 9s;
  animation-delay: 4s;
}

.pd-banner-c-4 {
  animation: animateCard1 linear infinite;
  animation-duration: 16s;
  animation-delay: 4s;
}

@keyframes animateCard1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.page-template-why-choose-us h2.text-left {
  text-align: left !important;
  width: 100%;
  margin-bottom: 20px;
}

.pd-main-para-wcwg p {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  color: var(--paraGray);
  transition-duration: 0.3s;
}

.pd-main-para-wcwg p strong {
  font-weight: 500;
}

.pd-bg-def {
  background-color: #f7f9fd;
}

.pd-services-home .slick-slide {
  padding: 0 10px;
}
