@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Raleway, sans-serif;
  background-color: white;
  color: silver;
  overflow-x: hidden;
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: grey;
  border-radius: 20px;
}

/* ================== MAIN HEADER ============================== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: white;
  color: rgb(13, 26, 38);
  position: fixed;
  width: 100%;
  z-index: 4;
  height: 18vh;
}

.nav-links a {
  font-family: "Lexend Peta", sans-serif;
  color: black;
  font-weight: normal;
}

.logo {
  float: left;
  padding-left: 10px;
  font-size: 2em;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.logo a img {
  height: 98px;
  padding-left: 20px;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 17px;
  z-index: 2;
}

.menu li {
  padding: 5px 14px;
  list-style-type: none;
  /*display: inline-block;*/
  display: inline-block;
  position: relative;
}

.menu li a {
  font-family: Georgia, "Times New Roman", Times, serif;
}

.menu li a::after {
  content: "";
  height: 3px;
  width: 0;
  background: #0087ca;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.5s;
}

.menu li a:hover::after {
  width: 100%;
}

.menu li a:hover::before {
  width: 0;
}

/* DROPDOWN MENU */
.services {
  position: relative;
}

.dropdown {
  background-color: #00a1e0;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
  color: black;
}

.dropdown li:hover {
  background-color: #00a1e0;
}

.services:hover .dropdown {
  display: block;
}

input[type="checkbox"] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

.empty {
  height: 90px;
  width: 100%;
  background-color: #f7f7f9;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 950px) {
  .logo {
    padding-right: 0;
    margin-right: 0;
  }

  .logo img {
    width: 170px;
  }

  .menu {
    display: none;
    position: absolute;
    background-color: white;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    margin-top: 22px;
    /*border: 2px solid red;*/
  }

  .menu li {
    display: flex;
    text-align: center;
    align-items: center;
  }

  .menu li a {
    text-align: center;
    align-items: center;
    margin-left: 40%;
  }

  .menu li + li {
    margin-top: 25px;
  }

  input[type="checkbox"]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #00a1e0;
  }
}

/* ==================  Image Slider ============================== */

.empty {
  height: 18vh;
  width: 100%;
}

.container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  margin-top: 36px;
}

.swiper {
  width: 100%;
  height: 700px;
}

.swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(0%);
}

.slider-text {
  position: absolute;
  width: 600px;
  top: 200px;
  left: 450px;
  display: block;
  text-align: center;
  animation: textdown 15000ms;
  transform: translateY(-100px);
  transition: transform 2000ms ease;
}

@keyframes textdown {
  10% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}

.slider-text1 {
  animation-delay: 0s;
}
.slider-text2 {
  animation-delay: 0s;
}
.slider-text3 {
  animation-delay: 0s;
}

.slider-text p {
  font-size: 36px;
  font-weight: 500;
  color: #2be4ac;
  text-transform: uppercase;
  line-height: 46px;
  letter-spacing: 0.1em;
}

.slider-text h2 {
  font-size: 120px;
  color: white;
  font-weight: 700;
  line-height: 150px;
  margin-bottom: 40px;

  /* visibility: hidden; */
}

.slider-btn {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 60px;
  bottom: 200px;
  left: 650px;
  outline: none !important;
  background-color: #00a1e0;
  padding: 14px 40px 14px;
  transition: transform 2000ms ease;
  /* transition: all 0.5s linear; */
  overflow: hidden;
  z-index: 1;
  animation: btnup 12s linear infinite;
  transform: translateY(100px);
  border-radius: 9px;
  cursor: pointer;
}

@keyframes btnup {
  10% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}

.slider-btn1 {
  animation-delay: 0s;
}
.slider-btn2 {
  animation-delay: 0s;
}
.slider-btn3 {
  animation-delay: 0s;
}
.slider-btn a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  margin-top: 5px;
}

.slider-btn:hover {
  background-color: #00a1e0;
  color: white;
}

@media (max-width: 950px) {
  .container {
    height: fit-content;
    margin-top: 20px;
    width: 100%;
  }

  .swiper {
    height: fit-content;
    width: 100%;
  }

  .swiper-wrapper {
    height: fit-content;
    width: 100%;
  }

  .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }

  .slider-text {
    margin-left: 0;
    padding-left: 0;
    margin-right: 0;
    padding-right: 0;
    left: 0;
    top: 33%;
    width: 100%;
    animation: textdown 900ms;
    margin-top: 9%;
  }

  @keyframes textdown {
    from {
      transform: translateY(-50%);
    }
    to {
      transform: translateY(100%);
    }
  }

  .slider-text p {
    font-size: 21px;
    font-weight: 500;
    color: #2be4ac;
    text-transform: uppercase;
    line-height: 46px;
    letter-spacing: 0.1em;
    text-align: center;
    right: 0;
    left: 0;
    width: 100%;
    margin-top: 3%;
    padding-top: 0;
  }

  .slider-text h2 {
    font-size: 60px;
    color: white;
    font-weight: 700;
    line-height: 150px;
    width: 100%;
  }
}

.dataofproducts {
  color: black;
  margin-top: 20px;
  margin-left: 4%;
  margin-right: 4%;
  margin-bottom: 20px;
}

.dataofproducts h4 {
  margin-left: 2%;
  margin-right: 2%;
  text-align: center;
  line-height: 1.6;
  font-size: 17px;
  font-weight: 200;
}

/* ------------------------------------------- */

.text1 {
  overflow-x: hidden;
  display: inline-block;
  display: flex;
  top: 800px;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 80px;
  background-color: #211e5c;
  margin-top: 0;
}

.text1 p {
  font-size: 20px;
  color: silver;
}

.text1 p a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.text1 p a:hover {
  color: #2be4ac;
}

.text1 p a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  content: "";
  height: 2px;
  background-color: #2be4ac;
}

@media (max-width: 850px) {
  .text1 {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .text1 p {
    font-size: 16px;
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
  }
}

/* ==================  FEATURES ============================== */
#features {
  padding: 120px 0 90px;
  width: 100%;
  height: 600px;
  padding-top: 40px;
}

#features h1 {
  text-align: center;
  color: black;
  font-size: 2em;
}

.container_feature {
  width: 100%;
  padding: 0 3%;
  margin-left: auto;
  margin-right: auto;
  /* padding: 30px 20%; */
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 15px;
  margin-top: 50px;
  cursor: pointer;
}

.feature1 {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 500ms ease;
  box-shadow: 1px 1px #888888;
}

.feature1:hover {
  transform: translateY(-20px);
}

.feature1 img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s;
}

.feature1 .title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  position: absolute;
  bottom: 25px;
  /* opacity: 1;
  visibility: visible;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5; */
}

.hover-content {
  width: 100%;
  height: 0%;
  background: linear-gradient(rgba(27, 21, 37, 0.9), #1b1525);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
}

.hover-content i {
  color: green;
  font-size: 66px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  top: 20px;
  left: -70px;
}

.hover-content h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 21px;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.hover-content h3:hover {
  color: green;
}

.hover-content p {
  font-size: 16px;
  color: #aea8b9;
  line-height: 30px;
}

.hover-content a {
  text-decoration: none;
  color: green;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
  transition: all 500ms ease;
}

.hover-content a:hover {
  color: green;
  transform: translateY(-8px);
}

.feature1:hover img {
  transform: scale(1.05);
}

.feature1:hover .hover-content {
  height: 100%;
}

@media (max-width: 850px) {
  #features {
    height: fit-content;
    margin-top: 0;
    padding-top: 0;
  }

  #features h1 {
    margin-top: 10px;
  }

  #features .container_feature {
    height: fit-content;
    margin-top: 0;
    padding-top: 0;
  }

  #features .features-list .feature1 .title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    position: absolute;
    bottom: 25px;
    left: 100px;
  }

  #features .container_feature .features-list .feature1 {
    margin-bottom: 20px;
  }

  #features .container_feature .features-list .feature1 img {
    height: 55vh;
    margin-left: 1%;
    margin-right: 1%;
  }
}

@media (max-width: 850px) {
  #container {
    height: fit-content;
  }
}

/* ================== GET TO KNOW US ============================== */

#get-to-know-us {
  width: 100%;
  height: 800px;
  position: relative;
  display: block;
  /* padding: 0 0 120px; */
}

.container-get-to-know {
  width: 100%;
  padding: 0 15%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* margin-top: 0px;
  margin-left: -15px;
  margin-right: -15px; */
}
.get-to-know-col1 {
  /* flex: 0 0 auto; */
  width: 50%;
  padding: 0px 15px;
}
.get-to-know-col2 {
  /* flex: 0 0 auto; */
  width: 50%;
  padding: 0px 15px;
}

.get-to-know-left {
  position: relative;
  display: block;
  margin-right: 100px;
  animation: slideInLeft 2500ms linear 100ms normal both;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.get-to-know-img-box {
  width: 470px;
  height: 468px;
  position: relative;
  display: block;
  z-index: 1;
}

.get-to-know-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.get-to-know-img img {
  width: 100%;
}

.get-to-know-img img {
  width: 100%;
  border-radius: 9px;
}

.get-to-know-small-img {
  position: absolute;
  bottom: -94px;
  right: -100px;
  z-index: 2;
}

.get-to-know-small-img img {
  width: auto;
  border-radius: 9px;
}

.get-to-know-shape-1 {
  position: absolute;
  bottom: -200px;
  left: -187px;
  animation: fa-spin 10s ease infinite;
  z-index: -1;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.get-to-know-shape-1 img {
  width: auto;
}

.get-to-know-right {
  position: relative;
  display: inline-block;
  margin-left: 100px;
}

.get-to-know__right .section-title {
  margin-bottom: 30px;
}
.section-title {
  position: relative;
  display: block;
  margin-top: -10px;
  text-align: left;
}

.section-title-tagline-box {
  position: relative;
  display: inline-block;
}
.section-title-tagline {
  position: relative;
  display: inline-block;
  color: #0087ca;
  font-size: 16px;
  font-weight: 700;
  padding-left: 16px;
}

.section-title-shape {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 14px;
}

.section-title-shape img {
  width: auto;
  vertical-align: middle;
}

.get-to-know-right .section-title {
  margin-bottom: 30px;
}

.section-title-title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 40px;
  color: #1b1525;
  line-height: 50px;
  font-weight: 700;
}

.get-to-know-text {
  width: 470px;
  height: 96px;
}

p.get-to-know-text {
  color: #777181;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-align: left;
}

.get-to-know-points {
  width: 500px;
  height: 140px;
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 37px;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.get-to-know-points li {
  position: relative;
  display: flex;
  /* flex-direction: column;
  flex-wrap: nowrap; */
  align-items: center;
  text-align: left;
}

.get-to-know-points li + li {
  margin-top: 4px;
}

.get-to-know-points li .text {
  width: 360px;
  height: 32px;
  margin-left: 10px;
}

.get-to-know-points li .text p {
  color: #777181;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  display: block;
}

.get-to-know-points li .icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.get-to-know-points li .icon span i {
  color: #0087ca;
  font-size: 16px;
  line-height: 32px;
}

.get-to-know-points li .text {
  margin-left: 10px;
}

.get-to-know__points li .text p {
  text-align: left;
  color: #1b1525;
}

.get-to-know-it-solutions {
  width: 470px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 46px;
}

.get-to-know-it-solutions-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.get-to-know-it-solutions-icon span i {
  font-size: 64px;
  color: #2be4ac;
  position: relative;
  display: inline-block;
  transform: scale(1);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.get-to-know-it-solutions:hover .get-to-know-it-solutions-icon span i {
  transform: scale(0.9);
}

.get-to-know-it-solutions-text-box {
  margin-left: 18px;
}

.get-to-know-it-solutions-text {
  font-size: 20px;
  font-weight: 700;
  color: #1b1525;
  margin: 0;
  line-height: 36px;
  text-decoration: none;
  text-align: left;
}

.thm-btn {
  float: left;
  width: 200px;
  height: 60px;
  text-decoration: none;
  text-align: center;
  position: relative;
  display: block;
  /* vertical-align: middle; */
  outline: none !important;
  background-color: #00a1e0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px 14px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  border-radius: 9px;
}

.thm-btn:hover {
  color: #ffffff;
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #00a1e0;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  transform: scaleY(1);
}

@media (max-width: 700px) {
  #get-to-know-us {
    height: 300vh;
    border: 2px solid #0087ca;
    display: none;
  }

  #get-to-know-us .container-get-to-know .row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding-left: 0;
    margin-right: 0;
    padding-right: 0;
  }

  #get-to-know-us .container-get-to-know .row .get-to-know-col1 {
    height: 120vh;
    margin-top: 30px;
    margin-left: 0;
    padding-left: 0;
    margin-right: 0;
    padding-right: 0;
  }

  #get-to-know-us
    .container-get-to-know
    .row
    .get-to-know-col1
    .get-to-know-left
    .get-to-know-img-box {
    margin-left: 0;
    padding-left: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .get-to-know-img-box .get-to-know-img img {
    width: 80%;
  }

  #get-to-know-us
    .container-get-to-know
    .row
    .get-to-know-col1
    .get-to-know-left
    .get-to-know-img-box
    .get-to-know-small-img
    img {
    padding-right: 50px;
    display: none;
  }

  #get-to-know-us .container-get-to-know .row .get-to-know-col2 {
    display: none;
  }
}

/* ================== SERVICES============================== */

#services {
  width: 100%;
  height: 560px;
  background-color: #1b1525;
  color: #777181;
  background-image: url("images/service-bg-1-1.png");
  position: relative;
  display: block;
  background-position: center;
  /*overflow: hidden;*/
  z-index: 2;
}

.headingdata {
  color: white;
  text-align: center;
  margin-top: 60px;
}

.headingdata h2 {
  font-size: 37px;
  padding-top: 20px;
}

.services-bottom {
  width: 100%;
  height: 400px;
  position: relative;
  display: block;
  margin-top: 40px;
}

.services-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  height: 400px;
  margin-top: 13px;
  padding-left: 10px;
  padding-right: 10px;
}

.services-single {
  position: relative;
  flex: 0 0 33%;
  max-width: 33%;
  width: 100%;
  /* width: 240px;
    height: 369px; */
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  transition: all 500ms ease;
  cursor: pointer;
}

.services-single:hover {
  transform: translateY(-10px);
}

.services-content {
  position: relative;
  display: block;
  border: 2px solid #322d3b;
  padding: 37px 0 32px;
  background-color: #1b1525;
  transition: all 500ms ease;
  border-radius: 12px;
}

.services-single:hover .services-content {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.services-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  font-family: "icomoon" !important;
  text-align: center;
}

span i {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: #0087ca;
}

h3.services-title {
  display: block;
  color: #1b1525;
  /* width: 208px;
    height: 46px; */
  font-size: 18px;
  text-align: center;
  align-items: center;
  line-height: 23px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 20px;
}

.services-title a {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 500ms ease;
}

.services-single:hover .services-title a {
  color: #1b1525;
}

p.services-text {
  /* width: 208px;
    height: 144px; */
  font-size: 14px;
  color: #aea8b9;
  line-height: 24px;
  transition: all 500ms ease;
  margin-left: 3px;
  margin-right: 3px;
}

.services-single:hover p.services-text {
  color: #6c757d;
}

@media (max-width: 850px) {
  #services {
    width: 100%;
    height: 180vh;
  }

  .headingdata {
    color: white;
    text-align: center;
    padding-left: 1%;
    padding-right: 1%;
  }

  .headingdata h2 {
    font-size: 25px;
  }

  .services-bottom {
    height: 280vh;
    margin-top: 20px;
  }

  .services-list {
    height: 280vh;
    display: block;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
  }

  .services-bottom .services-list .services-single {
    margin-left: 6%;
    padding-right: 50px;
  }

  .services-content {
    width: 100%;
    height: 50vh;
    width: 330px;
  }
}

/* ==================  TESTIMONIAL  ============================== */
#testimonial {
  width: 100%;
  height: 520px;
  position: relative;
  display: block;
  background-color: white;
}

.testimonial-inner {
  position: relative;
  display: block;
  max-width: 1510px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #f7f7f9;
  /* z-index: 1; */
}

.testimonial-shape {
  width: 478px;
  height: 368px;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  animation: testimonial-img-move 2s infinite linear;
}

.testimonial-shape img {
  width: 100%;
  vertical-align: middle;
}

@keyframes testimonial-img-move {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.testimonial-container {
  max-width: 1200px;
  width: 100%;
  height: 520px;
  padding-left: 15px;
  padding-right: 15px;
}

.testimonial-inner-content {
  width: 100%;

  /* height: 300px; */
  position: relative;
  display: block;
  border-bottom: 1px solid #e9e9ee;
  padding: 110px 0 108px;
  overflow: hidden;
}

.testimonial-slide {
  width: 100%;
  position: relative;
  display: block;
  margin-right: 30px;
  z-index: 1;
}

.testimonial_top {
  max-width: 1200px;
  width: 100%;
  /* height: 250px; */
  position: relative;
  display: flex;
}

.testimonial-img {
  width: 170px;
  height: 250px;
  position: relative;
  display: inline-block;
  top: 10px;
}

.testimonial-img img {
  display: block;
  width: auto !important;
  border-radius: 50%;
  /* vertical-align: middle; */
}

.testimonial_content {
  width: 900px;
  height: 250px;
  display: block;
  margin-left: 100px;
  margin-right: 20px;
}

.tesimonial-text {
  /* display: block; */
  width: 900px;
  height: 150px;
  font-size: 30px;
  font-weight: 400;
  color: #1b1525;
  line-height: 50px;
}

.testimonial-bottom {
  width: 900px;
  height: 67px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.testimonial-client-info {
  height: 30px;
  display: block;
}

h5.testimonial-client-name {
  font-size: 20px;
  color: #6653e8;
  font-weight: 700;
  line-height: 30px;
}

.testimonial-quote {
  width: 73px;
  height: 67px;
  display: block;
}

.testimonial-quote img {
  width: auto !important;
}

/* ==================  COUNTER  ============================== */

#counter-one {
  width: 100%;
  /* height: 223px; */
  position: relative;
  display: block;
  background-color: #f7f7f9;
  padding: 120px 0 190px;
  z-index: 2;
}

.counter-one-bg {
  background-image: url("../images/funfact-bg-1-1.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #f7f7f9;
  background-blend-mode: luminosity;
  position: absolute;
  width: 100%;
  height: 532px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
}

.counter-container {
  max-width: 1200px;
  width: 100%;
  height: 222px;
  position: relative;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  z-index: 10;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}

.col {
  width: 100%;
  /* height: 222px; */

  flex: 0 0 auto;
  /* align-items: center;
  justify-content: space-around; */
  padding-left: 15px;
  padding-right: 15px;
}

.counter-one-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.counter-one-single {
  /* width: 300px;
  height: 185px; */
  position: relative;

  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 31px;
  padding: 0 45px;
  animation: name duration timing-function delay iteration-count direction
    fill-mode;
  /* animation: fadeInUp 1s ease 100ms infinite;
  animation: animated 1s ease 100ms infinite both; */
}

.counter-one-single:before {
  position: absolute;
  top: 47px;
  bottom: 52px;
  left: 0px;
  content: "";
  width: 1px;
  background-color: #e9e9ee;
  list-style-position: outside;
  visibility: visible;
}

.counter-one-single:first-child::before {
  display: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-one-icon {
  width: 75px;
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  text-align: center;

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  margin: 0 auto 12px;
  z-index: 1;
}

.counter-one-icon::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  border-radius: 50%;
  background-color: #6653e8;
  color: white;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.counter-one-single:hover .counter-one-icon::before {
  transform: scaleX(1);
}

.counter-one-icon span {
  position: relative;
  display: inline-block;
  color: #0087ca;
  font-size: 32px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1) rotateY(0deg);
}

.counter-one-icon span i {
  font-size: 32px;
  color: #0087ca;
}
.counter-one-single:hover .counter-one-icon span {
  transform: scale(0.9) rotateY(360deg);
  background: white;
  color: #ffffff;
}

.digit {
  width: 100%;
  height: 57px;
  display: block;
  position: absolute;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #2be4ac;
  text-align: left;
  top: 70px;
  left: 100px;
  margin-top: 10px;
  overflow: hidden;
}

.plus {
  left: 150px;
}

.plus1 {
  left: 170px;
}

.counter-one-title {
  width: 203px;
  height: 26px;
  display: block;
  position: absolute;
  top: 130px;
  left: 40px;
  font-size: 16px;
  color: #1b1525;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  padding-bottom: 15px;
}

/* ================  HELPING  ======================== */
#helping {
  max-width: 1200px;
  width: 100%;
  height: 794px;
  position: relative;
  display: block;
  margin-top: -105px;
}

.helping-shape-1 {
  position: absolute;
  bottom: 40px;
  right: 0;
  opacity: 0.05;
}

.helping-shape-1 img {
  width: auto;
}

.helping-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.helping__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  min-height: 794px;
}

.helping__left-bg {
  background-image: url("../images/helping-left-bg.jpg");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.helping-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}

.helping-section-title {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 49px;
  text-align: center;
}

.helping-section-title__tagline-box {
  position: relative;
  display: inline-block;
  text-align: center;
}

.helping-section-title__tagline {
  position: relative;
  display: inline-block;
  color: #0087ca;
  font-size: 16px;
  font-weight: 700;
  padding-left: 16px;
}

.helping-section-title-shape {
  position: absolute;
  top: -2px;
  left: 0;
}

.helping-section-title-shape img {
  width: auto;
  vertical-align: middle;
}

.helping-section-title__title {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.helping__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  background-color: #1b1525;
  min-height: 794px;
}

.row-helping {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xl-12 {
  flex: 0 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xl-6 {
  flex: 0 0 auto;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: #f7f7f9;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: #777181;
  display: block;
}

.comment-form__input-box.text-message-box {
  height: 188px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: #777181;
  height: 188px;
  width: 100%;
  background-color: #f7f7f9;
  padding: 18px 30px 30px;
  border: none;
  border-radius: 0px;
  outline: none;
  margin-bottom: 0px;
}

textarea {
  resize: vertical;
}

.contact-page__form .comment-form__btn {
  margin: 20px auto 0;
  display: block;
  font-size: 14px;
}

/* ================== FOOTER ============================== */

#site-footer {
  position: relative;
  display: block;
  background-color: #1b1525;
  z-index: 1;
}

.site-footer-bg-1 {
  background-image: url("../images/site-footer-shape-1.png");
  position: absolute;
  top: 0;
  left: 0;
  height: 388px;
  width: 388px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-blend-mode: luminosity;
  background-color: #1b1525;
  opacity: 0.12;
  z-index: -1;
  animation: slideInLeft 2500ms 100ms both;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.site-footer-bg-2 {
  background-image: url("../images/site-footer-shape-2.png");
  position: absolute;
  bottom: 0;
  right: 0;
  height: 636px;
  width: 531px;
  background-color: #1b1525;
  background-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.12;
  z-index: -1;
  animation: slideInRight 2500ms 100ms both;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.site-footer__top {
  position: relative;
  display: block;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  /* height: 131px; */
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.site-footer__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 39px;
  border: 1px solid #322d3b;
}

.site-footer__top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__top-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.site-footer__top-icon span i {
  font-size: 65px;
  color: #2be4ac;
}

.site-footer__top-title {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  line-height: 34px;
}

.site-footer__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__btn:hover {
  color: #0087ca;
}

.site-footer__btn:after {
  background-color: #ffffff;
}

.site-footer__middle {
  position: relative;
  display: block;
  padding: 74px 0 80px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: -15px;
  margin-left: -15px;
}

.footer-col {
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding: 0 15px;
  animation: fadeInUp 1s 100ms both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.col2 {
  width: 16.6666666667%;
}

.col3 {
  width: 25%;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 73px;
  margin-top: 4px;
}

.footer-widget__logo {
  position: relative;
  display: inline-block;
  padding-bottom: 26px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
  margin-top: -3px;
}

.footer-widget__about-text {
  font-size: 14px;
  color: #aea8b9;
  line-height: 26px;
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
  margin-top: -1px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.footer-widget__links-list li {
  line-height: 30px;
}

.footer-widget__links-list li a {
  position: relative;
  font-size: 14px;
  color: #aea8b9;
  text-decoration: none;
  transition: all 500ms ease;
  cursor: pointer;
}

.footer-widget__links-list li a:hover {
  color: #ffffff;
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .icon span i {
  font-size: 13px;
  color: #6653e8;
}

.footer-widget__contact-list li .text {
  margin-left: 10px;
}

.footer-widget__contact-list li .text p {
  font-size: 14px;
  color: #aea8b9;
}

.footer-widget__contact-list li .text p a {
  color: #aea8b9;
  transition: all 500ms ease;
}

.footer-widget__contact-list li:hover .text p a {
  color: #ffffff;
}

.foot-text {
  display: block;
  width: 247px;
  height: 64px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #aea8b9;

  margin-left: 10px;
}

.site-footer__bottom {
  /* max-width: 1200px; */
  width: 100%;
  height: 94px;
  position: relative;
  display: block;
  background-color: #100d17;
}

.footer-col-bottom {
  flex: 0 0 auto;
  width: 100%;
  padding: 0 15px;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 31px 0;
}

.site-footer__bottom-text {
  font-size: 14px;
  color: #aea8b9;
}

.site-footer__bottom-text a {
  color: #aea8b9;
  text-decoration: none;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: #ffffff;
}

/* ================  SCROLL TO TOP  ======================== */

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #0087ca;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}
/* ================  Media Queries  ======================== */

/* =======  Media Queries(for width <= 799px) ======== */

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: -600px;
    height: 100vh;
    width: 600px;
    background-color: #1b1525;
    color: white;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
  }

  #navbar ul li {
    display: block;
  }

  #navbar.active {
    left: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #0087ca;
    font-size: 20px;
    font-weight: 900;
    line-height: 20px;
    padding-left: 20px;
    cursor: pointer;
  }

  #close {
    display: initial;
    position: absolute;
    top: 20px;
    right: 15px;
    color: #f7f7f9;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    cursor: pointer;
  }
}

.firstdata {
  background-color: #f7f7f9;
  height: 90vh;
  display: flex;
}

.firstdata .imagefirstdata {
  width: 50%;
  margin-top: 70px;
  margin-left: 40px;
  padding-right: 10px;
}

.firstdata .imagefirstdata img {
  margin-top: 20px;
  margin-left: 80px;
  border-radius: 8px;
  height: 68vh;
}

.firstdata .imagefirstdata img:hover {
  transform: translateY(-20px);
  transition: 0.5s;
  cursor: pointer;
}

.formbox {
  width: 90%;
  max-width: 700px;
  /* position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* display:flex;
  justify-content: center;
  align-items: center; */
  background: #fff;
  padding: 50px 60px 70px;
  text-align: center;
  border-radius: 9px;
  margin-bottom: 20px;
  margin-right: 20px;
  margin-top: 40px;
}

.formbox h1 {
  font-size: 30px;
  margin-bottom: 60px;
  color: #0087ca;
}

.inputgroup .fixedgroup {
  display: flex;
  justify-content: space-between;
}

.inputfield {
  background: #eaeaea;
  margin: 15px 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  flex-basis: 45%;
}

input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 18px 15px;
}

.inputfield i {
  margin-left: 15px;
  color: #999;
}

.singlegroup {
  height: 30vh;
  background: #eaeaea;
}

.singlegroup .inputfield {
  background: #eaeaea;
  margin: 15px 0;
  border-radius: 3px;
  align-items: center;
}

.singlegroup .inputfield i {
  margin-left: 15px;
}

.singlegroup .inputfield input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  /*padding: 18px 45px;*/
}

.btnfield {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 5px;
}

.btnfield button {
  color: #fff;
  background: #0087ca;
  border: 0;
  height: 40px;
  border-radius: 8px;
  width: 90%;
  outline: 0;
  cursor: pointer;
  transition: background 1s;
  margin-top: 10px;
}

.btnfield button:hover {
  background: #0087ca;
  transform: translateY(-8px);
  transition: 0.5s;
}

.left-side {
  margin-top: 20px;
  height: 40vh;
}

.left-side .details {
  display: flex;
  margin-bottom: 20px;
}

.left-side .details i {
  font-size: 45px;
  color: #0087ca;
  margin-left: 20px;
  margin-top: 10px;
}

.left-side .details .furtherdetails h4 {
  margin-left: 35px;
  margin-top: 8px;
  color: black;
}

.left-side .details .furtherdetails p {
  margin-left: 35px;
}

.footer_end {
  background: #1b1525;
  height: 16vh;
  width: 100%;
}

.footer_end h4 {
  text-align: center;
  top: 50%;
  padding-top: 50px;
  color: #aea8b9;
  font-size: 12px;
}

@media screen and (max-width: 1200px) {
  .footer_end {
    width: 100%;
  }

  .footer_end h4 {
    left: 50%;
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

footer {
  position: fixed;
  bottom: 0;
}

@media (max-height: 800px) {
  footer {
    position: static;
  }
  header {
    padding-top: 100px;
  }
}

.footer-distributed {
  background-color: #dddddd;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 50px 50px;
}

.middle-blank {
  background-color: #dddddd;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 30%;
}

.footer-distributed .footer-left h3 {
  color: black;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin: 0;
  font-size: 23px;
}

.footer-distributed h3 span {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #00a1e0;
}

.footer-distributed .footer-left .footer-company-name {
  font-size: 10px;
}

/* Footer links */

.footer-distributed .footer-links {
  color: black;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: black;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 37%;
  line-height: 200%;
}

.footer-distributed .footer-center i {
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 200%;
  margin: 10px 15px;
  vertical-align: middle;
}

.fa-map-marker {
  color: black;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: black;
  vertical-align: middle;
  margin: 0;
  text-decoration: none;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: black;
  text-decoration: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: black;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: black;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 5px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  color: #00a1e0;
}

.footer-links a:hover {
  color: #00a1e0;
}

.footer-distributed .footer-icons ion-icon:hover {
  color: #00a1e0;
}

@media (max-width: 880px) {
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

#btn-back-to-top {
  position: fixed;
  top: 90vh;
  right: 20px;
  background-color: #00a1e0;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  z-index: 1000;
  cursor: pointer;
  color: #fff;
}

#btn-back-to-top:hover {
  transform: translateY(-10px);
  transition: 0.5s ease;
}

@media (max-width: 900px) {
  .firstdata {
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    height: fit-content;
  }

  .firstdata .imagefirstdata {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }

  .firstdata .imagefirstdata img {
    margin-top: 10px;
    padding-left: 0;
    margin-right: 20px;
    height: 50vh;
    width: 80%;
    margin-left: 10%;
  }
}

@media (max-width: 900px) {
  .formbox {
    height: 110vh;
    margin-left: 5%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  background-color: #efefef;
  overflow: scroll;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: grey;
  border-radius: 20px;
}

/* ================== MAIN HEADER ============================== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: white;
  color: rgb(13, 26, 38);
  position: fixed;
  width: 100%;
  z-index: 4;
  height: 18vh;
}

.nav-links a {
  font-family: "Lexend Peta", sans-serif;
  color: black;
  font-weight: normal;
}

.logo {
  float: left;
  padding-left: 10px;
  font-size: 2em;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.logo a img {
  height: 98px;
  padding-left: 20px;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 17px;
  z-index: 2;
}

.menu li {
  padding: 5px 14px;
  list-style-type: none;
  /*display: inline-block;*/
  display: inline-block;
  position: relative;
}

.menu li a {
  font-family: Georgia, "Times New Roman", Times, serif;
}

.menu li a::after {
  content: "";
  height: 3px;
  width: 0;
  background: #0087ca;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.5s;
}

.menu li a:hover::after {
  width: 100%;
}

.menu li a:hover::before {
  width: 0;
}

/* DROPDOWN MENU */
.services {
  position: relative;
}

.dropdown {
  background-color: #00a1e0;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
  color: black;
}

.dropdown li:hover {
  background-color: #00a1e0;
}

.services:hover .dropdown {
  display: block;
}

input[type="checkbox"] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

.empty {
  height: 90px;
  width: 100%;
  background-color: #f7f7f9;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 950px) {
  .navbar .logo img {
    /* border: 2px solid black;*/
    padding-right: 60px;
    padding-bottom: 14px;
  }

  .menu {
    display: none;
    position: absolute;
    background-color: white;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    margin-top: 22px;
    /*border: 2px solid red;*/
  }

  .menu li {
    display: flex;
  }

  .menu li a {
    margin-left: 40%;
  }

  .menu li a::after {
    content: "";
    height: 3px;
    width: 0;
    background: #0087ca;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s;
  }

  .menu li a:hover::before {
    width: 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color: white;
    transition: 0.3s ease;
  }

  .menu li + li {
    margin-top: 25px;
  }

  input[type="checkbox"]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #00a1e0;
  }
}

@media (max-width: 950px) {
  .containered {
    background-color: #f7f7f9;
  }

  .containered .centered {
    margin-top: 10px;
    font-size: 22px;
  }
}

#empty {
  height: 115px;
  width: 100%;
}

.containered {
  position: relative;
  text-align: center;
  color: white;
  /* padding-top: 120px; */
  z-index: -2;
}

.containered img {
  height: 38vh;
  filter: grayscale(96%);
}

.centere {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2be4ac;
  font-weight: bold;
  cursor: pointer;
}

.centere a {
  color: #2be4ac;
}

.centere a:hover {
  cursor: pointer;
}

.centered {
  position: absolute;
  top: 60%;
  left: 50%;
  font-size: 36px;
  font-weight: bold;
  transform: translate(-50%, -50%);
}

.middledata {
  background-color: #f7f7f9;
  height: 15vh;
}

.middledata h3 {
  text-align: center;
  color: #00a1e0;
  font-size: 19px;
  padding-top: 22px;
}

.middledata h1 {
  color: black;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin-top: 21px;
}

.firstdata {
  background-color: #f7f7f9;
  height: 90vh;
  display: flex;
}

.firstdata .imagefirstdata {
  width: 50%;
  margin-top: 70px;
  margin-left: 60px;
}

.firstdata .imagefirstdata img {
  margin-top: 20px;
  margin-left: 80px;
  border-radius: 8px;
}

.firstdata .imagefirstdata img:hover {
  transform: translateY(-20px);
  transition: 0.5s;
  cursor: pointer;
}

.firstdata .paraseconddata {
  width: 50%;
  margin-top: 70px;
}

.firstdata .paraseconddata h3 {
  color: #00a1e0;
  font-size: 19px;
  margin-left: 20px;
  margin-top: 20px;
}

.firstdata .paraseconddata h1 {
  color: black;
  font-size: 34px;
  font-weight: 700;
  margin-left: 20px;
  margin-top: 20px;
  line-height: 40px;
}

.firstdata .paraseconddata p {
  font-size: 16px;
  line-height: 30px;
  color: #777181;
  margin-left: 20px;
  margin-top: 20px;
}

.left-side {
  margin-top: 20px;
  height: 40vh;
}

.left-side .details {
  display: flex;
  margin-bottom: 20px;
}

.left-side .details i {
  font-size: 45px;
  color: #00a1e0;
  margin-left: 20px;
  margin-top: 10px;
}

.left-side .details .furtherdetails h4 {
  margin-left: 35px;
  margin-top: 8px;
  color: black;
}

.left-side .details .furtherdetails p {
  margin-left: 35px;
}

.containercontact {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #f7f7f9;
}
.formbox_container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f9;
  height: 90vh;
}

.formbox {
  width: 90%;
  max-width: 780px;
  /* position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* display:flex;
  justify-content: center;
  align-items: center; */
  background: #fff;
  padding: 50px 60px 70px;
  text-align: center;
  border-radius: 9px;
}

.formbox h1 {
  font-size: 30px;
  margin-bottom: 60px;
  color: #00a1e0;
}

.inputgroup .fixedgroup {
  display: flex;
  justify-content: space-between;
}

.inputfield {
  background: #eaeaea;
  margin: 15px 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  flex-basis: 45%;
}

input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 18px 15px;
}

.inputfield i {
  margin-left: 15px;
  color: #999;
}

.singlegroup {
  height: 30vh;
  background: #eaeaea;
}

.singlegroup .inputfield {
  background: #eaeaea;
  margin: 15px 0;
  border-radius: 3px;
  align-items: center;
}

.singlegroup .inputfield i {
  margin-left: 15px;
}

.singlegroup .inputfield input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  /*padding: 18px 45px;*/
}

.btnfield {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 5px;
}

.btnfield button {
  color: #fff;
  background: #00a1e0;
  border: 0;
  height: 40px;
  border-radius: 8px;
  width: 90%;
  outline: 0;
  cursor: pointer;
  transition: background 1s;
  margin-top: 10px;
}

.btnfield button:hover {
  background: #00a1e0;
  transform: translateY(-8px);
  transition: 0.5s;
}

.footer_end {
  background: #1b1525;
  height: 16vh;
  width: 100%;
}

.footer_end h4 {
  text-align: center;
  top: 50%;
  padding-top: 50px;
  color: #aea8b9;
  font-size: 12px;
}

@media screen and (max-width: 1200px) {
  .footer_end {
    width: 100%;
  }

  .footer_end h4 {
    left: 50%;
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

footer {
  position: fixed;
  bottom: 0;
}

@media (max-height: 800px) {
  footer {
    position: static;
  }
  header {
    padding-top: 100px;
  }
}

.footer-distributed {
  background-color: #dddddd;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 50px 50px;
}

.middle-blank {
  background-color: #dddddd;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 30%;
}

.footer-distributed .footer-left h3 {
  color: black;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin: 0;
  font-size: 23px;
}

.footer-distributed h3 span {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #00a1e0;
}

.footer-distributed .footer-left .footer-company-name {
  font-size: 10px;
}

/* Footer links */

.footer-distributed .footer-links {
  color: black;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: black;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 37%;
  line-height: 200%;
}

.footer-distributed .footer-center i {
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 200%;
  margin: 10px 15px;
  vertical-align: middle;
}

.fa-map-marker {
  color: black;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: black;
  vertical-align: middle;
  margin: 0;
  text-decoration: none;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: black;
  text-decoration: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: black;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: black;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 5px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  color: #00a1e0;
}

.footer-links a:hover {
  color: #00a1e0;
}

.footer-distributed .footer-icons ion-icon:hover {
  color: #00a1e0;
}

@media (max-width: 880px) {
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

.titleclass img {
  justify-content: center;
}

.titleclass h1 {
  color: black;
}

.productsinfo {
  margin: 20px 20px;
}

.productsinfo h4 {
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: 570;
  font-family: Raleway, sans-serif;
  line-height: 1.5;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1250px;
  margin: 20px auto;
  padding: 20px;
  gap: 20px;
}
.card-list .card-item {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 0.5s ease;
}
.card-list .card-item:hover {
  transform: translateY(-10px);
  background-position: 0 100%;
  transition: 0.5s;
}
.card-list .card-item img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover;
}
.card-list span {
  display: inline-block;
  background: #f7dff5;
  margin-top: 32px;
  padding: 8px 15px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}
.card-list .developer {
  background-color: #f7dff5;
  color: #b22485;
}
.card-list .designer {
  background-color: #d1e8ff;
  color: #2968a8;
}
.card-list .editor {
  background-color: #d6f8d6;
  color: #205c20;
}
.card-item h3 {
  color: #000;
  font-size: 1.438rem;
  margin-top: 28px;
  font-weight: 600;
  font-family: Raleway, sans-serif;
}
.card-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  height: 40px;
  width: 40px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 40px;
  transition: 0.2s ease;
}
.card-list .card-item:hover .arrow {
  background: #000;
  color: #fff;
}

.card-list .card-item .name {
  font-weight: 700;
  color: #0d0d0d;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 22px;
  font-family: Raleway, sans-serif;
}

.card-list .card-item .description {
  font-size: 1rem;
  line-height: 1.7;
  color: #3d3d3d;
  margin-bottom: 2.5rem;
  font-family: Raleway, sans-serif;
}

@media (max-width: 700px) {
  .card-list {
    display: flex;
    flex-direction: column;
  }

  .card-list .card-item {
    padding: 15px;
    flex: 100%;
  }

  .card-list .card-item .button {
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-left: 25%;
    font-family: Raleway, sans-serif;
  }
}

@media (max-width: 900px) {
  .firstdata {
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    height: fit-content;
  }

  .firstdata .imagefirstdata {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }

  .firstdata .imagefirstdata img {
    margin-top: 0;
    padding-left: 0;
    margin-right: 20px;
    height: 50vh;
    width: 80%;
    margin-left: 10%;
  }
}

@media (max-width: 900px) {
  .middledata {
    height: 25vh;
  }
}

@media (max-width: 900px) {
  .formbox_container {
    height: 110vh;
  }
}

@media (max-width: 900px) {
  .firstdata .paraseconddata {
    height: fit-content;
    width: 98%;
    padding-left: 1%;
  }

  .firstdata .paraseconddata h1 {
    width: 100%;
  }

  .firstdata .paraseconddata p {
    width: 90%;
  }

  .firstdata .paraseconddata .left-side {
    width: 100%;
    height: fit-content;
    margin-top: 19px;
  }

  .firstdata .paraseconddata .left-side .details {
    width: 90%;
  }
}

.button {
  display: inline-block;
  align-items: center;
  border: none;
  padding: 10px 50px;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  background-color: #00a1e0;
  color: #ffffff;
  box-shadow: 0px 5px 0px #00a1e0;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 20px;
  margin-left: 70px;
  width: 50%;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 0px #00a1e0;
}

.secondarydata {
  display: flex;
  height: 96vh;
  padding-top: 30px;
  
}

.secondarydata .firstsecondarydata {
  width: 50%;
}

.secondarydata .firstsecondarydata h3 {
  color: #00a1e0;
  margin-top: 20px;
  margin-left: 100px;
}

.secondarydata .firstsecondarydata h1 {
  color: black;
  margin-top: 20px;
  margin-left: 100px;
  font-weight: bolder;
}

.secondarydata .firstsecondarydata p {
  margin-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
  font-size: 16px;
  line-height: 31px;
  color: #777181;
}

.secondarydata .secondsecondarydata {
  width: 50%;
}

.secondarydata .secondsecondarydata img {
  margin-top: 40px;
  margin-left: 20px;
  border-radius: 9px;
}

.secondarydata .secondsecondarydata img:hover {
  transform: translateY(-20px);
  transition: 0.5s;
}

@media (max-width: 900px) {
  .secondarydata {
    height: fit-content;
    display: flex;
    flex-direction: column;
  }

  .secondarydata .firstsecondarydata {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .secondarydata .firstsecondarydata h3 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .secondarydata .firstsecondarydata h1 {
    margin-left: 1%;
    margin-right: 1%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .secondarydata .firstsecondarydata p {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    margin-left: 3%;
    margin-right: 3%;
  }

  .secondarydata .secondsecondarydata {
    width: 100%;
    margin-bottom: 20px;
  }

  .secondarydata .secondsecondarydata img {
    width: 90%;
    margin-left: 3%;
    margin-right: 3%;
  }
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00a1e0;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

  z-index: 1000;
  cursor: pointer;
  color: #fff;
}

#btn-back-to-top:hover {
  transform: translateY(-10px);
  transition: 0.5s ease;
}
