input[type=submit] {
  cursor: pointer;
}

input[type=text]:focus-within,
input[type=email]:focus-within,
input[type=tel]:focus-within,
input[type=url]:focus-within,
input[type=number]:focus-within,
input[type=search]:focus-within,
input[type=password]:focus-within,
input[type=date]:focus-within {
  outline: none;
}

.animated-svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-transition: stroke-dashoffset 1.5s ease-out;
  transition: stroke-dashoffset 1.5s ease-out;
}

body {
  font-family: "Inter Tight", Sans-serif;
}

/* Codeefly Latest Posts */
.codeefly-recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 17px;
  margin-bottom: 20px;
}

@media (max-width: 450px) {
  .codeefly-recent-post-item {
    margin-bottom: 30px;
  }
}
.codeefly-recent-post-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .codeefly-recent-post-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
.codeefly-recent-post-item .codeefly-recent-post-item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.codeefly-recent-post-item .codeefly-recent-post-item-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.codeefly-recent-post-item .codeefly-recent-post-item-content p {
  font-size: 15px;
  line-height: 22px;
  color: var(--theme-1);
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  .codeefly-recent-post-item .codeefly-recent-post-item-content p {
    margin-bottom: 5px;
  }
}
.codeefly-recent-post-item .codeefly-recent-post-item-content h6 {
  font-size: 18px;
  line-height: 1.7;
}

.codeefly-recent-post-item .codeefly-recent-post-item-content h6 a:hover {
  color: var(--theme);
}

.codeefly-accordion-icon-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.eicon-codeefly-addons::before {
  content: url(../../assets/images/logo.png);
}

.icon-flex .elementor-image-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.codeefly-button {
  border-radius: 40px;
  padding: 10px 10px 10px 23px;
  background: -webkit-gradient(linear, left top, left bottom, from(#46e265), to(#12c5b3));
  background: linear-gradient(180deg, #46e265 0%, #12c5b3 100%);
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  color: #000;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}

.codeefly-button .btn-icon-left {
  position: absolute;
  left: 10px;
  top: 10px;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.codeefly-button .btn-icon-left,
.codeefly-button .btn-icon-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.codeefly-button .btn-text {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 500;
  font-size: 16px;
}

.codeefly-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#12c5b3), to(#46e265));
  background: linear-gradient(180deg, #12c5b3 0%, #46e265 100%);
}

.codeefly-button:hover .btn-icon-right {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.codeefly-button:hover .btn-icon-left {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.codeefly-button:hover .btn-text {
  -webkit-transform: translateX(48px);
  transform: translateX(48px);
}

.client-video-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 400px;
}

.client-video-item:hover .client-video-item-video {
  opacity: 1;
  z-index: 4;
}

.client-video-item-video {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.client-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.client-video-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: white;
  padding: 20px;
  width: 100%;
}

.client-video-text {
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
}

.client-video-item .client-video-content h3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.client-video-item .client-video-item-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item {
  padding: 50px 35px;
  border-radius: 10px;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.service-item .highlight-text {
  font-size: 22px;
  margin-top: 22px;
  margin-bottom: 32px;
}
.service-item ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}
.service-item ul i {
  margin-right: 10px;
  font-size: 16px;
}
.service-item .codeefly-button {
  background: var(--text-color);
  color: var(--btn-contrast-color);
  gap: 20px;
}
.service-item .codeefly-button .btn-icon-right,
.service-item .codeefly-button .btn-icon-left {
  background-color: var(--bg-color);
  color: light-dark(#000, #fff);
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* Responsive */
.client-logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.client-logo-marquee .marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 80px;
  -webkit-animation: scroll 6s linear infinite;
          animation: scroll 6s linear infinite;
  will-change: transform;
}
.client-logo-marquee:hover .marquee-track {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}
.client-logo-marquee .logo-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 180px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.client-logo-marquee .logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .client-logo-marquee .marquee-track {
    gap: 50px;
    -webkit-animation-duration: 15s;
            animation-duration: 15s;
  }
  .client-logo-marquee .logo-item {
    width: 120px;
    height: 60px;
  }
}
.client-logo-marquee.reverse .marquee-track {
  animation-direction: reverse !important;
}

.job-list .job-item {
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  background: #fff;
  background-clip: padding-box;
  border: solid 1px transparent;
}
.job-list .job-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: -webkit-gradient(linear, right top, left top, from(rgba(212, 212, 212, 0.3)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to left, rgba(212, 212, 212, 0.3), rgba(255, 255, 255, 0.7));
}
.job-list .job-item .job-item-top {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.job-list .job-item .job-item-top span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 30px;
}
.job-list .job-item .job-item-top span.open-job {
  background-color: #12c5b3;
  color: #fff;
}
.job-list .job-item .job-item-top span.close-job {
  background-color: #ff4d4d;
  color: #fff;
}
.job-list .job-item h6 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.job-list .job-item h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.job-list .job-item ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
  color: #4b5154;
}
.job-list .job-item ul li:not(:last-child) {
  position: relative;
  padding-right: 15px;
}
.job-list .job-item ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5px;
  height: 70%;
  background-color: rgba(75, 81, 84, 0.2);
}
.job-list .job-item ul li:nth-child(2)::after {
  content: "";
  width: 2px;
}
@media screen and (max-width: 500px) {
  .job-list .job-item ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.job-list .job-item .job-details-link {
  color: #0a0b0c;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.job-list .job-item .job-details-link span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.job-list .job-item .job-details-link:hover span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.portfolio-marquee .logo-item {
  position: relative;
  overflow: hidden;
}
.portfolio-marquee .logo-item-hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.portfolio-marquee .logo-item-hover .logo-item-hover-content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.portfolio-marquee .logo-item-hover .logo-item-hover-content svg {
  height: 30px;
  fill: #fff;
}
.portfolio-marquee .logo-item-link {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}
.portfolio-marquee .logo-item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.portfolio-marquee .logo-item:hover .logo-item-link::before {
  opacity: 0.7;
}
.portfolio-marquee .logo-item:hover .logo-item-hover {
  opacity: 1;
}

.portfolio-single-page-testimonial video {
  max-height: 400px;
}
.portfolio-single-page-testimonial .testimonial-text {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
  margin-bottom: 80px;
}
.portfolio-single-page-testimonial .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.portfolio-single-page-testimonial .testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.portfolio-single-page-testimonial .testimonial-author .testimonial-author-content .testimonial-author-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 32px;
}
.portfolio-single-page-testimonial .testimonial-author .testimonial-author-content .testimonial-author-designation {
  font-size: 16px;
  color: #4b5154;
  margin-bottom: 0;
}
.portfolio-single-page-testimonial.testimonial-type-video video {
  max-height: 400px;
}
.portfolio-single-page-testimonial.testimonial-type-text {
  background: #efefef;
  padding: 50px;
  border-radius: 10px;
}

.service-items-for-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.service-items-for-menu .item {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-items-for-menu .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.service-items-for-menu .item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: inherit;
  margin: 0;
  color: #4b5154;
  font-size: 18px;
  line-height: 28px;
}
.service-items-for-menu .item-link p {
  margin: 0;
}
.service-items-for-menu .item-link img {
  width: 30px;
}