@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
.navbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: white;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: -3.5rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar ul li {
  margin: 0 7px;
}
.navbar ul li a {
  color: #25234d;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
}
.navbar ul .active {
  font-weight: 700;
}
.navbar-brand img {
  width: 55%;
}
.navbar button {
  border: 2px solid #37429a;
}
.navbar button span i {
  color: #37429a;
  line-height: 1.6;
}
.navbar .btn-contact {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.navbar .btn-contact:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out !important;
}

nav.shift ul li a {
  position: relative;
  z-index: 1;
}
nav.shift ul li a:hover {
  color: white;
}
nav.shift ul li a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: #ffc727;
  visibility: none;
  opacity: 0;
  z-index: -1;
  border-radius: 3px;
  transition: all 0.5s ease-in-out !important;
}
nav.shift ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 90%;
}

/* nav-end */
.service {
  background: #f4f4f9;
  background-image: url('https://lottiefiles.com/56002-background01');
  background-repeat: no-repeat;
  padding: 7.5em 0em 2em;
  border-radius: 190px 0 0 0;
  margin-top: 7.5em;
}
.service .caption-head {
  position: relative;
  top: -90px;
}
.service .lottie {
  bottom: 0;
  width: 579px;
  height: 512px;
  position: absolute;
  z-index: 0;
  left: -76px;
  opacity: 0.7;
  margin: 0 auto;
}
.service h3 {
  color: #37429a;
  font-size: 23px;
  letter-spacing: 2px;
  margin: 10px 0;
}
.service h4 {
  color: #37429a;
  letter-spacing: 0px;
  margin: 10px 0;
  font-size: 17px;
}
.service h2 {
  color: #25234d;
  text-transform: capitalize;
  font-size: 42px;
}
.service .card {
  border-radius: 30px;
  box-shadow: 1px 2px 8px #ebebeb;
  background: white;
  border: none;
  width: 100%;
  padding: 25px 20px;
  text-align: left;
  min-height: 290px;
}

.service h1 span,
.about-us1 h1 span,
.staff h1 span {
  color: #25234d;
  text-transform: capitalize;
  font-size: 42px;
  width: 100%;
  float: left;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  transform: translateY(-50px);
  opacity: 0;
  animation-name: titleAnimation;
  animation-timing-function: ease;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.service h1 span,
.about-us1 h1 span,
.staff h1 span {
  animation-delay: 0.7s;
  -webkit-animation-fill-mode: forwards;
}
.service h1 span:first-child,
.about-us1 h1 span:first-child,
.staff h1 span:first-child {
  animation-delay: 0.7s;
}
.service h1 span:last-child,
.about-us1 h1 span:last-child,
.staff h1 span:last-child {
  animation-delay: 0.5s;
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  80% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
  }
}

.service .anim {
  animation: moving 12s infinite;
}
@keyframes moving {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.service .anim1 {
  animation: moving 8s infinite;
}
@keyframes moving {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
.service .anim2 {
  animation: moving2 9s infinite;
}
@keyframes moving2 {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(70px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.service .anim3 {
  animation: moving3 10s infinite;
}
@keyframes moving3 {
  0% {
    transform: translateY(-28px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-28px);
  }
}
.service .anim4 {
  animation: moving4 9s infinite;
}
@keyframes moving4 {
  0% {
    transform: translateY(-18px);
  }
  50% {
    transform: translateY(24px);
  }
  100% {
    transform: translateY(-18px);
  }
}
.service .card img {
  width: 80px;
}
.service a {
  text-decoration: none !important;
}
.mt-6 {
  margin-top: -75px;
}
.mt-7 {
  margin-top: -50px;
}
.mt-8 {
  margin-top: 2.5em;
}
.service button {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.service button:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.about-us {
  background: rgb(55, 66, 154);
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  color: white;
  border-radius: 0px 0px 176px 0px;
  padding: 6.5em 0;
}
.about-us img {
  width: 80px;
}
.about-us h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 10px 0;
}
.about-us h2 {
  font-size: 53px;
  letter-spacing: 3px;
}
.about-us p {
  letter-spacing: 1.2px;
  font-weight: 100;
  margin-top: 20px;
}
.earth-surf {
  background-image: url('../images/earth.png');
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  position: absolute;
  min-height: 100vh;
  /* animation: rotates 10s linear infinite;
    margin-top: -7.5em; */
}

.about-us button {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.about-us button:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.about-us .card {
  color: black;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 40px;
  padding: 20px 15px 10px;
  margin-bottom: 25px;
  box-shadow: 1px 1px 4px #e3e3e3;
  /* border-radius: 30px; */
  border: none;
  min-height: 13em;
}

.about-us .lottie-plyr {
  position: absolute;
  opacity: 0.15;
  margin-top: -5em;
  display: grid;
  animation: move 20s linear infinite;
}
@keyframes move {
  0% {
    transform: translateY(-50%);
    width: 1%;
    animation-delay: 0s;
  }
  40% {
    transform: translateX(20%);
    width: 20%;
    animation-delay: 5s;
  }
  60% {
    transform: translateY(50%);
    transform: translateX(100%);
    width: 50%;
    animation-delay: 5s;
  }
  100% {
    transform: translateY(100%);
    width: 10%;
    animation-delay: 0s;
  }
}
.about-us1 {
  background: rgb(55, 66, 154);
  background-image: linear-gradient(
    153deg,
    rgba(55, 66, 154, 1) 15%,
    rgba(85, 144, 220, 1) 74%
  ) !important;
  color: white;
  border-radius: 0px 0px 176px 0px;
  margin-top: 6em;
  padding-top: 3em;
  height: 95vh;
}
.about-us1 .lottie {
  position: absolute;
  width: 573px;
  top: 0;
  left: -167px;
  opacity: 0.9;
}
.about-us1 .card:hover {
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}
.about-us .card h3 {
  font-weight: 400;
  margin: 10px 0 5px;
  font-size: 17px;
  letter-spacing: 0px;
}
.about-us .card p {
  letter-spacing: 1px;
  font-weight: 100;
  margin-top: 20px;
  font-size: 14px;
}

.resource button {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.resource button:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 35px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.resource h1 {
  font-size: 50px;
  color: #25234d;
}
.resource {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url('../images/Man.jpg');
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 4em 0;
}
.contact {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url('../images/hand-shake.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 7em 0 15em;
}
.contact h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 10px 0;
}
.contact h5 {
  text-transform: uppercase;
  color: #25234d;
}
.contact h2 {
  font-size: 43px;
  letter-spacing: 0px;
  color: #25234d;
}
.contact p {
  letter-spacing: 1.2px;
  font-weight: 100;
  margin-top: 20px;
}
.contact .card {
  padding: 40px;
  border-radius: 25px;
  box-shadow: 1px 1px 2px #ffff;
  border: none;
}
.contact .card img {
  width: 120px;
  position: absolute;
  top: -140px;
  right: 0px;
}
.contact .card .lottie-player {
  width: 170px;
  position: absolute;
  top: -17em;
  right: 0px;
}
.contact .card textarea,
input[type='email'],
input[type='text'] {
  margin: 15px 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  color: #3e3c3c;
  border: 1.5px solid #d2d2d2;
  padding: 10px;
}
.contact input[type='submit'],
.contact-service input[type='submit'] {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.contact input[type='submit']:hover,
.contact-service input[type='submit']:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.contact-section input[type='submit'] {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.contact-section input[type='submit']:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.testimonial {
  background: #f5f7f9;
}
.testimonial .oval-img {
  position: absolute;
  left: -200px;
  top: -140px;
  width: 100px;
  animation: updown 5s linear infinite;
}
@keyframes updown {
  0% {
    transform: translateY(-70px);
  }
  50% {
    transform: translateY(70px);
  }
  100% {
    transform: translateY(-70px);
  }
}
.testimonial-bg {
  background-image: url('../images/testimonial.png');
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  padding: 7.5em 0;
  background-position: bottom;
}
.testimonial .build {
  background-image: url('../images/build.png');
  opacity: 0.8;
  width: 100%;
  background-size: cover;
  position: absolute;
  height: 100vh;
  left: 0;
  right: 0;
  display: block;
  background-repeat: repeat;

  overflow-x: hidden;
}

.testimonial h2 {
  font-weight: 300;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 22px;
}
.testimonial h1 {
  font-weight: 500;
  color: white;
  font-size: 50px;
}
.testimonial .card {
  width: 50%;
  margin: 0 auto;
  padding: 4.5em 2em;
  border-radius: 18px;
  margin-top: 4em;
  margin-bottom: 6em;
}
.testimonial .card:after {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1%;
  left: 40%;
  font-size: 140px;
  transform: rotate(180deg);
  color: #e8ebf7;
  z-index: 1;
  display: none;
}
.testimonial .card p {
  color: #6a697f;
  line-height: 1.8;
  font-size: 17px;
  letter-spacing: 1px;
  z-index: 2;
}
.testimonial .card h6 {
  color: #6427de;
  margin-bottom: 10px;
  margin-top: 15px;
}
.testimonial .carousel-control-next {
  right: 14em;
  color: #4c4c4c !important;
  background: transparent;
  width: 40px !important;
  height: 40px !important;
  border-radius: 30px;
  border: 1px solid #4c4c4c !important;
}
.testimonial .carousel-control-prev {
  left: 14em;
  color: #4c4c4c !important;
  background: transparent;
  width: 40px !important;
  height: 40px !important;
  border-radius: 30px;
  border: 1px solid #4c4c4c;
}
.testimonial .carousel-control-prev:hover,
.testimonial .carousel-control-prev:focus {
  background: #00dadc;
  opacity: 1;
  border: none;
  color: white !important;
}
.testimonial .carousel-control-next:hover,
.testimonial .carousel-control-next:focus {
  background: #00dadc;
  opacity: 1;
  border: none !important;
  color: white !important;
}
.testimonial .carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 75%;
  bottom: 10px;
  /* left: 0; */
  z-index: 16;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.testimonial .carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 6px;
  margin-left: 3px;
  text-indent: -50px;
  cursor: pointer;
  background-color: transparent;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.testimonial .carousel-indicators li .img-test1 {
  width: 55px;
  position: absolute;
  left: -30px;
  top: -415px;
}
.testimonial .carousel-indicators li .img-test2 {
  width: 40px;
  position: absolute;
  left: -120px;
  top: -275px;
}
.testimonial .carousel-indicators li .img-test3 {
  width: 48px;
  position: absolute;
  left: -22px;
  top: -125px;
}
.testimonial .carousel-indicators li .img-test4 {
  width: 58px;
  position: absolute;
  right: -40px;
  top: -415px;
}
.testimonial .carousel-indicators li .img-test5 {
  width: 70px;
  position: absolute;
  right: -111px;
  top: -275px;
}
.testimonial .carousel-indicators li .img-test6 {
  width: 45px;
  position: absolute;
  right: -22px;
  top: -130px;
}
.testimonial .carousel-indicators .active img {
  padding: 5px;
  border: 4px solid #dca710;
  border-radius: 50px;
}
.testimonial .carousel-indicators li img:hover {
  padding: 5px;
  border: 2px solid #dca710;
  border-radius: 50px;
}

.testimonial .carousel-item span i {
  text-align: center;
  justify-content: center;
  display: flex;
  margin-top: 3px;
}
.testimonial .carousel-control-prev-icon {
  background-image: none;
}
.testimonial .carousel-control-next-icon {
  background-image: none;
}

.testimonial.carousel-item span i:hover {
  color: white !important;
}
.testimonial .rating i {
  color: #ffcc00;
}
.testimonial .lottie-player {
  position: absolute;
  margin: 0 auto;
  margin-top: -42px;
}

footer {
  background: #ffffff;
}
.footer {
  background: rgb(55, 66, 154);
  background-image: linear-gradient(
    153deg,
    rgba(55, 66, 154, 1) 15%,
    rgba(85, 144, 220, 1) 74%
  );
  color: white;
  padding: 3.5em 0 1.5em;
  border-radius: 150px 0 0 0;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin: 10px 0;
}
footer ul li a {
  color: white;
  font-weight: 100;
}
footer .logo img {
  width: 200px;
  margin-bottom: 10px;
}
footer p {
  font-weight: 100;
}
footer .list-inline a {
  width: 25px;
  height: 25px;
  background: white;
  color: rgb(55, 66, 154);
  text-align: center;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 25px;
  cursor: pointer;
}
footer .list-inline a:hover {
  width: 25px;
  height: 25px;
  background: rgb(55, 66, 154);
  color: white;
  transition: all 0.5s ease-out;
}
.specialize {
  padding: 7.5em 0em 4em;
}
.specialize .bg-img {
  background-image: url(../images/brain.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 365px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialize button {
  background: linear-gradient(
    120deg,
    rgba(55, 66, 154, 1) 15%,
    rgba(85, 144, 220, 1) 74%
  );
  padding: 20px 30px;
  color: white;
  border: 1px solid;
  margin: 10px;
  border-radius: 15px;
}
.specialize button:hover {
  border: 1px solid rgba(55, 66, 154, 1);
  color: rgba(55, 66, 154, 1);
  transition: all 0.5s ease-out;
  background: transparent;
  cursor: none;
}
.specialize .btn-section {
  display: flex;
  align-items: center;
}
.about-us1 .back-img {
  background-image: url(../images/border.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100vh;
}

.services-us {
  background: rgb(55, 66, 154);
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  height: 52rem;
  border-radius: 0px 0px 176px 0px;
  padding: 2.5em 0em 2em;
  margin-top: 0px !important;
}

.services-us h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 15px 0;
  color: white;
}
.services-us h2 {
  font-size: 38px;
  letter-spacing: 0px;
  color: white;
}
.services-us .card {
  border-radius: 30px;
  box-shadow: 1px 1px 3px #ebebeb;
  background: white;
  border: none;
  width: 100%;
  padding: 25px 20px;
  text-align: left;
  min-height: 300px;
}
.services-us .earth-surf {
  background-image: url(../images/earth.png);
  background-repeat: no-repeat;
  width: 100%;
  background-size: contain;
  padding: 5.5em 0;
}

.contact-service {
  padding: 20em 0 2em;
}
.contact-service h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 10px 0;
}
.contact-service h5 {
  text-transform: uppercase;
  color: #25234d;
}
.contact-service h2 {
  font-size: 43px;
  letter-spacing: 0px;
  color: #25234d;
}
.contact-service p {
  letter-spacing: 1.2px;
  font-weight: 100;
  margin-top: 20px;
}
.contact-service .card {
  padding: 40px;
  border-radius: 25px;
  box-shadow: 1px 4px 14px #e7e7e7;
  border: none;
}
.contact-service .card img {
  width: 120px;
  position: absolute;
  top: -140px;
  right: 0px;
}
.contact-service .card textarea,
input[type='email'],
input[type='text'] {
  margin: 15px 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  color: #3e3c3c;
  border: 1.5px solid #d2d2d2;
  padding: 10px;
}
.contact-service button {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.contact-service button:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.staff {
  background: rgb(55, 66, 154);
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  border-radius: 0px 0px 176px 0px;
  padding: 2.5em 0em 3em;
  margin-top: 6em;
}

.staff h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 15px 0;
  color: white;
}

.staff h2 {
  font-size: 38px;
  letter-spacing: 0px;
  color: white;
}
.staff p {
  color: white;
}
.it-staff {
  padding: 4em 0px;
}
.it-staff h3 {
  font-weight: 500;
  letter-spacing: 0px;
  margin: 15px 0;
}
.it-staff .card p {
  color: white;
  font-size: 15.5px;
}
.it-staff .card {
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  text-align: center;
  border-radius: 15px;
  padding: 10px 15px;
  border: none;
  margin: 15px 0;
}
.it-staff .card h2 {
  font-size: 25px;
  color: white;
  margin: 10px auto;
}
.it-staff .card h3 {
  font-size: 14px;
  color: white;
}
.it-staff .card ul {
  text-align: left;
  margin-left: 2.5em;
  color: white;
  line-height: 1.9;
}

.technologys {
  background: rgb(55, 66, 154);
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  border-radius: 0px 0px 176px 0px;
  padding: 2.5em 0em 3em;
  margin-top: 6em;
  height: 90vh;
}

.technologys h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 15px 0;
  color: white;
}
.technologys p {
  color: white;
}

.technologys h2 {
  font-size: 30px;
  letter-spacing: 0px;
  color: white;
}
.technology {
  margin-top: -25em;
}
.technology p {
  color: white;
}
.technology .card {
  border-radius: 40px;
  padding: 1.5em;
  margin-top: 1em;
  border: none;
  box-shadow: 1px 2px 8px #20202044;
}
.technology .card h3,
.card p {
  color: black !important;
}
.technology .card a {
  margin: 0 5px;
}
.technology .card img {
  width: 100px;
  border: 3.5px solid #4669bb;
  border-radius: 27px;
  padding: 3px;
  height: 100px;
  object-fit: contain;
  margin: 3em auto;
}
.technology .card img:hover {
  cursor: pointer;
  border: 3.5px solid black;
}
.contacts {
  padding: 10em 0 2em !important;
}
.contactpage {
  background: rgb(55, 66, 154);
  background: linear-gradient(
    50deg,
    rgba(55, 66, 154, 1) 6%,
    rgba(95, 166, 239, 1) 47%
  );
  border-radius: 0px 0px 176px 0px;
  padding: 2.5em 0em 3em;
  margin-top: 6em;
  min-height: 55vh;
}
.contactpage h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin: 15px 0;
  color: white;
}
.contactpage p {
  color: white;
}

.contactpage h2 {
  font-size: 40px;
  letter-spacing: 0px;
  color: white;
}
.contact-section .card {
  padding: 40px;
  border-radius: 25px;
  box-shadow: 1px 4px 14px #e7e7e7;
  border: none;
  margin: -16em auto -50px;
  width: 40%;
  z-index: 1;
}
.contact-section .card img {
  width: 120px;
  position: absolute;
  top: -140px;
  right: 0px;
}
.contact-section .card textarea,
input[type='email'],
input[type='text'] {
  margin: 15px 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  color: #3e3c3c;
  border: 1.5px solid #d2d2d2;
  padding: 10px;
}
.contact-section button {
  border: 1.5px solid #ffc727;
  background: #ffc727;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.contact-section button:hover {
  border: 1.5px solid #ffc727;
  background: transparent;
  color: black;
  padding: 10px 65px;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}

.contact-adress {
  float: right;
  margin-top: -20em;
}
.contact-adress p {
  font-weight: 100;
  color: white;
}
.contact-adress .list-inline a {
  width: 25px;
  height: 25px;
  background: white;
  color: rgb(55, 66, 154);
  text-align: center;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 25px;
  cursor: pointer;
}
.contact-adress .list-inline a:hover {
  width: 25px;
  height: 25px;
  background: rgb(55, 66, 154);
  color: white;
  transition: all 0.5s ease-out;
}
.d-img-mob {
  display: none !important;
}
.sm-6 {
  margin-top: -4em;
}

.contact-service .card .lottie-player {
  width: 170px;
  position: absolute;
  top: -17em;
  right: 0px;
}
.contact-section .card .lottie-player {
  width: 170px;
  position: absolute;
  top: -17em;
  right: 0px;
}
.blog .card {
  padding: 0px;
  margin: 30px 10px;
  border: none;
  box-shadow: 1px 2px 7px #a49b9b;
  cursor: pointer;
}
.blog .card:hover {
  transform: scale(0.9);
  transition: all 0.5s ease-out;
}
.blog .card .card-header {
  border: none;
}
.blog .card h6 {
  font-size: 12px;
}
.blog .card h6 span {
  text-transform: capitalize;
  color: #858586;
  font-size: 11px;
  font-weight: 500;
  margin-left: 0px;
}
.blog .card h2 {
  font-size: 18px;
}
.blog .card p {
  color: #817878 !important;
  font-weight: 350;
  text-align: left;
  margin-bottom: 0px;
  font-size: 13px;
}
.blog .blog-footer img {
  width: 55px;
  height: 40px;
  border-radius: 50px;
}
.modal-content ::-webkit-scrollbar {
  width: 3px;
}
.modal-content ::-webkit-scrollbar-track {
  margin-top: 30px;
  margin-bottom: 30px;
}

.modal-content ::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}
.modal-dialog {
  max-width: 650px;
  margin: 1.75rem auto;
}
