@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Mukta:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  font-family: "Mukta", sans-serif;
  color: var(--white);
  list-style: none;
  scroll-behavior: smooth;
  transition: background-color 1s;
}

.cookiePop {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999999;
  line-height: 20px;
  font-size: 14px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease;
  color: #fff;
  padding: 2rem 10%;
  display: none;
}

.cookiePop.hide {
  display: block;
}

.cookieBtn {
  background: #ffffff;
  color: #000;
  border-radius: 5px;
  padding: 10px 20px;
  border: none;
}

.mainbtn {
  background-color: #c163ff;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
  outline: none;
  border: none;
  transition: 0.3s ease;
}

.mainbtn:hover {
  background-color: var(--clr-purple);
  color: #fff;
}

p {
  margin: 0;
}

.background {
  background-color: var(--background) !important;
}

.fa-brands {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease all;
}

.fa-brands:hover {
  color: #b3b0b0;
}

span {
  color: rgb(160, 51, 193);
}

.shape-fill {
  fill: var(--background) !important;
}

/* error 404 */

.error404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 29vh;
}

.error404 img {
  width: 40px;
}

.error404 h1 {
  font-size: 2rem;
}

/* navbar */
.navbar {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  padding: 1rem 3rem;
  justify-content: space-between;
  background: var(--background);
}

nav {
  display: flex;
  align-items: center;
  opacity: 1;
}

nav a {
  padding: 5px 15px;
  transition: 0.3s ease-in all;
  color: var(--clr-light);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid rgb(140, 72, 167);
  color: var(--clr-light);
}

.navbarlogo {
  height: 100px;
  width: 30%;
  /* background-color: #3cb878; */
}
.barsw {
  display: none;
  color: var(--clr-white);
}

.barsw i {
  font-size: 2rem;
}

.sunMode {
  filter: contrast(0.1) brightness(2);
  cursor: pointer;
  width: 30px;
  margin-right: 1rem;
}

.sunMode.active {
  filter: contrast(1) brightness(1);
}

.moonMode {
  cursor: pointer;
  width: 30px;
  margin-right: 1rem;
  border: none;
  background: none;
}
.moonMode i {
  font-size: 1.5rem;
}

/* homepagew */

.homepagew {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.homepagew.active {
  opacity: 0.4;
}

.homecontent {
  padding: 3rem;
  z-index: 2;
}

.homecontent h1 {
  /* color: #fff; */
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
}

.homecontent img {
  width: 350px;
}

.homeanime {
  position: absolute;
  background-color: #981b96;
  height: 90%;
  width: 60%;
  z-index: 1;
  border-radius: 105% 0px 0px 40%;
  right: 0;
}

/* contact */
.contactus {
  display: flex;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  background: #181838;
  gap: 2rem;
}

.contactimg {
  flex: 1;
}

.contactformdiv {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-content: center;
  width: 60%;
  padding: 2rem;
  background: linear-gradient(
    137.07deg,
    #8e4a19 22.92%,
    #be4e00 37.86%,
    #fcc704 63.34%
  );
  border-radius: 20px;
}

.contactformdiv1 {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  /* flex: 1; */
  width: 50%;
  background-color: rgb(23, 23, 23);
  padding: 2rem;
  border-radius: 16px;
}

.homeContactForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.contactform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.contactform label,
.contactform input,
.contactform select,
.contactform textarea {
  margin-bottom: 5px;
  border-radius: 4px;
  outline: none;
  border: none;
}

.contactform label {
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
}

.contactform input,
.contactform select,
.contactform textarea {
  padding: 10px;
  background-color: #182747;
  color: #fff;
}

.contactform option {
  color: #fff;
}

.contactBtn {
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  max-width: 60vw;
  min-width: 200px;
  width: 70%;
  background-color: #8f4a1a;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.contactform .d-flex.gap-5 {
  margin-bottom: 1rem;
}

.contactContent {
  background: linear-gradient(
    137.07deg,
    #8e4a19 22.92%,
    #be4e00 37.86%,
    #fcc704 63.34%
  );
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.contactContent i {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contactContent p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

.contactTitle {
  -webkit-text-fill-color: transparent;
  background: #cf29b3;
  background: linear-gradient(270deg, #cf29b3 0, #1279e0);
  -webkit-background-clip: text;
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.contactBox {
  background-color: #182747;
  flex: 1;
  border-radius: 20px;
  padding: 2rem;
}

.captcha {
  display: flex;
  /* flex-direction: column; */
  margin-bottom: 20px;
  width: 200px;
  gap: 1rem;
}

.captcha img {
  height: 46px;
  background-color: #012765;
}

.captcha input {
  width: 150px;
  height: 46px;
}

/* casestudy */
.carddiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.caseStudy {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  height: 70vh;
  background: #012765;
}

.caseStudy h1 {
  color: #fff;
}

.cloudcase {
  position: absolute;
  transform: rotate(180deg);
  left: 0;
}

.cloudcase img {
  width: 450px;
  height: 400px;
}

.paraCase {
  margin-bottom: 20px;
  color: rgb(227, 226, 223);
  font-weight: 600;
}

.swiper .card.active {
  background-color: #1263f1;
}

.swiperTitle {
  color: yellow !important;
}

.swiperTitle.active {
  color: purple !important;
}

.readmore i.active {
  background-color: yellow;
}

.card p.active {
  color: white;
}

.card {
  padding: 2rem;
  width: 300px;
  background: linear-gradient(
    235deg,
    rgba(51, 111, 245, 0.53) 4.05%,
    rgba(17, 81, 225, 0.16) 103.52%
  );
  border-radius: 16px;
}

.card p {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--clr-light);
  margin-bottom: 10px;
}

.readmore i {
  color: #19459c;
  transition: 0.3s ease all;
  background-color: rgb(18, 99, 241);
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 0.6rem;
}

.readmore {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.readmore p {
  color: rgb(18, 99, 241);
  font-size: 1.1rem;
  margin: 0 !important;
}

.readmore:hover i {
  transform: translateX(5px);
}

.navigationarrow {
  display: flex;
  /* justify-content: center; */
  margin-bottom: 1.3rem;
}

.navigationarrow i {
  background-color: rgb(18, 99, 241);
  padding: 0.7rem;
  margin: 3px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.navigationarrow i:hover {
  background-color: rgb(162, 159, 159);
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  color: #fff;
}

/* service */

.service {
  position: relative;
  min-height: 100vh;
  background: #182747;
  overflow: hidden;
  padding: 5rem;
}

.servicecard {
  display: flex;
  gap: 15px;
  padding: 1rem;
  width: 100%;
  background: #181838;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease-in;
  z-index: 2;
  box-shadow: -1px -6px 15px 6px rgba(227, 208, 38, 0.69);
}

.servicecard:hover {
  background: rgb(115, 73, 14);
}

.servicecard i {
  color: yellow !important;
}

.servicecard a {
  color: yellow !important;
}

.serviceTitle {
  -webkit-text-fill-color: transparent;
  background: #cf29b3;
  background: linear-gradient(270deg, #cf29b3 0, #1279e0);
  -webkit-background-clip: text;
  font-weight: 900;
}

.servicecard i {
  color: #fff;
  font-size: 2rem;
}

.servicecard h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

.servicecard p {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.serviceHover {
  display: none;
  margin-bottom: 1rem;
  /* transition: 1s ease all; */
}

.servicecard:hover .serviceHover {
  display: block;
}

.serviceHover p {
  margin-bottom: 1.5rem;
}

.serviceanime {
  position: absolute;
  top: 47px;
  z-index: 1;
  left: 6vw;
  height: 100%;
}

.serviceanime img {
  height: 90%;
  width: 88vw;
}

/* about */

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  background: #182747;
}

.aboutcontent {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.aboutHeading {
  font-size: 64px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  background: #ffb76b;
  background: linear-gradient(
    90deg,
    #ffb76b 0,
    #ffa73d 30%,
    #ff7c00 60%,
    #ff7f04
  );
  -webkit-background-clip: text;
  margin-left: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

.aboutCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.aboutTitle {
  color: rgb(29, 70, 166);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.circleDiv {
  display: inline-block;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
}

.border1 {
  border: 3px solid blue;
  border-radius: 50%;
  border-left: 5px dotted blue;
  width: 100%;
  padding: 8px;
}

.border2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border: 5px solid blue;
  border-radius: 50%;
}

.border2 h1,
.border2 p {
  color: black;
}

.titlew {
  font-size: 2.3rem;
  font-weight: 700;
}

/* policy */

.policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 5rem;
  gap: 1rem;
}
.policy h1,
.policy p {
  color: black;
}

.policy h1 {
  font-size: 3rem;
  font-weight: 600;
}

/* terms */

.terms {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 5rem;
  gap: 1rem;
}

.terms h1,
.terms p {
  color: black;
}

.terms h1 {
  font-size: 3rem;
  font-weight: 600;
}

/* Footer */

footer .custom-shape-divider-top-1666892474 {
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -1px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer {
  background: linear-gradient(
    137.07deg,
    #8e4a19 22.92%,
    #be4e00 37.86%,
    #fcc704 63.34%
  );
  position: relative;
  /* width: 100vw; */
}

footer .custom-shape-divider-top-1666892474 svg {
  display: block;
  height: 147px;
  position: relative;
  width: calc(276% + 1.3px);
}

.svgStyle {
  width: calc(200% + 1.3px);
}

.footerUl li a {
  color: #fff;
  font-weight: 600;
}

.footerUl li a:hover {
  color: #5b9cd0;
}

.footerContent {
  display: flex;
  justify-content: space-between;
  padding: 6rem 5rem 3rem;
}

.footerContent1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footerContent1 h5,
.footerContent i {
  color: #fff;
}

/* timeline */

.howWorks {
  display: flex;
  flex-direction: column;
  /* background: var(--clr-white); */
  /* border: 0.7px solid rgba(0, 0, 0, 0.1); */
  /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1); */
  /* border-radius: 2px; */
  position: relative;
  align-items: center;
}

.timeline_2 {
  display: block !important;
  list-style: none;
  padding: 2rem;
  position: relative;
  font-weight: 300;
  height: 920px;
}

.timeline_2:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 1px;
  background: #eee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline_2 > li {
  margin-bottom: 150px;
  position: relative;
  width: 50%;
  float: left;
  clear: left;
}

.timeline_2 > li > .timeline-badge {
  color: var(--clr-white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 16px;
  right: -22px;
  z-index: 100;
}

.timeline_2 > li > .timeline-badge i {
  font-size: 16px;
}

.timeline_2 > li > .timeline-panel.bg-yellow:after {
  border-left-color: #fcb03b;
}

.timeline_2 > li > .timeline-panel.bg-red:after {
  border-left-color: #f15b26;
}

.timeline_2 > li > .timeline-panel.bg-green:after {
  border-left-color: #3cb878;
}

.timeline-panel {
  width: calc(100% - 50px);
  float: left;
  position: relative;
}

.timeline_2 > li.timeline-inverted {
  float: right;
  clear: right;
  margin-top: 100px;
}

.timeline_2 > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline_2 > li.timeline-inverted > .timeline-panel.bg-pink:after {
  border-right-color: #ea65a2;
}

.timeline_2 > li.timeline-inverted > .timeline-panel.bg-blue:after {
  border-right-color: #566fc9;
}

.timeline_2 > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 10px;
  left: -10px;
  right: auto;
}

.timeline_2 > li.timeline-inverted > .timeline-badge {
  left: -22px;
}

.bg-yellow {
  background: #fcb03b !important;
}

.bg-pink {
  background: #ea65a2 !important;
}

.bg-red {
  background: #f15b26 !important;
}

.bg-blue {
  background: #566fc9 !important;
}

.bg-green {
  background: #3cb878 !important;
}

.txt-light {
  color: var(--clr-white) !important;
}

.timeline_2 > li > .timeline-panel:after {
  position: absolute;
  top: 30px;
  right: -10px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--clr-white);
  border-right: 0 solid var(--clr-white);
  border-bottom: 10px solid transparent;
  content: " ";
}

@media (max-width: 1280px) {
  .error404 {
    min-height: 48vh;
  }
}

@media (max-width: 768px) {
  ul.timeline_2:before {
    left: 35px;
  }

  ul.timeline_2 > li {
    margin-bottom: 0px;
    position: relative;
    width: 100%;
    float: left;
    clear: left;
  }

  ul.timeline_2 > li > .timeline-badge {
    left: -18px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline_2 > li > .timeline-panel {
    float: right;
  }

  ul.timeline_2 > li > .timeline-panel.bg-yellow:after {
    border-right-color: #fcb03b;
  }

  ul.timeline_2 > li > .timeline-panel.bg-red:after {
    border-right-color: #f15b26;
  }

  ul.timeline_2 > li > .timeline-panel.bg-green:after {
    border-right-color: #3cb878;
  }

  ul.timeline_2 > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 10px;
    left: -10px;
    right: auto;
  }

  .timeline_2 > li.timeline-inverted {
    float: left;
    clear: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .timeline_2 {
    height: 1060px;
  }
}

@media (max-width: 768px) {
  .error404 {
    min-height: 55vh;
  }
  .homepagew {
    /* flex-direction: column-reverse; */
    height: 60vh;
  }

  .bannertitle h1,
  .bannertitle p {
    text-align: center;
  }

  .contactus {
    flex-direction: column;
  }

  .about {
    flex-direction: column;
  }

  .caseStudy {
    height: 40vh;
  }

  .casestudycontent {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
  }

  .navbarlogo {
    width: 25%;
  }
}

@media (max-width: 425px) {
  .timeline_2 {
    height: 1250px;
  }
  .homepagew {
    flex-direction: column-reverse;
    height: 75vh;
  }

  .homeanime {
    height: 35vh;
    top: 0;
  }

  .homecontent img {
    width: 250px;
  }

  /* navbar425 */
  .navbar {
    padding: 1.5rem;
  }

  nav {
    position: absolute;
    flex-direction: column;
    background-color: var(--background);
    width: 70%;
    top: 0;
    left: -300px;
    align-items: start;
    padding: 3rem 2rem;
    height: 100vh;
    transition: 0.5s ease;
    z-index: 2;
  }

  nav.active {
    left: 0;
  }

  nav a {
    font-size: 1.5rem;
  }

  .barsw {
    display: block;
  }

  /* homepagew425 */

  .bannertitle {
    padding: 0;
    align-items: normal;
  }

  .homepagew {
    padding: 2rem;
  }

  /* contact425 */
  .contactformdiv {
    width: 100%;
  }

  .captcha input {
    width: 140px;
    height: 46px;
  }

  .homeContactForm {
    padding: 5rem 1.5rem;
  }

  .contactimg {
    width: 300px;
  }

  /* service425 */
  .card {
    width: 100%;
  }

  .service {
    padding: 0rem 2rem 2rem;
  }

  .service .carddiv {
    width: 100%;
  }

  /* casestudy425 */

  .caseStudy {
    flex-direction: column;
    height: 55vh;
    position: relative;
  }

  .carddiv {
    width: 80%;
    height: 100%;
  }

  .cloudcase {
    top: -30px;
  }

  .cloudcase img {
    width: 350px;
  }

  /* about425 */
  .aboutimg {
    width: 300px;
  }

  .aboutHeading {
    font-size: 40px;
    margin-left: 0;
  }

  .aboutcontent {
    flex-wrap: wrap;
  }

  /* footer425 */

  .footerContent {
    flex-direction: column;
    gap: 25px;
  }

  .homeContactForm {
    padding: 2rem 1.5rem 0rem;
  }

  .footerContent1 h5 {
    font-size: 1.1rem;
  }

  /* terms */

  .terms,
  .policy {
    padding: 2rem 1rem;
  }

  .navbarlogo {
    width: 240px;
  }

  ul.timeline_2 {
    height: 100%;
  }
}

@media (max-width: 376px) {
  .timeline_2 {
    height: 1360px;
  }
  .homepagew {
    height: 97vh !important;
  }

  .caseStudy {
    height: 65vh;
  }

  .homecontent {
    padding: 0 2rem;
  }

  .homecontent > div {
    margin-top: 1rem !important;
  }

  .homeanime {
    height: 45vh;
  }
}
