@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@600;700&family=Livvic:wght@100;200;300;400;500;600;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

/* font-family: 'Antonio', sans-serif;
font-family: 'Livvic', sans-serif;
font-family: 'Roboto', sans-serif; */
/* var(--blue) */
:root {
  --blue: #7f7a77;
  --green: #ff6600;
}

body {
  background-color: #000;
  color: white;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #ffffff;
  text-decoration: none;
}

/* ======================================== HOME PAGE START ======================================== */

/* home-banner-sec start */
.home-banner-bg {
  background: url("../images/home-lines-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

.banner-title {
  font-weight: 500;
  font-size: 41px;
  line-height: 1.3;
}

.home-banner-sec .banner-title {
  font-size: 45px;
}

.banner-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #a0a0a0;
}

.home-banner-sec .banner-p {
  width: 50%;
}

.banner-btn {
  font-family: "Livvic";
  text-transform: uppercase;
  letter-spacing: 0.3px;
  /* font-weight: 500; */
  font-size: 15px;
  color: #ffffff !important;
  padding: 12px 22px;
  border: 1px solid #ffffff;
  border-radius: 30px;
}

.banner-badge-carousel {
  position: relative;
}

.banner-badge-carousel::before {
  content: "";
  width: 35px;
  height: 100%;
  background: linear-gradient(to right, #000000, #00000000);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-badge-carousel::after {
  content: "";
  width: 35px;
  height: 100%;
  background: linear-gradient(to left, #000000, #00000000);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.banner-badge-div {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 40px 15px 20px;
  border-radius: 10px;
  height: 280px;
  /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
  border: 2px solid #000;
  position: relative;
}

.banner-badge-div:hover {
  /* border-image: linear-gradient(var(--blue), var(--green)) 30;
  border-width: 2px;
  border-style: solid; */
  background: linear-gradient(137deg, #262626, #121212) padding-box,
    linear-gradient(130deg, #FFB648, #ff6600) border-box;
  /* border-radius: 10px; */
  border: 2px solid transparent;
}

/* .banner-badge-div .truefirm-widget iframe {
    width: 156px !important;
    height: 110px !important;
    border-radius: 5px !important;
    margin: auto;
} */

.banner-badge-div img {
  width: auto !important;
  height: 110px !important;
  margin: auto;
}

.home-banner-col {
  position: relative;
}

.home-banner-col .hire-banner-video {
  filter: saturate(1.2);
}

.clients-ball {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(71.61% 71.61% at 44.19% 28.39%,
      #4390c2 0%,
      #0a5180 40.42%,
      #001e32 100%);
  box-shadow: -5px 5px 33.3333px rgba(0, 0, 0, 0.15),
    inset 0px 0px 33.3333px var(--blue);
  animation: clients 4s linear infinite alternate;

  position: absolute;
  top: 5%;
  left: 20%;
  transform: translate(0, 0);
}

@keyframes clients {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-25%, 10%);
  }
}

.clients-ball h3 {
  font-size: 32px;
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 2px 2px var(--blue);
}

.clients-ball p,
.projects-ball p,
.companies-ball p {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 15px;
  text-shadow: 1px 1px var(--blue);
}

.projects-ball {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(71.61% 71.61% at 44.19% 28.39%,
      #95f374 0%,
      #60b044 54.31%,
      #257409 100%);
  /* box-shadow: -5px 5px 33.3333px rgba(0, 0, 0, 0.15), inset 0px 0px 33.3333px var(--green); */
  box-shadow: -5px 5px 33px rgba(0, 0, 0, 0.15);
  animation: projects 4s linear infinite alternate;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -40%);
}

@keyframes projects {
  0% {
    transform: translate(-100%, -40%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.projects-ball h3,
.companies-ball h3 {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 2px 2px #3d931e;
}

.projects-ball p,
.companies-ball p {
  text-shadow: 1px 1px #3d931e;
}

.companies-ball {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(71.61% 71.61% at 44.19% 28.39%,
      #95f374 0%,
      #60b044 54.31%,
      #257409 100%);
  box-shadow: -5px 5px 33.3333px rgba(0, 0, 0, 0.15);
  animation: companies 4s linear infinite alternate;

  position: absolute;
  top: 25%;
  right: 0%;
  transform: translate(0, 0);
}

@keyframes companies {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-15%, 80%);
  }
}

.companies-ball h3 {
  font-size: 35px;
}

/* home-banner-sec end */

/* what-we-do-sec start */

.main-title {
  font-family: "Livvic";
  font-weight: 700;
  font-size: 55px;
  text-align: center;
  text-transform: capitalize;
}

.main-title span {
   color:#ff6600;
  /* color: var(--blue); */
}

.what-we-do-sec .nav-tabs {
  border-bottom: none;
  display: block;
}

.what-we-do-sec .nav-tabs .nav-link {
  border: 1px solid #303030;
  border-radius: 10px;
  background: linear-gradient(137deg, #262626, #121212);
  color: #ffffff;
  margin: 60px 0;
  width: 100%;
  padding: 35px 30px;
  position: relative;
  z-index: 1;
}

.what-we-do-sec .nav-tabs .nav-item.show .nav-link,
.what-we-do-sec .nav-tabs .nav-link.active {
  background: linear-gradient(105.19deg,
      #FFB648 -44.02%,
      var(--green) 138.55%);
  color: #ffffff;
  border: none;
  filter: saturate(1.2);
}

.we-do-titles {
  width: 32%;
}

.we-do-title-img {
  width: 30%;
}

.we-do-title {
  width: 70%;
}

.we-do-content {
  background: #111;
  border-radius: 10px;
  align-self: center;
  position: absolute;
  right: 0;
  width: 73%;
  padding: 45px 130px 50px;
}

.we-do-content .tab-content {
  width: 70%;
}

.we-do-content h4 {
  font-weight: 500;
  font-size: 32px;
  /* transform: translateY(50px);
    transition: all 2s; */
}

.we-do-content p {
  color: #a0a0a0;
}

.we-do-icon {
  text-align: center;
  font-size: 14px;
  /* margin: 0px 15px; */
  width: 25%;
}

.we-do-icon img {
  width: auto !important;
  margin: 10px auto;
}

.we-do-btn {
  font-family: "Livvic";
  font-weight: 500;
  font-size: 15px;
  color: #ffffff !important;
  padding: 7px 30px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin-top: 20px;
}

.we-do-consult-btn {
  font-family: "Livvic";
  font-weight: 500;
  font-size: 18px;
  color: #ffffff !important;
  background-color: var(--green);
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.testimonial-carousel .owl-nav,
.work-carousel .owl-nav,
.celebration-carousel .owl-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 20px;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next,
.work-carousel .owl-nav button.owl-prev,
.work-carousel .owl-nav button.owl-next,
.celebration-carousel .owl-nav button.owl-prev,
.celebration-carousel .owl-nav button.owl-next {
  border: 1px solid #ffffff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  margin: 20px 10px;
}

/* what-we-do-sec end */

/* work-process-sec start */
.work-process-sec {
  position: relative;
}

.work-process-bg {
  position: absolute;
  top: -100px;
  z-index: -2;
  transform: rotateY(180deg);
}

.work-progress-row::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../images/work-progress-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  background-size: 85%;
}

.work-progress-div {
  padding: 100px 10px;
  width: 180px;
  text-align: center;
  position: relative;
}

.work-progress-p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.work-progress-div:nth-child(2n + 1) .work-progress-p {
  top: 0;
}

.work-progress-div:nth-child(2n + 2) .work-progress-p {
  bottom: 0;
}

.work-progress-img {
  background: linear-gradient(137deg, #262626, #121212);
  width: 125px;
  height: 125px;
  margin: auto;
  text-align: center;
  line-height: 125px;
  border-radius: 50%;
  position: relative;
}

.work-progress-img img {
  max-width: 67px;
}

.work-progress-img::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  background-color: gray;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.work-progress-img::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: gray;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.work-progress-div:nth-child(2n + 1) .work-progress-img::before,
.work-progress-div:nth-child(2n + 1) .work-progress-img::after {
  top: -40px;
}

.work-progress-div:nth-child(2n + 2) .work-progress-img::before,
.work-progress-div:nth-child(2n + 2) .work-progress-img::after {
  bottom: -40px;
}

/* .work-progress-div{
    background: linear-gradient(137deg, #262626, #121212);
    border-radius: 0px 40px 40px 40px;
    padding: 50px 20px 25px 35px;
    margin: 0 20px;
    position: relative;
    height: 100%;
} */
/* .work-progress-div .work-progress-number{
    font-family: 'Antonio', sans-serif;
    font-weight: 600;
    font-size: 115px;
    position: absolute;
    left: -25px;
    top: 20px;

    background: -webkit-linear-gradient( var(--blue), var(--green) );
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #000000e0;
} */
/* .work-progress-div h4{
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.work-progress-div h4::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    margin-top: 3px;
}
.work-progress-div p{
    font-size: 15px;
    text-align: justify;
    color: #a0a0a0;
} */
/* work-process-sec end */

/* it-services-sec start */
.it-services-p {
  font-size: 18px;
  line-height: 1.3;
  color: #a0a0a0;
  margin-bottom: 0;
}

.it-services-icon-p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0;
}

/* it-services-sec end */

/* testimonial-sec start */
.testimonial-sec {
  position: relative;
}

.testimonial-bg {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: -2;
}

.testi-desc {
  font-size: 18px;
  line-height: 1.3;
  color: #a0a0a0;
  margin-bottom: 40px;
}

.testi-img {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 90px !important;
  margin-right: 20px;
}

.testi-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.testi-subtitle {
  color: #a0a0a0;
  margin-bottom: 0;
}

/* testimonial-sec end */

/* clients-sec start */
.clients-div {
  display: flex;
  align-items: center;
  background: linear-gradient(107deg, #262626 0%, #121212 100%);
  box-shadow: inset 0px -6px 0px rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  height: 180px;
  transition: all 0.5s;
}

.clients-div:hover {
  box-shadow: none;
}

.clients-div img {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

/* .clients-bw-img{
    opacity: 1;
} */
.clients-color-img {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clients-div:hover .clients-color-img {
  opacity: 1;
}

.clients-div:hover .clients-bw-img {
  opacity: 0;
}

/* clients-sec end */

/* work-sec start */
.work-div .work-img img {
  width: 85% !important;
  height: 344px;
  object-fit: cover;
  object-position: top;
  margin: auto;
  border-radius: 8px;
  transition: all 0.5s;
}

.work-div:hover .work-img img {
  width: 100% !important;
  /* transform: scale(1.1); */
}

.work-desc {
  background: linear-gradient(#262626 -25.12%, #121212 146.09%);
  border-radius: 8px;
  padding: 220px 20px 20px;
  margin-top: -200px;
}

.work-title {
  margin-bottom: 5px;
  font-size: 19px;
}

.work-subtitle {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--green);
}

/* work-sec end */

/* contact-form-sec start */
.contact-form-row {
  width: 85%;
  margin: auto;
  background: linear-gradient(72.42deg, #262626 18.81%, #161616 108.63%);
  border-radius: 18px;
}

.contact-form-row img {
  height: 100%;
  object-fit: cover;
}

.contact-form-col {
  padding: 20px 50px 20px 35px;
}

.contact-form-title {
  font-family: "Livvic", sans-serif;
  font-weight: 700;
  font-size: 29px;
}

.contact-form-subtitle {
  font-size: 18px;
  color: #a0a0a0;
}

.contact-form input,
.contact-form textarea {
  font-size: 18px;
  padding: 10px 22px;
  background-color: #161616 !important;
  color: #ffffff;
  border: none;
  border-radius: 10px;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  color: #ffffff;
  box-shadow: 0 0 10px #262626;
}

.contact-form-submit {
  font-family: "Livvic", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #ffffff;
  border-color: transparent;
  background-color: var(--green);
  box-shadow: 4px 4px 15px rgba(99, 183, 70, 0.25);
  padding: 12px 60px;
}

.contact-form-submit:hover {
  background-color: #161616;
  border: 1px solid var(--green);
  color: var(--green);
}

/* contact-form-sec end */

/* ======================================== HOME PAGE END ======================================== */

/* ======================================== SERVICES PAGE START ======================================== */

.service-main-title {
  font-family: "Livvic";
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  text-transform: capitalize;
}

.service-main-title span {
    color:#ff6600;
  /*color: var(--blue);*/
}

/* service-banner-sec start */

.service-banner-title {
  font-size: 43px;
}

.service-banner-p {
  font-size: 19px;
  line-height: 1.3;
  color: #a0a0a0;
}

.service-banner-ul {
  font-size: 18px;
  columns: 2;
  list-style-type: none;
  padding-left: 0;
}

.service-banner-ul.service-banner-col-1 {
  columns: 1;
}

.service-banner-ul li {
  position: relative;
  margin-bottom: 9px;
  color: #a0a0a0;
  text-align: left;
  display: flex;
}

.service-li-mark {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--green);
  transform: rotate(45deg);
  margin-right: 10px;
  margin-top: 7px;
}

.service-li {
  max-width: calc(100% - 25px);
}

.service-li a {
  color: #a0a0a0;
}

/* service-banner-sec end */

/* service-expertise-sec start */
.expertise-div {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 55px 30px 20px;
  border-radius: 10px;
  height: 100%;
  position: relative;
}

/* .expertise-div:hover:after{
    content: '';
    display: block;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(0deg, var(--green), var(--blue));
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: bgChange 1s ease-in-out infinite;
} */
/* @keyframes bgChange {
    0%   {
        background: linear-gradient(0deg, var(--green), var(--blue));
    }
    25%  {
        background: linear-gradient(90deg, var(--green), var(--blue));
    }
    50%  {
        background: linear-gradient(180deg, var(--green), var(--blue));
    }
    75%  {
        background: linear-gradient(270deg, var(--green), var(--blue));
    }
    100% {
        background: linear-gradient(360deg, var(--green), var(--blue));
    }
} */
.expertise-div img {
  width: 90px;
  margin-bottom: 30px;
}

.expertise-title {
  font-size: 28px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.expertise-p {
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.3;
}

/* service-expertise-sec end */

/* service-choose-sec start */
.service-choose-sec p,
.service-choose-sec ul,
.service-seo-implement-sec p,
.service-seo-implement-sec ul {
  color: #a0a0a0;
  font-size: 18px;
}

/* service-choose-sec end */

/* service-app-dev-sec start */
.app-dev-div {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 55px 20px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.app-dev-div img {
  /* width: 80px; */
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}

.app-dev-title {
  font-size: 22px;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
}

.app-dev-p {
  font-size: 17px;
  color: #a0a0a0;
  position: relative;
  z-index: 0;
}

.app-dev-number {
  font-family: "Antonio", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: #2a2a2a;
  position: absolute;
  left: -15px;
  top: 20px;
}

/* service-app-dev-sec end */

/* service-industry-solution-sec start */
.ind-solution-div {
  width: 20%;
  /* padding-left: 30px; */
  text-align: center;
}

.ind-solution-img {
  background: linear-gradient(137deg, #262626, #121212);
  display: inline-block;
  padding: 30px;
  border-radius: 0 10px 10px 0;
  border-left: 4px solid transparent;
  border-image: linear-gradient(#FFB648 30%, #ff6600);
  border-image-slice: 1;
  margin-bottom: 20px;
}

.ind-solution-img img {
  width: 60px;
}

.ind-solution-p {
  font-size: 20px;
  width: 63%;
  margin-left: 26%;
  text-align: left;
}

/* service-industry-solution-sec end */

/* service-faq-sec start */
.faqAccordion .accordion-item {
  background-color: transparent;
  border: 0;
}

.faqAccordion .accordion-button {
  font-size: 18px;
  border-radius: 10px !important;
  background-color: #191919;
  color: #ffffff;
  box-shadow: none;
  margin-bottom: 20px;
  padding: 20px;
}

.faqAccordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faqAccordion .accordion-button:not(.collapsed) {
  color: var(--green);
  margin-bottom: 0px;
  border-radius: 10px 10px 0px 0px !important;
  border-bottom: 1px solid #303030;
}

.faqAccordion .accordion-body {
  font-size: 18px;
  border-radius: 0 0 10px 10px;
  background-color: #191919;
  color: #c7c7c7;
  box-shadow: none;
  margin-bottom: 20px;
  padding: 20px;
}

/* service-faq-sec end */

/* ======================================== SERVICES PAGE END ======================================== */

/* ======================================== PORTFOLIO PAGE START ======================================== */

/* portfolio-banner-sec start */

.portfolio-banner-title {
  font-family: "Livvic", sans-serif;
  font-size: 48px;
}

.portfolio-banner-title span {
  color: var(--blue);
  font-size: 42px;
  display: block;
  /* padding: 50px; */
}

.portfolio-banner-p {
  color: #a0a0a0;
  font-size: 20px;
  line-height: 1.3;
}

/* portfolio-banner-sec end */

/* portfolio-sec start */

.portfolio-tabs .nav-item {
  background: linear-gradient(137deg, #262626, #121212);
  transition: all 0.5s ease;
}

.portfolio-tabs .nav-item .nav-link,
.portfolio-tabs .nav-item.show .nav-link,
.portfolio-tabs .nav-link.active {
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  padding: 12px 30px;
  text-transform: uppercase;
  border: none;
  border-left: 3px solid transparent;
  border-image: linear-gradient(105.34deg, #ff6600 -48.72%, #FFB648 135.12%);
  border-image-slice: 1;
}

.portfolio-tabs .nav-item:hover .nav-link,
.portfolio-tabs .nav-item.show .nav-link,
.portfolio-tabs .nav-link.active {
  background: linear-gradient(331.34deg, #ff6600 -48.72%, #FFB648 135.12%);
}

.portfolio-tabs .nav-item.show .nav-link,
.portfolio-tabs .nav-link.active {
  border-image: none;
}

.portfolio-img-div {
  position: relative;
  height: 100%;
}

.portfolio-img {
  /* background: url('../images/portfolio/Fuelzi.webp'); */
  width: 100%;
  height: calc(100% + 75px);
  max-width: 460px;
  margin: auto;
  transform: translateY(-37px);
  background-size: 100% !important;
  background-position: top !important;
  transition: transform 0.5s linear;
  border: 20px solid transparent;
  border-image: linear-gradient(318.34deg, #ff6600 -48.72%, #FFB648 135.12%);
  border-image-slice: 1;
}

.portfolio-div:hover .portfolio-img {
  transform: translateY(-37px) rotate(-4deg);
}

.portfolio-div {
  background: linear-gradient(137deg, #262626, #121212);
  border-radius: 10px;
  height: 320px;
  align-items: center;
  margin: 80px 0;
}

.portfolio-content-p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 300;
}

.modal.show .modal-dialog.portfolio-dialog {
  max-width: 1320px;
  /* transform: translateY(-50%);
    top: 50%; */
  margin: auto;
}

.modal-dialog.portfolio-dialog .modal-content {
  background: linear-gradient(137.08deg, #262626 0%, #161616 100%);
  padding: 50px;
  border-radius: 0;
  border: none;
}

.modal-dialog.portfolio-dialog .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  filter: brightness(0) invert(1);
  opacity: 1;
  background-color: #ffffff26;
  padding: 14px;
  border-radius: 50%;
}

.modal-dialog.portfolio-dialog .portfolio-content-title {
  font-family: "Livvic", sans-serif;
  font-weight: 600;
}

.portfolio-tech span {
  display: inline-block;
  color: #a0a0a0;
  border: 1px solid #a0a0a0;
  padding: 8px 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.portfolio-popup-img-div {
  overflow: hidden;
}

.portfolio-flip-div {
  position: relative;
  transition: transform 1s linear;
}

.portfolio-popup-img-div:hover .portfolio-flip-div {
  transform: rotateY(180deg);
}

.portfolio-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  z-index: -1;

  width: 100%;
  height: 100%;
  background-size: 100% !important;
  background-position: top !important;
  transition: all 0s ease 0.5s, background 5s linear 1s;
}

.portfolio-popup-img-div:hover .portfolio-flip-back {
  /* opacity: 0; */
  z-index: 1;
  background-position: bottom !important;
}

.portfolio-view-more-btn {
  font-family: "Livvic", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #ffffff;
  border-color: transparent;
  background-color: var(--green);
  box-shadow: 4px 4px 15px rgba(99, 183, 70, 0.25);
  padding: 12px 60px;
  display: block;
  margin: 20px auto;
}

.portfolio-view-more-btn:hover {
  background-color: #161616;
  border: 1px solid var(--green);
  color: var(--green);
}

/* portfolio-sec end */

/* ======================================== PORTFOLIO PAGE END ======================================== */

/* ======================================== HIRE US PAGE START ======================================== */

/* hire-developer-sec start */
.hire-developer-div {
  display: flex;
  align-items: center;
  background: linear-gradient(137deg, #262626, #121212);
  border-radius: 10px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100%;
}

.hire-developer-img {
  width: 30%;
  /* padding: 35px 0; */
}

.hire-developer-circle {
  width: 30%;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(137deg, #262626, #121212);
  z-index: -1;
  border-right: 2px solid #727272;
  border-radius: 0 50% 50% 0;
}

.hire-full-stack-row .hire-developer-circle {
  height: 230px;
}

.hire-developer-img img {
  width: 80px;
  display: block;
  margin: auto;
}

.hire-developer-content {
  padding: 30px;
}

.hire-developer-content h3 {
  margin-bottom: 15px;
  text-transform: capitalize;
}

.hire-developer-content h3 span {
  font-size: 32px;
  font-weight: bolder;
  color: var(--blue);
  display: block;
}

/* hire-developer-sec end */

/* dedicated-deveoper-sec start */
.dedicated-deveoper-div {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}

.dedicated-developer-bg {
  position: absolute;
  right: 0;
  bottom: 2px;
  mix-blend-mode: multiply;
  z-index: -1;
  height: 98%;
  object-fit: cover;
}

.dedicated-deveoper-div h3 {
  font-size: 32px;
  color: var(--green);
}

.dedicated-deveoper-div p {
  color: #a0a0a0;
  font-size: 18px;
}

/* dedicated-deveoper-sec end */

/* ======================================== HIRE US PAGE END ======================================== */

/* ======================================== HIRE DEVELOPERS PAGE START ======================================== */

/* hireus-banner-sec start */
.hire-banner-video {
  display: block;
  margin: auto;
  margin-top: -100px;
  width: 100%;
}

.hire-banner-video2 {
  display: block;
  margin: auto;
  width: 90%;
}

/* hireus-banner-sec end */

/* hire-time-sec start */
.hire-time-div {
  background: linear-gradient(137deg, #262626, #121212);
  text-align: center;
  border-radius: 20px;
}

.hire-time-title {
  background: linear-gradient(99deg, #262626, #121212);
  padding: 30px 0;
  border-bottom: 2px solid #727272;
  border-radius: 20px 20px 25px 25px;
}

.hire-time-title h2 {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 0;
}

.hire-time-content {
  padding: 30px;
}

.hire-time-subtitle {
  margin-bottom: 0px;
  font-size: 18px;
  color: #a0a0a0;
}

.hire-time-p {
  font-size: 20px;
}

.hire-time-btn {
  color: #ffffff;
  background-color: var(--green);
  border-radius: 40px;
  padding: 8px 20px;
}

.hire-time-btn:hover {
  color: var(--green);
  border-color: var(--green);
}

/* hire-time-sec end */

/* hiring-steps-sec start */
.hiring-steps-bg {
  position: absolute;
  top: -5px;
  z-index: -1;
}

.hiring-steps-bg img {
  width: 89%;
  display: block;
  margin: auto;
}

.hiring-steps-div {
  text-align: center;
}

.hiring-steps-img {
  width: 190px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #262626;
  margin: 40px auto 80px;
  border-radius: 50%;
  position: relative;
}

.hiring-steps-img:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #262626;
  border-radius: 30px;
  position: absolute;
  left: 45%;
  transform: translateY(-50%);
}

.hiring-steps-col:nth-child(2n + 1) .hiring-steps-img:before {
  bottom: -63px;
}

.hiring-steps-col:nth-child(2n + 2) .hiring-steps-img:before {
  top: -45px;
}

.hiring-steps-div:hover .hiring-steps-img:before {
  background: var(--green);
}

.hiring-steps-div:hover .hiring-steps-img {
  background: linear-gradient(137deg, #262626, #121212);
  border-color: #000;
}

.hiring-steps-img img {
  max-width: 90px;
}

.hiring-steps-content p {
  font-size: 18px;
  color: #a0a0a0;
}

/* hiring-steps-sec end */

/* design-tools-sec start */
.design-tools-sec p {
  font-size: 20px;
  margin-top: 15px;
}

.design-tools-sec img {
  width: 60%;
}

/* design-tools-sec end */

/* ======================================== HIRE DEVELOPERS PAGE END ======================================== */

/* ======================================== ABOUT US PAGE START ======================================== */

/* aboutus-banner-sec start */
.about-banner-img {
  -webkit-transform: perspective(0) rotateX(0) rotateY(0);
  transform: perspective(0) rotateX(0) rotateY(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.about-banner-img1 {
  width: 55%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about-banner-img2 {
  width: 55%;
  position: absolute;
  top: 80px;
  left: 10px;
}

/* aboutus-banner-sec end */

/* core-value-sec start */
.core-val-div {
  background: linear-gradient(137deg, #262626, #121212);
  border-radius: 10px;
  height: 100%;
}

.core-val-div p {
  color: #a0a0a0;
  font-size: 18px;
}

/* core-value-sec end */

/* facts-figures-sec start */
.facts-figures-div {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10px 30px;
  background: radial-gradient(71.61% 71.61% at 44.19% 28.39%,
      #f3b074 0%,
      #ff8c3f 54.31%,
      #ff6600 100%);
  box-shadow: -5px 5px 33.3333px rgba(0, 0, 0, 0.15),
    inset 0px 0px 33.3333px #ff6600;
}

.facts-figures-div:hover {
  background: none;
}

.facts-figures-div h3 {
  font-size: 42px;
  text-shadow: 2px 2px 1px var(--green);
}

.facts-figures-div p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 1px 1px 1px var(--green);
}

.facts-figures-div:hover h3,
.facts-figures-div:hover p {
  text-shadow: none;
}

/* facts-figures-sec end */

/* celebration-sec start */
.celebration-div {
  /* width: 100%; */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.celebration-div img {
  height: 300px;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 20px;
  transition: all 1s;
}

.celebration-div:hover img {
  transform: scale(1.2);
}

.celebration-overlay {
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000aa;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.celebration-overlay p {
  opacity: 0.8;
}

/* celebration-sec end */

/* ======================================== ABOUT US PAGE END ======================================== */

/* ======================================== TESTIMONIALS PAGE START ======================================== */

.testimonial-page-sec .testi-div::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: radial-gradient(50% 50% at 50% 50%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
  margin: 40px 0;
}

/* ======================================== TESTIMONIALS PAGE END ======================================== */

/* ======================================== CONTACT PAGE START ======================================== */

.contact-form-sec.contact-page .contact-form-title {
  font-size: 38px;
}

.contact-form-sec.contact-page .contact-form-subtitle {
  font-size: 20px;
}

.contact-form-sec.contact-page .contact-form-col {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 30px;
  border-radius: 15px;
}

.contact-flag {
  width: 20px;
  border-radius: 20px;
  margin-right: 10px;
}

.contact-h3 {
  color: var(--green);
}

.contact-p a {
  color: #ffffff;
}

.contact-form-icons {
  background-color: var(--green);
  width: 70px;
  height: 70px;
  font-size: 25px;
  line-height: 68px;
  text-align: center;
  border-radius: 5px;
}

.mobile-icon {
  display: inline-block;
  transform: rotate(-45deg);
}

.contact-map-sec iframe {
  border-radius: 10px;
}

/* ======================================== CONTACT PAGE END ======================================== */

/* ======================================== HIRING PAGE START ======================================== */

/* work-at-company-sec start */
.work-at-company-img {
  width: 100px;
  height: 100px;
  background: linear-gradient(137deg, #262626, #121212);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.work-at-company-img img {
  max-width: 50px;
}

.work-at-company-content {
  width: 73%;
}

.work-at-company-div h3 {
  font-size: 25px;
}

.work-at-company-div p {
  color: #a0a0a0;
  margin-bottom: 0;
}

/* work-at-company-sec end */

/* current-openings-sec start */
.current-openings-div {
  background: linear-gradient(137deg, #262626, #121212);
  padding: 40px 30px;
  height: 100%;
  border-radius: 10px;
}

.current-openings-div img {
  max-width: 80px;
  margin-bottom: 30px;
}

.current-openings-div p {
  color: #a0a0a0;
  font-size: 18px;
  margin-bottom: 5px;
}

/* current-openings-sec end */

/* hiring-form-sec start */

.hiring-form-title {
  font-size: 38px;
}

.hiring-form-title span {
  color: var(--blue);
  font-weight: bold;
}

.hiring-form label {
  color: #a0a0a0;
  font-size: 18px;
}

.hiring-form input,
.hiring-form input:focus,
.hiring-form select,
.hiring-form textarea {
  background: #191919 !important;
  border: none;
  padding: 15px 20px;
  color: #757575;
  box-shadow: none !important;
}

.hiring-form input::placeholder,
.hiring-form textarea::placeholder {
  color: #757575;
}

.hiring-form [type="file"]::-webkit-file-upload-button {
  background: #191919 !important;
  border: 1px solid #555555;
  border-radius: 4px;
  color: #757575;
}

/* hiring-form-sec end */

/* ======================================== HIRING PAGE END ======================================== */

/* ======================================== JOURNEY PAGE START ======================================== */

.journey-img-border {
  width: 75%;
  height: 75%;
  background: linear-gradient(105deg, #FFB648 -40.04%, #ff6600 133.81%);
  position: absolute;
  right: -10px;
  bottom: -11px;
  z-index: -1;
}

.journey-title {
  position: relative;
  padding-left: 15px;
  font-size: 35px;
}

.journey-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.journey-p {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.3;
}

/* ======================================== JOURNEY PAGE END ======================================== */
/* ======================================== OUR TEAM PAGE SATRT ======================================== */
.ourteam-name {
  font-family: Poppins, sans-serif;
  color: #0a5180;
  font-weight: 600;
  margin-top: 20px;
  border: 2px;

  font-size: 22px;
  line-height: 32px;
}

p.founder {
  margin-bottom: 70px;
  color: #a0a0a0;
  font-size: 17px;
}

.social-icon {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.w-100 {
  /*border-radius: 8px;*/
  overflow: hidden;
}

.leadership_linkedin {
  padding-top: 20px;
  font-size: 25px;
  /* color: #0a66c2; */
}

#overflowTest {
  /* background-color: coral; */
  /* width: 200px; */
  height: 100px;
  border: 1px solid black;
  overflow: auto;
  color: #6a6a8e;
}

/* ======================================== OUR TEAM PAGE END ======================================== */