@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: 0;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("../poppins/Poppins-Light.ttf");
}
@font-face {
  font-family: "Poppins-Black";
  src: url("../poppins/Poppins-Black.ttf");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins-Black";
  src: url("../poppins/Poppins-Bold.ttf");
}
body {
  font-family: "Poppins-Light" !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primery-color);
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

:root {
  --primery-color: #004AAD;
  --secondary-color: #0248A7;
}

#header {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  z-index: 1111;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 1px 20px 0px rgba(0, 74, 173, 0.3019607843);
  background: #fff;
  position: fixed;
  top: 0;
}
#header nav .navbar-toggler {
  background-color: transparent;
  margin: 0px 12px 0 0px;
  padding: 12px 0px 12px 8px;
  border: none;
}
#header nav .navbar-light .navbar-toggler {
  border-color: transparent;
}
#header nav .navbar-toggler span {
  display: block;
  position: relative;
  width: 25px;
  height: 3px;
  background: #40bcbc;
}
#header nav .navbar-toggler span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 26px;
  height: 100%;
  border-radius: 12px;
  border-radius: 12px;
  background: #40bcbc;
  transition: all 0.3s ease-in-out;
  transform: translateY(0px) rotate(45deg);
}
#header nav .navbar-toggler span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 26px;
  height: 100%;
  border-radius: 12px;
  border-radius: 12px;
  background: #40bcbc;
  transition: all 0.3s ease-in-out;
  transform: translateY(0px) rotate(-45deg);
}
#header nav .navbar-toggler:focus {
  box-shadow: none;
}
#header nav .navbar-toggler .collapsed span {
  background: #40bcbc;
  background-image: none !important;
}
#header nav .navbar-toggler span {
  background: #ffffff;
  background-image: none !important;
}
#header nav .collapsed span {
  background: #202020;
  height: 3px;
  border-radius: 12px;
  width: 18px;
}
#header nav .collapsed span::before {
  transform: translateY(-8px) rotate(0);
}
#header nav .collapsed span::after {
  transform: translateY(8px) rotate(0);
}
#header nav .navbar-collapse {
  position: relative;
}
#header nav .dropdown-menu {
  border-radius: 0 0 12px 12px;
  padding: 0;
  border: none;
  margin-top: 10px;
  left: calc(30% - 100px);
  box-shadow: 0px 4px 10px rgba(34, 161, 192, 0.4588235294);
}
#header nav .dropdown-menu li {
  margin: 6px;
}
#header nav .dropdown-menu .dropdown-item {
  font-size: 16px;
  color: var(--primery-color);
  font-family: "Poppins-Medium";
}
#header nav .dropdown-menu .dropdown-item:hover {
  background: transparent;
}
#header nav .dropdown-services {
  padding: 12px 8px;
}
#header nav .dropdown-services h3 {
  font-size: 18px;
  color: var(--primery-color);
  font-family: "Poppins-SemiBold";
}
#header nav .dropdown-services hr {
  margin: 8px 0;
}
#header nav .dropdown-services ul {
  padding-left: 0;
}
#header nav .dropdown-services ul li {
  padding: 0;
  margin-bottom: 12px;
}
#header nav .dropdown-services ul li a {
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-family: "Poppins-Medium";
  display: flex;
  transition: all 0.3s ease-in-out;
}
#header nav .dropdown-services ul li a:hover {
  transform: translateX(5px);
  color: #000;
}
#header nav .software-services {
  padding: 12px 8px;
}
#header nav .software-services h3 {
  font-size: 18px;
  color: var(--primery-color);
  font-family: "Poppins-SemiBold";
}
#header nav .software-services hr {
  margin: 8px 0;
}
#header nav .software-services ul {
  padding-left: 0;
}
#header nav .software-services ul li {
  padding: 0;
  margin-bottom: 12px;
}
#header nav .software-services ul li a {
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-family: "Poppins-Medium";
  display: flex;
  transition: all 0.3s ease-in-out;
}
#header nav .software-services ul li a:hover {
  transform: translateX(5px);
  color: #000;
}
#header nav .ui-ux-services {
  padding: 12px 8px;
}
#header nav .ui-ux-services h3 {
  font-size: 18px;
  color: var(--primery-color);
  font-family: "Poppins-SemiBold";
}
#header nav .ui-ux-services hr {
  margin: 8px 0;
}
#header nav .ui-ux-services ul {
  padding-left: 0;
}
#header nav .ui-ux-services ul li {
  padding: 0;
  margin-bottom: 12px;
}
#header nav .ui-ux-services ul li a {
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-family: "Poppins-Medium";
  display: flex;
  transition: all 0.3s ease-in-out;
}
#header nav .ui-ux-services ul li a:hover {
  transform: translateX(5px);
  color: #000;
}
#header nav .contact-us-wrapper-header {
  display: flex;
  background: #f7f7f7;
  padding: 10px;
  justify-content: space-between;
  border-radius: 0 0 12px 12px;
}
#header nav .contact-us-wrapper-header .contact-us-wrapper-info h3 {
  color: var(--primery-color);
  font-family: "Poppins-SemiBold";
  margin-bottom: 0;
  font-size: 20px;
}
#header nav .contact-us-wrapper-header .contact-us-wrapper-info p {
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
}
#header nav .contact-us-wrapper-header .btn-get-quote {
  margin-top: 12px;
}
#header nav .contact-us-wrapper-header .btn-get-quote button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  width: 150px;
}
#header nav .contact-us-wrapper-header .btn-get-quote button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#header nav .contact-us-wrapper-header .btn-get-quote button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#header nav .contact-us-wrapper-header .btn-get-quote button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 20px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#header nav .contact-us-wrapper-header .btn-get-quote button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#header nav ul li {
  padding: 0px 14px;
  list-style-type: none;
}
#header nav ul li .nav-link {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins-Medium";
  color: var(--primery-color);
  transition: 1s;
  position: relative;
  transition: 0.3s ease-in-out;
  display: -webkit-inline-box;
  border: 1px solid transparent;
}
#header nav ul li .nav-link:hover {
  color: var(--secondary-color);
}
#header nav ul li .nav-link i {
  font-size: 15px;
  padding: 5px 0 0 6px;
  font-weight: 900;
}
#header nav ul li a.active {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
#header nav ul li .active {
  border-bottom: 1px solid #40bcbc;
}
#header nav ul .btn-view button {
  border-radius: 5px;
  background: var(--primery-color);
  font-family: "Poppins-Medium";
  border: 2px solid transparent;
  color: #fff;
}

.modal .modal-content {
  border-radius: 0;
}
.modal .modal-header {
  border-bottom: 1px solid transparent;
  padding: 18px 18px 0px 18px;
}
.modal .modal-header .modal-title {
  font-size: 28px;
  font-family: "Poppins-Medium";
  color: var(--primery-color);
  text-transform: capitalize;
}
.modal .modal-header p {
  margin-bottom: 0;
  color: #000;
  text-transform: capitalize;
}
.modal .modal-header p strong a {
  text-decoration: none;
  color: var(--secondary-color);
}
.modal .modal-body .form-wrapper {
  margin-right: 0px;
}
.modal .modal-body .form-wrapper .your-name {
  margin-bottom: 24px;
}
.modal .modal-body .form-wrapper .your-name input {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
.modal .modal-body .form-wrapper .your-name input::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .your-name input::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .your-name select {
  padding: 10px 14px;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
.modal .modal-body .form-wrapper .your-name option::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .your-name option::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .file-upload {
  margin-bottom: 24px;
}
.modal .modal-body .form-wrapper .file-upload input {
  padding: 18px 24px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
.modal .modal-body .form-wrapper .file-upload input::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .file-upload input::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper textarea {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
.modal .modal-body .form-wrapper textarea::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper textarea::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
.modal .modal-body .form-wrapper .form-control:focus {
  box-shadow: 0 0 0 2px var(--primery-color);
}
.modal .modal-body .form-wrapper .btn-view {
  margin-top: 12px;
}
.modal .modal-body .form-wrapper .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
.modal .modal-body .form-wrapper .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.modal .modal-body .form-wrapper .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.modal .modal-body .form-wrapper .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.modal .modal-body .form-wrapper .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.modal .modal-body .get-point {
  background-image: url(../images/popup_bg.svg);
  background-size: cover;
  background-position: center;
  padding: 14px;
}
.modal .modal-body .get-point h3 {
  text-transform: capitalize;
  font-size: 19px;
  font-family: "Poppins-Medium";
  color: #fff;
}
.modal .modal-body .get-point ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.modal .modal-body .get-point ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
}
.modal .modal-body .address-wrapper {
  margin-top: 24px;
}
.modal .modal-body .address-wrapper .location-wrapper .images {
  background: rgba(221, 236, 255, 0.6588235294);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(236, 236, 236, 0);
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
.modal .modal-body .address-wrapper .location-wrapper .content strong {
  color: var(--secondary-color);
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  display: flex;
}
.modal .modal-body .address-wrapper a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-family: "Poppins-Medium";
  transition: 0.3s ease-in-out;
}
.modal .modal-body .address-wrapper a:hover {
  color: var(--primery-color);
}

#slider-section {
  padding: 76px 0 40px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(270deg, rgba(0, 74, 173, 0.6117647059), rgba(255, 255, 255, 0));
}
#slider-section .mobile-banner-images h1 .text {
  color: var(--primery-color);
  font-size: 42px;
  font-family: "Poppins-Black";
}
#slider-section .mobile-banner-images h1 .development-text {
  color: #202020;
  font-size: 36px;
  font-family: "Poppins-Medium";
}
#slider-section .mobile-banner-images .bottom-desc b {
  font-size: 40px;
  color: #dc2e3d;
  font-family: "Poppins-Black";
}
#slider-section .mobile-banner-images .bottom-desc .bord-line {
  border-left: 1px solid #ccc;
  height: 32px;
  margin: 0 20px;
}
#slider-section .mobile-banner-images .bottom-desc .desc {
  text-align: justify;
  font-size: 18px;
  color: #202020;
}
#slider-section .mobile-banner-images .bottom-desc .desc span {
  font-family: "Poppins-Medium";
}
#slider-section .mobile-banner-images .btn-view {
  margin-top: 12px;
}
#slider-section .mobile-banner-images .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#slider-section .mobile-banner-images .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#slider-section .mobile-banner-images .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#slider-section .mobile-banner-images .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}
#slider-section .mobile-banner-images .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#slider-section .mobile-banner-images img {
  width: 400px;
}
#slider-section .website-banner-images h1 .text {
  color: var(--primery-color);
  font-size: 42px;
  font-family: "Poppins-Black";
}
#slider-section .website-banner-images h1 .development-text {
  color: #202020;
  font-size: 36px;
  font-family: "Poppins-Medium";
}
#slider-section .website-banner-images .bottom-desc b {
  font-size: 40px;
  color: #dc2e3d;
  font-family: "Poppins-Black";
}
#slider-section .website-banner-images .bottom-desc .bord-line {
  border-left: 1px solid #ccc;
  height: 32px;
  margin: 0 20px;
}
#slider-section .website-banner-images .bottom-desc .desc {
  text-align: justify;
  font-size: 18px;
  color: #202020;
}
#slider-section .website-banner-images .bottom-desc .desc span {
  font-family: "Poppins-Medium";
}
#slider-section .website-banner-images .btn-view {
  margin-top: 12px;
}
#slider-section .website-banner-images .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#slider-section .website-banner-images .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#slider-section .website-banner-images .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#slider-section .website-banner-images .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}
#slider-section .website-banner-images .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#slider-section .website-banner-images img {
  width: 400px;
}
#slider-section .gis-banner-images h1 .text {
  color: var(--primery-color);
  font-size: 42px;
  font-family: "Poppins-Black";
}
#slider-section .gis-banner-images h1 .development-text {
  color: #202020;
  font-size: 36px;
  font-family: "Poppins-Medium";
}
#slider-section .gis-banner-images .bottom-desc b {
  font-size: 40px;
  color: #dc2e3d;
  font-family: "Poppins-Black";
}
#slider-section .gis-banner-images .bottom-desc .bord-line {
  border-left: 1px solid #ccc;
  height: 32px;
  margin: 0 20px;
}
#slider-section .gis-banner-images .bottom-desc .desc {
  text-align: justify;
  font-size: 18px;
  color: #202020;
}
#slider-section .gis-banner-images .bottom-desc .desc span {
  font-family: "Poppins-Medium";
}
#slider-section .gis-banner-images .btn-view {
  margin-top: 12px;
}
#slider-section .gis-banner-images .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#slider-section .gis-banner-images .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#slider-section .gis-banner-images .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#slider-section .gis-banner-images .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}
#slider-section .gis-banner-images .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#slider-section .gis-banner-images img {
  width: 400px;
}
#slider-section #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero-section {
  padding: 60px 0 40px 0;
}
#hero-section .content h1 {
  font-size: 36px;
  font-family: "Poppins-SemiBold";
  color: var(--primery-color);
  letter-spacing: 0.5px;
}
#hero-section .content p {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
  letter-spacing: 0.5px;
}
#hero-section .images {
  text-align: center;
}
#hero-section .images img {
  width: 400px;
  height: 400px;
}

#counter-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
}
#counter-section .counter-wrapper {
  text-align: center;
  border-right: 1px solid #202020;
}
#counter-section .counter-wrapper span {
  font-size: 45px;
}
#counter-section .counter-wrapper .count-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#counter-section .counter-wrapper .count-box h3 {
  font-size: 24px;
  font-family: "Poppins-Black";
  margin-bottom: 0;
  color: #474747;
  padding: 8px 0;
}
#counter-section .counter-wrapper .count-box h6 {
  font-size: 24px;
  font-family: "Poppins-Black";
  margin-bottom: 0;
  color: #474747;
}
#counter-section .counter-wrapper p {
  margin-bottom: 0;
  font-size: 18px;
  color: #474747;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
}
#counter-section .counter-wrapper-four {
  text-align: center;
}
#counter-section .counter-wrapper-four span {
  font-size: 45px;
}
#counter-section .counter-wrapper-four .count-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#counter-section .counter-wrapper-four .count-box h3 {
  font-size: 24px;
  font-family: "Poppins-Black";
  margin-bottom: 0;
  color: #474747;
  padding: 8px 0;
}
#counter-section .counter-wrapper-four .count-box h6 {
  font-size: 24px;
  font-family: "Poppins-Black";
  margin-bottom: 0;
  color: #474747;
}
#counter-section .counter-wrapper-four p {
  margin-bottom: 0;
  font-size: 18px;
  color: #474747;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
}

#shape-your-idea {
  padding: 40px 0;
}
#shape-your-idea .main-section-title {
  position: relative;
}
#shape-your-idea .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#shape-your-idea .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 280px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 160px);
}
#shape-your-idea .images {
  text-align: center;
}
#shape-your-idea .images img {
  width: 350px;
  height: 350px;
}
#shape-your-idea .content-pera h2 {
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
  font-size: 22px;
  text-align: justify;
}
#shape-your-idea .content-pera p {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#shape-your-idea .btn-view {
  margin-top: 12px;
}
#shape-your-idea .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#shape-your-idea .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#shape-your-idea .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#shape-your-idea .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#shape-your-idea .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#our-services-section {
  padding: 40px 0;
}
#our-services-section .main-section-title {
  position: relative;
}
#our-services-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#our-services-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 115px);
}
#our-services-section .mobile-app-development {
  padding: 24px;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  margin-top: 24px;
  cursor: pointer;
  transition: all 1s ease-in-out;
  perspective: 100px;
}
#our-services-section .mobile-app-development:hover img {
  transform: rotateY(360deg);
}
#our-services-section .mobile-app-development img {
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
  width: 55px;
  height: 55px;
}
#our-services-section .mobile-app-development .title {
  padding: 8px 0;
}
#our-services-section .mobile-app-development .title a {
  text-decoration: none;
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
}
#our-services-section .mobile-app-development .content p {
  margin-bottom: 0px;
  color: #202020;
  text-align: justify;
  letter-spacing: 0.5px;
  font-size: 16px;
}
#our-services-section .mobile-app-development .detail-list {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
#our-services-section .mobile-app-development .detail-list a {
  background: rgba(221, 236, 255, 0.6588235294);
  padding: 8px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.4s ease;
}
#our-services-section .mobile-app-development .detail-list a svg {
  width: 32px;
  height: 32px;
  fill: #000;
}
#our-services-section .mobile-app-development .detail-list a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px rgb(255, 255, 255), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0.5em);
}
#our-services-section .images {
  padding: 24px;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  margin-top: 24px;
  cursor: pointer;
  text-align: center;
}

#work-process-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
  /* ------------------------
      box-loader
  ------------------------*/
  /*--rotation--*/
  /*--opacitychange--*/
  /* responsive */
}
#work-process-section .main-section-title {
  position: relative;
}
#work-process-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#work-process-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 300px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
  left: calc(50% - 190px);
}
#work-process-section .work-process {
  position: relative;
  text-align: center;
  margin-top: 65px;
}
#work-process-section .step-num {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 20px 0 rgba(221, 236, 255, 0.9607843137);
  color: var(--primery-color);
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  left: 0;
  line-height: 55px;
  position: absolute;
  text-align: center;
  top: -20px;
  width: 50px;
}
#work-process-section .theme-bg .work-process h4,
#work-process-section .theme-bg .work-process p {
  color: #ffffff;
}
#work-process-section .step-icon {
  background: #ffffff;
  width: 120px;
  height: 120px;
  position: relative;
  border: 3px solid #d9d9d9;
  border-radius: 50%;
  line-height: 120px;
  text-align: center;
}
#work-process-section .step-icon span {
  position: relative;
}
#work-process-section .step-desc h4 {
  font-family: "Poppins-SemiBold";
  font-size: 20px;
  color: var(--secondary-color);
  text-transform: capitalize;
}
#work-process-section .step-desc p {
  text-align: center;
  font-size: 16px;
}
#work-process-section .dark-bg .step-icon {
  color: rgba(255, 255, 255, 0.9);
  background: none;
}
#work-process-section .dark-bg .step-icon {
  border-color: rgba(255, 255, 255, 0.1);
}
#work-process-section .step-num-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
#work-process-section .work-process .box-loader {
  position: absolute;
  top: 28%;
  right: -24%;
  left: inherit;
}
#work-process-section .work-process.style-2 {
  padding: 0;
  display: flex;
  align-items: center;
}
#work-process-section .work-process.style-2:before {
  display: none;
}
#work-process-section .work-process.style-2 .step-num-box {
  margin-bottom: 0;
  margin-right: 30px;
}
#work-process-section .work-process.style-3 {
  padding: 70px 30px 0;
}
#work-process-section .work-process.style-3 .step-num {
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.1);
  font-size: 120px;
  height: auto;
  left: 50%;
  line-height: 120px;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: auto;
}
#work-process-section .box-loader {
  border-radius: 100%;
  margin: 0 auto;
  position: absolute;
  top: 15px;
  left: 15px;
}
#work-process-section .box-loader span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--primery-color);
  margin: 0 5px;
  opacity: 0;
}
#work-process-section .box-loader span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}
#work-process-section .box-loader span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}
#work-process-section .box-loader span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }
  12.5% {
    transform: scale(1, 1);
  }
  87.5% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
@keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }
  12.5% {
    transform: scale(1, 0);
  }
  25% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(1, 1);
  }
  87.5% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 0);
  }
}
@keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }
  25% {
    transform: scale(0, 1);
  }
  37.5% {
    transform: scale(1, 1);
  }
  62.5% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
@keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }
  37.5% {
    transform: scale(1, 0);
  }
  50% {
    transform: scale(1, 1);
  }
  62.5% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 0);
  }
}
@keyframes opacitychange {
  0%, 100% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  #work-process-section #svg-container {
    width: 85%;
  }
}
@media (max-width: 992px) {
  #work-process-section {
    /*Step*/
  }
  #work-process-section .md-mt-5 {
    margin-top: 50px !important;
  }
  #work-process-section .work-process .box-loader {
    display: none;
  }
  #work-process-section .step-desc p {
    max-width: 300px;
    margin: 0 auto;
  }
  #work-process-section #svg-container {
    width: 100%;
    transform: rotate(90deg);
    left: 0;
    top: 50%;
  }
}

#tool-and-technologies-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
}
#tool-and-technologies-section .main-section-title {
  position: relative;
}
#tool-and-technologies-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#tool-and-technologies-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 340px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 195px);
}
#tool-and-technologies-section a {
  text-decoration: none;
  color: transparent;
}
#tool-and-technologies-section .card {
  position: relative;
  margin-top: 18px;
  height: 130px;
  background: transparent;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.3s ease-in-out;
}
#tool-and-technologies-section .card:hover {
  transform: translateY(5px);
}
#tool-and-technologies-section h3 {
  margin-bottom: 0;
  font-size: 20px;
  color: var(--secondary-color);
  font-family: "Poppins-Medium";
}
#tool-and-technologies-section .card svg {
  width: 50px;
  height: 50px;
}

#showcasing-our-expertise {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
  position: relative;
  overflow: hidden;
}
#showcasing-our-expertise .main-section-title {
  position: relative;
}
#showcasing-our-expertise .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#showcasing-our-expertise .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 240px);
}
#showcasing-our-expertise .showcasing-our-expertise-slider .showcasing-slider-info {
  display: flex;
  margin-top: 28px;
}
#showcasing-our-expertise .showcasing-our-expertise-slider h3 {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
}
#showcasing-our-expertise .showcasing-our-expertise-slider p {
  font-size: 16px;
}
#showcasing-our-expertise .showcasing-our-expertise-slider .images {
  text-align: -webkit-center;
}
#showcasing-our-expertise .slick-prev {
  background: var(--primery-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 85%;
  left: 50%;
  z-index: 1;
}
#showcasing-our-expertise .slick-prev::before {
  content: "";
  background: url(../images/left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  opacity: 100%;
}
#showcasing-our-expertise .slick-next {
  background: var(--primery-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 85%;
  left: 54%;
  z-index: 1;
}
#showcasing-our-expertise .slick-next::before {
  content: "";
  background: url(../images/next.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  opacity: 100%;
}
#showcasing-our-expertise .btn-view {
  position: absolute;
  left: 57%;
  top: 77%;
  padding: 0;
}
#showcasing-our-expertise .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  background: #fff;
}
#showcasing-our-expertise .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#showcasing-our-expertise .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#showcasing-our-expertise .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#showcasing-our-expertise .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#industries-we-serve-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
}
#industries-we-serve-section .main-section-title {
  position: relative;
}
#industries-we-serve-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#industries-we-serve-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 280px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 171px);
}
#industries-we-serve-section .tech-box {
  text-decoration: none;
  text-align: center;
  background: #fff;
  padding: 24px;
  border: 1px solid var(--primery-color);
  border-radius: 12px;
  display: block;
  transition: 0.3s ease-in-out;
}
#industries-we-serve-section .tech-box .icon {
  margin-bottom: 18px;
}
#industries-we-serve-section .tech-box h5 {
  margin-bottom: 0;
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
}
#industries-we-serve-section .tech-box:hover {
  transform: translateY(-5px);
}

#testimonial-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
#testimonial-section:before {
  position: absolute;
  left: -130px;
  top: 17%;
  background-image: url(../images/ring-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 359px;
  height: 388px;
  content: "";
  animation: fa-spin 25s infinite alternate;
}
#testimonial-section .main-section-title {
  position: relative;
  margin-bottom: 16px;
}
#testimonial-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#testimonial-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 170px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
  left: calc(50% - 110px);
}
#testimonial-section .testimonial-block {
  margin: 12px;
  position: relative;
  padding: 0px;
  background: #ffffff;
  border-radius: 12px;
}
#testimonial-section .testimonial-block .inner-box {
  padding: 24px;
  box-shadow: 1px 1px 14px rgba(221, 236, 255, 0.6588235294);
  border-radius: 12px;
}
#testimonial-section .testimonial-block .text {
  position: relative;
  display: block;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  text-align: justify;
}
#testimonial-section .testimonial-block .info-box {
  position: relative;
  text-align: end;
}
#testimonial-section .testimonial-block .info-box .thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 82px;
  width: 82px;
}
#testimonial-section .testimonial-block .info-box .thumb img {
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  width: 100%;
  box-shadow: 0 15px 25px rgba(28, 160, 194, 0.3803921569);
}
#testimonial-section .testimonial-block .info-box .name {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--primery-color);
  font-family: "Poppins-Medium";
  margin-bottom: 0;
}
#testimonial-section .testimonial-block .info-box .designation {
  position: relative;
  display: block;
  font-size: 15px;
  color: #000;
  font-family: "Poppins-Medium";
}
#testimonial-section .slick-prev {
  display: none !important;
}
#testimonial-section .slick-next {
  display: none !important;
}
#testimonial-section .slick-dots li {
  margin: 0 7px;
}
#testimonial-section .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 50px;
  text-align: center;
  color: rgba(0, 74, 173, 0.368627451);
  opacity: 100%;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0px 0px 10px transparent;
  background: transparent;
  border-radius: 15px;
}
#testimonial-section .slick-dots li.slick-active button:before {
  color: var(--primery-color);
  background: transparent;
  border-radius: 15px;
}
#testimonial-section .thumb-layer .image {
  text-align: center;
}
#testimonial-section .testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
}
#testimonial-section .testimonial-section .thumb-layer .image {
  position: relative;
  margin-right: 0;
}
#testimonial-section .testimonial-section .thumb-layer .image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

#awards-section {
  padding: 40px 0;
}
#awards-section .main-section-title {
  position: relative;
}
#awards-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#awards-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 350px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 206px);
}
#awards-section .awards-slider-img {
  margin-top: 24px;
}
#awards-section .images {
  margin-top: 24px;
  text-align: center;
}
#awards-section .slick-prev {
  background: var(--primery-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
#awards-section .slick-prev::before {
  content: "";
  background: url(../images/left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 2px;
  width: 40px;
  height: 40px;
  opacity: 100%;
}
#awards-section .slick-next {
  background: var(--primery-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
#awards-section .slick-next::before {
  content: "";
  background: url(../images/next.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 40px;
  height: 40px;
  opacity: 100%;
}

#contact-us-section {
  padding: 40px 0;
}
#contact-us-section .main-section-title {
  position: relative;
}
#contact-us-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#contact-us-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
}
#contact-us-section .address-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 22px;
}
#contact-us-section .address-wrapper ul li {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
#contact-us-section .address-wrapper ul li .images {
  background: rgba(221, 236, 255, 0.6588235294);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(236, 236, 236, 0);
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
#contact-us-section .address-wrapper ul li .content strong {
  color: var(--secondary-color);
  font-size: 20px;
  font-family: "Poppins-SemiBold";
  display: flex;
}
#contact-us-section .address-wrapper ul li .content a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: "Poppins-Medium";
  transition: 0.3s ease-in-out;
}
#contact-us-section .address-wrapper ul li .content a:hover {
  color: var(--primery-color);
}
#contact-us-section .follow-us {
  margin-top: 18px;
}
#contact-us-section .follow-us .follow-us-wrapper h3 {
  font-size: 20px;
  font-family: "Poppins-SemiBold";
  color: var(--primery-color);
}
#contact-us-section .follow-us .follow-us-wrapper ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
#contact-us-section .follow-us .follow-us-wrapper ul li {
  list-style-type: none;
}
#contact-us-section .follow-us .follow-us-wrapper ul li .btn {
  background: rgba(221, 236, 255, 0.6588235294);
  padding: 8px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: transform 0.5s;
}
#contact-us-section .follow-us .follow-us-wrapper ul li .btn:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px rgb(255, 255, 255), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0.5em);
}
#contact-us-section .form-wrapper h5 {
  font-size: 16px;
  margin-top: 12px;
}
#contact-us-section .form-wrapper .your-name {
  margin-bottom: 18px;
}
#contact-us-section .form-wrapper .your-name input {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
#contact-us-section .form-wrapper .your-name input::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper .your-name input::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper .file-upload {
  margin-bottom: 18px;
}
#contact-us-section .form-wrapper .file-upload input {
  padding: 18px 24px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
#contact-us-section .form-wrapper .file-upload input::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper .file-upload input::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper textarea {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.3098039216);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.0509803922), 0 0 14px rgba(0, 0, 0, 0.1019607843);
}
#contact-us-section .form-wrapper textarea::-moz-placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper textarea::placeholder {
  color: #000;
  font-family: "Poppins-Light";
  letter-spacing: 0.5px;
  font-size: 14px;
}
#contact-us-section .form-wrapper .form-control:focus {
  box-shadow: 0 0 0 2px var(--primery-color);
}
#contact-us-section .form-wrapper .btn-view {
  margin-top: 12px;
}
#contact-us-section .form-wrapper .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#contact-us-section .form-wrapper .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#contact-us-section .form-wrapper .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#contact-us-section .form-wrapper .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#contact-us-section .form-wrapper .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#footer {
  padding: 40px 0 0 0;
  background: #f5f5f5;
}
#footer .contact-wrapper .contact-number {
  margin: 18px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: "Poppins-Medium";
  transition: 0.3s ease-in-out;
}
#footer .contact-wrapper .contact-number:hover {
  color: var(--primery-color);
}
#footer .review-content {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#footer .review-content .review-star .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--primery-color);
}
#footer .review-content .review-star .content a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-family: "Poppins-Medium";
  transition: 0.3s ease-in-out;
}
#footer .review-content .review-star .content a:hover {
  color: var(--primery-color);
}
#footer .company-sub-page h3 {
  font-size: 20px;
  font-family: "Poppins-SemiBold";
  color: var(--primery-color);
}
#footer .company-sub-page ul {
  padding-left: 0;
  margin-bottom: 0;
}
#footer .company-sub-page ul li {
  list-style-type: none;
  margin-bottom: 6px;
  transition: 0.3s ease-in-out;
}
#footer .company-sub-page ul li:hover {
  transform: translateX(5px);
}
#footer .company-sub-page ul li a {
  text-decoration: none;
  font-family: "Poppins-Medium";
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}
#footer .company-sub-page ul li a:hover {
  color: var(--primery-color);
}
#footer .website-design h3 {
  font-size: 20px;
  font-family: "Poppins-SemiBold";
  color: var(--primery-color);
}
#footer .website-design ul {
  padding-left: 0;
  margin-bottom: 0;
}
#footer .website-design ul li {
  list-style-type: none;
  margin-bottom: 6px;
  transition: 0.3s ease-in-out;
}
#footer .website-design ul li:hover {
  transform: translateX(5px);
}
#footer .website-design ul li a {
  text-decoration: none;
  font-family: "Poppins-Medium";
  color: #000;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
}
#footer .website-design ul li a:hover {
  color: var(--primery-color);
}
#footer hr {
  opacity: 100%;
  margin-bottom: 0;
  color: #fff;
}
#footer #footer-row {
  background: var(--primery-color);
}
#footer #footer-row .right-reservad p {
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 16px;
}
#footer #footer-row .terms-wrapper a {
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 16px;
  margin-right: 12px;
}

.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background: var(--primery-color);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 1px 1px 3px #cdcdcd;
  z-index: 1000;
  cursor: pointer;
  animation: bot-to-top 2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-link {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 100;
  padding-left: 0;
  margin-bottom: 0;
}

.contact-link li {
  list-style: none;
  margin-bottom: 10px;
}

.contact-link li a {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #cdcdcd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.float + .contact-link {
  visibility: hidden;
}

.float:hover + .contact-link {
  visibility: visible;
  animation: scale-in 0.5s;
}

.contact-link:hover {
  visibility: visible !important;
}

.float i {
  animation: rotate-in 0.5s;
}

.float:hover > i {
  animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
  0% {
    bottom: -60px;
  }
  50% {
    bottom: 40px;
  }
}
@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotate-in {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-out {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
#banner-section {
  padding: 100px 0 40px 0;
  background: url(../images/about-us-banner.png) no-repeat center;
  background-size: cover;
}
#banner-section .about-us-heading {
  color: #fff;
  font-size: 52px;
  font-family: "Poppins-Black";
  letter-spacing: 1.28px;
  text-transform: uppercase;
}
#banner-section .col-lg-12 .breadcrumb-wrapper {
  border-radius: 50px;
  border: 1px solid #fff;
  background: rgba(0, 74, 173, 0.1803921569);
  padding: 8px 18px;
  display: flex;
  align-items: center;
}
#banner-section .material-symbols-outlined {
  color: #fff;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
#banner-section .title-heading-list {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
#banner-section .title-heading-list-second {
  color: #fff;
  font-size: 18px;
}

#about-us-section {
  padding: 40px 0;
}
#about-us-section .images {
  text-align: center;
}
#about-us-section .content-pera {
  position: relative;
}
#about-us-section .content-pera h2 {
  font-family: "Poppins-SemiBold";
  color: var(--primery-color);
  font-size: 22px;
}
#about-us-section .content-pera p {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#about-us-section .content-pera::before {
  display: block;
  content: "";
  width: 70px;
  height: 80px;
  background: url(../images/dot-many.svg) repeat 0 0;
  background-size: 150% auto;
  position: absolute;
  right: -50px;
  top: 50;
  bottom: 0;
  margin: auto;
  opacity: 0.5;
  transform: rotate(45deg);
}

#why-choose-us-section {
  padding: 40px 0;
}
#why-choose-us-section .main-section-title {
  position: relative;
  padding-bottom: 18px;
}
#why-choose-us-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  color: var(--primery-color);
}
#why-choose-us-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 230px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
}
#why-choose-us-section .pera p {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#why-choose-us-section .card {
  height: 195px;
  cursor: pointer;
  background: rgba(221, 236, 255, 0.6588235294);
  position: relative;
  border: none;
  overflow: hidden;
}
#why-choose-us-section .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -30%;
  left: -30%;
  border-radius: 50%;
  border: 25px solid var(--primery-color);
  transition: all 0.8s ease;
  filter: blur(1rem);
  z-index: -1;
}
#why-choose-us-section .card:hover::before {
  width: 140px;
  height: 140px;
  top: 70%;
  left: 70%;
  border: 25px solid #0248A7;
  filter: blur(0rem);
}
#why-choose-us-section .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#why-choose-us-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}

#what-we-see-section {
  padding: 40px 0;
}
#what-we-see-section .main-section-title {
  position: relative;
  padding-bottom: 18px;
}
#what-we-see-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  color: var(--primery-color);
}
#what-we-see-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 185px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, rgba(255, 255, 255, 0));
  bottom: 0px;
  left: calc(50% - 115px);
}
#what-we-see-section .card {
  background: #f4c2c2;
  border-radius: 28px;
  border: none;
  margin-top: 16px;
}
#what-we-see-section .card span {
  border: 1px solid;
  padding: 12px;
  border-radius: 50%;
}
#what-we-see-section .card .card-title {
  font-size: 22px;
  font-family: "Poppins-Medium";
}
#what-we-see-section .card .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#what-we-see-section .mission {
  background: #d0bfff;
  border-radius: 28px;
  border: none;
}
#what-we-see-section .mission span {
  border: 1px solid;
  padding: 12px;
  border-radius: 50%;
}
#what-we-see-section .mission .card-title {
  font-size: 22px;
  font-family: "Poppins-Medium";
}
#what-we-see-section .mission .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#what-we-see-section .value {
  background: #b5f1cc;
  border-radius: 28px;
  border: none;
  margin-top: 16px;
}
#what-we-see-section .value span {
  border: 1px solid;
  padding: 12px;
  border-radius: 50%;
}
#what-we-see-section .value .card-title {
  font-size: 22px;
  font-family: "Poppins-Medium";
}
#what-we-see-section .value .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#what-we-see-section .value .detail-list {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
#what-we-see-section .value .detail-list a {
  background: rgba(37, 187, 226, 0.84);
  padding: 8px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Poppins-Medium";
  font-size: 14px;
  letter-spacing: 0.5px;
}
#what-we-see-section .value .detail-list a svg {
  width: 32px;
  height: 32px;
  fill: #000;
}
#what-we-see-section .value .detail-list a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px rgb(255, 255, 255), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0.5em);
}

#join-our-team-section {
  padding: 40px 0;
  background: rgba(37, 187, 226, 0.1098039216);
}
#join-our-team-section .join-team-wrapper h2 {
  font-size: 36px;
  font-family: "Poppins-Black";
}
#join-our-team-section .join-team-wrapper .btn-view {
  margin-top: 12px;
}
#join-our-team-section .join-team-wrapper .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  background: #fff;
}
#join-our-team-section .join-team-wrapper .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#join-our-team-section .join-team-wrapper .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#join-our-team-section .join-team-wrapper .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#join-our-team-section .join-team-wrapper .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#contact-map-area {
  padding: 40px 0;
}
#contact-map-area .contact-map iframe {
  width: 100%;
  height: 500px;
}

#blog-section {
  padding: 40px 0;
}
#blog-section a {
  text-decoration: none;
}
#blog-section a .blog-wrapper-box {
  margin-bottom: 38px;
}
#blog-section a .blog-wrapper-box .images img {
  border-radius: 12px;
}
#blog-section a .blog-wrapper-box .category-name {
  padding: 12px 0 0 0;
}
#blog-section a .blog-wrapper-box .category-name p {
  text-transform: capitalize;
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Poppins-Medium";
}
#blog-section a .blog-wrapper-box .blog-para {
  padding: 12px 0;
}
#blog-section a .blog-wrapper-box .custom-post-title h3 {
  font-size: 24px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
  text-align: justify;
}
#blog-section a .blog-wrapper-box p {
  text-transform: capitalize;
  text-align: justify;
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
}
#blog-section a .blog-wrapper-box h4 {
  font-size: 16px;
  font-family: "Poppins-Medium";
  color: #6e6e6e;
  text-transform: capitalize;
  margin-bottom: 0;
}
#blog-section .categorise {
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  text-align: center;
  position: sticky;
  top: 80px;
  padding: 18px;
}
#blog-section .categorise h4 {
  font-size: 22px;
  font-family: "Poppins-Medium";
  text-transform: capitalize;
  color: var(--primery-color);
}
#blog-section .categorise .categorise-btn a {
  text-decoration: none;
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  font-family: "Poppins-Medium";
}
#blog-section .btn-view {
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 175px;
  margin-top: 12px;
}
#blog-section .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#blog-section .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#blog-section .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#blog-section .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#blog-section .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#career-section {
  padding: 40px 0;
}
#career-section .career-content .main-section-title {
  position: relative;
}
#career-section .career-content .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#career-section .career-content .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 105px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
}
#career-section .career-content p {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
  margin-top: 10px;
}

#perks-benifits-section {
  padding: 40px 0;
}
#perks-benifits-section .main-section-title {
  position: relative;
}
#perks-benifits-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#perks-benifits-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 260px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
  left: calc(50% - 150px);
}
#perks-benifits-section .card {
  height: 245px;
  cursor: pointer;
  background: rgba(37, 187, 226, 0.09);
  position: relative;
  border: none;
  overflow: hidden;
  margin-top: 24px;
}
#perks-benifits-section .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -30%;
  left: -30%;
  border-radius: 50%;
  border: 25px solid var(--primery-color);
  transition: all 0.8s ease;
  filter: blur(1rem);
  z-index: -1;
}
#perks-benifits-section .card .images {
  padding-bottom: 12px;
}
#perks-benifits-section .card .images img {
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
}
#perks-benifits-section .card:hover::before {
  width: 140px;
  height: 140px;
  top: 70%;
  left: 70%;
  border: 25px solid rgba(12, 130, 161, 0.6196078431);
  filter: blur(0rem);
}
#perks-benifits-section .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#perks-benifits-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}

#current-openings-section {
  padding: 40px 0;
}
#current-openings-section .main-section-title {
  position: relative;
}
#current-openings-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-Black";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#current-openings-section .main-section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 280px;
  height: 5px;
  background: linear-gradient(90deg, #004AAD, #fff);
  bottom: 0px;
  left: calc(50% - 160px);
}
#current-openings-section .content-box {
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 0px 12px rgba(28, 160, 194, 0.12);
  padding: 35px;
  border: 1px solid #ececec;
  overflow: hidden;
  margin-top: 24px;
}
#current-openings-section .content-box::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: rgba(34, 161, 196, 0.4117647059);
  left: -50px;
  top: 0%;
  transform: translateY(-50%);
}
#current-openings-section .content-box .man-title {
  font-size: 18px;
  font-family: Poppins-SemiBold;
  color: var(--secondary-color);
}
#current-openings-section .content-box p {
  margin-bottom: 0;
  font-size: 16px;
  font-family: "Poppins-Medium";
}
#current-openings-section .content-box .positions {
  font-size: 18px;
  font-family: Poppins-SemiBold;
  color: var(--secondary-color);
}
#current-openings-section .content-box .btn-view {
  padding: 0;
  text-align: -webkit-center;
}
#current-openings-section .content-box .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  background: #fff;
}
#current-openings-section .content-box .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#current-openings-section .content-box .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#current-openings-section .content-box .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#current-openings-section .content-box .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#web-development-hero-section {
  padding: 40px 0;
}
#web-development-hero-section .web-development-wrapper h1 {
  font-size: 36px;
  color: var(--primery-color);
  font-family: "Poppins-SemiBold";
}
#web-development-hero-section .web-development-wrapper p {
  text-align: justify;
  font-size: 16px;
}
#web-development-hero-section .btn-view {
  margin-top: 12px;
}
#web-development-hero-section .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#web-development-hero-section .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#web-development-hero-section .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#web-development-hero-section .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#web-development-hero-section .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#web-development-hero-section .images {
  text-align: center;
}

#why-choose-web-development-company-section {
  padding: 40px 0;
}
#why-choose-web-development-company-section .main-section-subtitle h3 {
  margin-bottom: 12px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  color: var(--primery-color);
}
#why-choose-web-development-company-section .main-section-subtitle p {
  text-align: justify;
  font-size: 16px;
}
#why-choose-web-development-company-section .card {
  cursor: pointer;
  background: rgba(37, 187, 226, 0.09);
  position: relative;
  border: none;
  overflow: hidden;
}
#why-choose-web-development-company-section .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -30%;
  left: -30%;
  border-radius: 50%;
  border: 25px solid var(--primery-color);
  transition: all 0.8s ease;
  filter: blur(1rem);
  z-index: -1;
}
#why-choose-web-development-company-section .card:hover::before {
  width: 140px;
  height: 140px;
  top: 70%;
  left: 70%;
  border: 25px solid rgba(12, 130, 161, 0.6196078431);
  filter: blur(0rem);
}
#why-choose-web-development-company-section .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#why-choose-web-development-company-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#why-choose-web-development-company-section .expertise-across-tech {
  padding: 24px;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
  background: #fff;
  margin-top: 18px;
}
#why-choose-web-development-company-section .expertise-across-tech p {
  text-align: justify;
  font-size: 16px;
  padding: 8px 0;
}
#why-choose-web-development-company-section .expertise-across-tech .number-with-title {
  display: flex;
}
#why-choose-web-development-company-section .expertise-across-tech .number-with-title h3 {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}
#why-choose-web-development-company-section .why-choose-images {
  position: sticky;
  top: 80px;
}

#service-cta-section {
  padding: 40px 0;
  background: rgba(37, 187, 226, 0.1098039216);
}
#service-cta-section .join-team-wrapper h2 {
  font-size: 36px;
  font-family: "Poppins-Black";
}
#service-cta-section .join-team-wrapper .btn-view {
  margin-top: 12px;
}
#service-cta-section .join-team-wrapper .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  background: #fff;
}
#service-cta-section .join-team-wrapper .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#service-cta-section .join-team-wrapper .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#service-cta-section .join-team-wrapper .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#service-cta-section .join-team-wrapper .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#case-study {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
#case-study .main-section-title {
  position: relative;
}
#case-study .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#case-study .showcasing-our-expertise-slider .showcasing-slider-info {
  display: flex;
  margin-top: 28px;
}
#case-study .showcasing-our-expertise-slider h3 {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
}
#case-study .showcasing-our-expertise-slider p {
  font-size: 16px;
}
#case-study .showcasing-our-expertise-slider .images {
  text-align: -webkit-center;
}
#case-study .slick-prev {
  background: var(--primery-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 85%;
  left: 50%;
  z-index: 1;
}
#case-study .slick-prev::before {
  content: "";
  background: url(../images/left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  opacity: 100%;
}
#case-study .slick-next {
  background: var(--primery-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 85%;
  left: 54%;
  z-index: 1;
}
#case-study .slick-next::before {
  content: "";
  background: url(../images/next.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  opacity: 100%;
}
#case-study .btn-view {
  position: absolute;
  left: 57%;
  top: 77%;
  padding: 0;
}
#case-study .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
  background: #fff;
}
#case-study .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#case-study .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#case-study .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
#case-study .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#hire-dedicated-developers-section {
  padding: 40px 0;
}
#hire-dedicated-developers-section .main-section-subtitle h3 {
  margin-bottom: 12px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  color: var(--primery-color);
}
#hire-dedicated-developers-section .main-section-subtitle p {
  text-align: center;
  font-size: 16px;
  max-width: 1080px;
  margin: auto;
  color: #000;
}
#hire-dedicated-developers-section .card {
  height: 190px;
  background: rgba(37, 187, 226, 0.09);
  border: none;
  margin-top: 36px;
}
#hire-dedicated-developers-section .card-title {
  color: #0248A7;
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#hire-dedicated-developers-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}

#faq-section {
  padding: 40px 0;
}
#faq-section .main-section-subtitle h3 {
  margin-bottom: 18px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  color: var(--primery-color);
}
#faq-section .main-section-subtitle p {
  text-align: center;
  font-size: 16px;
  max-width: 1080px;
  margin: auto;
  color: #000;
}
#faq-section .accordion .accordion-item {
  border: 1PX solid transparent;
  margin-bottom: 12px;
}
#faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: #0248A7;
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
  background: rgba(37, 187, 226, 0.09);
  box-shadow: none;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
}
#faq-section .accordion .accordion-item .accordion-header .accordion-button:hover {
  background: rgba(37, 187, 226, 0.09);
}
#faq-section .accordion .accordion-button:focus {
  border: none;
  box-shadow: transparent;
}
#faq-section .accordion .accordion-collapse {
  background: rgba(37, 187, 226, 0.09);
}

#why-choose-wordpress-development-company-section {
  padding: 40px 0;
}
#why-choose-wordpress-development-company-section .main-section-subtitle h3 {
  margin-bottom: 12px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  color: var(--primery-color);
}
#why-choose-wordpress-development-company-section .main-section-subtitle p {
  text-align: justify;
  font-size: 16px;
}
#why-choose-wordpress-development-company-section .card {
  cursor: pointer;
  background: rgba(221, 236, 255, 0.6588235294);
  position: relative;
  border: none;
  overflow: hidden;
}
#why-choose-wordpress-development-company-section .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -30%;
  left: -30%;
  border-radius: 50%;
  border: 25px solid #0248A7;
  transition: all 0.8s ease;
  filter: blur(1rem);
  z-index: -1;
}
#why-choose-wordpress-development-company-section .card:hover::before {
  width: 120px;
  height: 120px;
  top: 66%;
  left: 85%;
  border: 25px solid #0248A7;
  filter: blur(0rem);
}
#why-choose-wordpress-development-company-section .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#why-choose-wordpress-development-company-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#why-choose-wordpress-development-company-section .expertise-across-tech {
  padding: 24px;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
  background: #fff;
  margin-top: 18px;
}
#why-choose-wordpress-development-company-section .expertise-across-tech p {
  text-align: justify;
  font-size: 16px;
  padding: 8px 0;
}
#why-choose-wordpress-development-company-section .expertise-across-tech .number-with-title {
  display: flex;
}
#why-choose-wordpress-development-company-section .expertise-across-tech .number-with-title h3 {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}
#why-choose-wordpress-development-company-section .why-choose-images {
  position: sticky;
  top: 80px;
}

#why-choose-web-gis-development-company-section {
  padding: 40px 0;
}
#why-choose-web-gis-development-company-section .main-section-subtitle h3 {
  margin-bottom: 12px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  color: var(--primery-color);
}
#why-choose-web-gis-development-company-section .main-section-subtitle p {
  text-align: justify;
  font-size: 16px;
}
#why-choose-web-gis-development-company-section .card {
  cursor: pointer;
  background: rgba(37, 187, 226, 0.09);
  position: relative;
  border: none;
  overflow: hidden;
}
#why-choose-web-gis-development-company-section .card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -30%;
  left: -30%;
  border-radius: 50%;
  border: 25px solid var(--primery-color);
  transition: all 0.8s ease;
  filter: blur(1rem);
  z-index: -1;
}
#why-choose-web-gis-development-company-section .card:hover::before {
  width: 140px;
  height: 140px;
  top: 70%;
  left: 70%;
  border: 25px solid rgba(12, 130, 161, 0.6196078431);
  filter: blur(0rem);
}
#why-choose-web-gis-development-company-section .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#why-choose-web-gis-development-company-section .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}
#why-choose-web-gis-development-company-section .expertise-across-tech {
  padding: 24px;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
  background: #fff;
  margin-top: 18px;
}
#why-choose-web-gis-development-company-section .expertise-across-tech p {
  text-align: justify;
  font-size: 16px;
  padding: 8px 0;
}
#why-choose-web-gis-development-company-section .expertise-across-tech .number-with-title {
  display: flex;
}
#why-choose-web-gis-development-company-section .expertise-across-tech .number-with-title h3 {
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}
#why-choose-web-gis-development-company-section .why-choose-images {
  position: sticky;
  top: 80px;
}

#our-dynamic-range-of-development-services {
  padding: 40px 0;
}
#our-dynamic-range-of-development-services .main-section-subtitle h3 {
  margin-bottom: 12px;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  text-align: center;
  color: var(--primery-color);
}
#our-dynamic-range-of-development-services .main-section-subtitle p {
  text-align: justify;
  font-size: 16px;
}
#our-dynamic-range-of-development-services .card {
  cursor: pointer;
  background: rgba(221, 236, 255, 0.6588235294);
  border: none;
  margin-top: 24px;
  transition: all 0.3s ease-in-out;
}
#our-dynamic-range-of-development-services .card:hover {
  transform: translateY(-7px);
}
#our-dynamic-range-of-development-services .card .images {
  padding-bottom: 12px;
}
#our-dynamic-range-of-development-services .card .images img {
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
}
#our-dynamic-range-of-development-services .card-title {
  color: #0248A7;
  font-size: 19px;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#our-dynamic-range-of-development-services .card-text {
  text-align: justify;
  font-family: "Poppins-Light";
  text-transform: capitalize;
  color: #202020;
  font-size: 16px;
}

#our-process-section {
  padding: 40px 0;
}
#our-process-section .main-section-title {
  position: relative;
}
#our-process-section .main-section-title h1 {
  margin-bottom: 0;
  font-family: "Poppins-SemiBold";
  font-size: 36px;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 12px;
  color: var(--primery-color);
}
#our-process-section .main-section-title p {
  text-align: center;
  margin-bottom: 0;
}
#our-process-section .app-process {
  position: relative;
  margin-top: 80px;
  display: flex;
}
#our-process-section .app-process::before {
  content: " ";
  height: 2px;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -37px;
  background: rgba(0, 74, 173, 0.368627451);
}
#our-process-section .app-box {
  position: relative;
  text-align: center;
  width: 20%;
  padding: 0 14px;
}
#our-process-section .app-box .radius_box {
  width: 28px;
  height: 28px;
  min-width: 28px;
  font-size: 13px;
  font-family: "Poppins-Black";
  border-radius: 100%;
  position: absolute;
  top: -50px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 0;
  margin: auto;
  left: 0;
  background: var(--primery-color);
}
#our-process-section .app-box h6 {
  font-size: 18px;
  color: var(--primery-color);
  font-family: "Poppins-Medium";
  margin-top: 18px;
}
#our-process-section .app-box p {
  font-size: 16px;
  color: #000;
}

#free-quote-section {
  padding: 40px 0;
}
#free-quote-section .free-quote-wrapper {
  text-align: center;
  padding: 50px;
  background: rgba(221, 236, 255, 0.6588235294);
  border-radius: 8px;
}
#free-quote-section .free-quote-wrapper h4 {
  font-size: 32px;
  color: #202020;
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
}
#free-quote-section .free-quote-wrapper p {
  color: #202020;
  font-size: 18px;
}
#free-quote-section .free-quote-wrapper .btn-view {
  margin-top: 12px;
  text-align: -webkit-center;
}
#free-quote-section .free-quote-wrapper .btn-view button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  font-family: "Poppins-Medium";
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--primery-color);
}
#free-quote-section .free-quote-wrapper .btn-view button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
#free-quote-section .free-quote-wrapper .btn-view button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#free-quote-section .free-quote-wrapper .btn-view button a {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 25px;
  color: var(--primery-color);
  font-size: 18px;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
#free-quote-section .free-quote-wrapper .btn-view button:hover a {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

#case-study-introduction {
  padding: 80px 0 0 0;
}
#case-study-introduction .case-study-name h1 {
  font-family: "Poppins-SemiBold";
  font-size: 38px;
  text-transform: capitalize;
  color: var(--primery-color);
  text-align: center;
  letter-spacing: 0.5px;
}
#case-study-introduction .images {
  text-align: center;
  padding: 40px 14px;
}
#case-study-introduction .intro-para {
  padding: 20px 0;
}
#case-study-introduction .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
}
#case-study-introduction .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}
#case-study-introduction .intro-images {
  border-radius: 18px;
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  padding: 20px;
}

#client-profile-section {
  padding: 40px 0;
}
#client-profile-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
}
#client-profile-section .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}

#challenges-section {
  padding: 40px 0;
}
#challenges-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
  padding-bottom: 18px;
}
#challenges-section .challenges-wrapper {
  border-radius: 18px;
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  padding: 20px;
  min-height: 207px;
}
#challenges-section .challenges-wrapper h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
}
#challenges-section .challenges-wrapper p {
  text-align: justify;
  text-transform: capitalize;
}
#challenges-section .challenges-wrapper-box {
  border-radius: 18px;
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  padding: 20px;
}
#challenges-section .challenges-wrapper-box h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
}
#challenges-section .challenges-wrapper-box p {
  text-align: justify;
  text-transform: capitalize;
}

#solution-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
}
#solution-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
}
#solution-section .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}
#solution-section .solution-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  min-height: 185px;
  box-shadow: 1px 1px 10px 0px #d3d3d3;
}
#solution-section .solution-wrapper h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
}
#solution-section .solution-wrapper p {
  text-align: justify;
  text-transform: capitalize;
}
#solution-section .solution-wrapper-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  min-height: 436px;
  box-shadow: 1px 1px 10px 0px #d3d3d3;
}
#solution-section .solution-wrapper-box h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
}
#solution-section .solution-wrapper-box ul {
  padding-left: 0;
  list-style-type: none;
}
#solution-section .solution-wrapper-box ul li {
  text-align: justify;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
#solution-section .solution-wrapper-box ul li b {
  font-size: 16px;
}

#implementation-section {
  padding: 40px 0;
}
#implementation-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
}
#implementation-section .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}
#implementation-section .steps-wrapper {
  padding-bottom: 12px;
}
#implementation-section .steps-wrapper .steps {
  display: flex;
  align-items: center;
}
#implementation-section .steps-wrapper .steps span {
  font-size: 16px;
  color: #fff;
  font-family: "Poppins-SemiBold";
  background: var(--primery-color);
  padding: 7px 16px;
  border-radius: 22px;
}
#implementation-section .steps-wrapper h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
  margin-bottom: 0;
}
#implementation-section .steps-wrapper p {
  text-align: justify;
  text-transform: capitalize;
  padding-left: 50px;
}
#implementation-section .steps-wrapper ul {
  list-style-type: none;
  padding-left: 48px;
}
#implementation-section .steps-wrapper ul li {
  text-align: justify;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
#implementation-section .steps-wrapper ul li b {
  font-size: 16px;
}

#results-section {
  padding: 40px 0;
  background: rgba(221, 236, 255, 0.6588235294);
}
#results-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
}
#results-section .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}
#results-section .results-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 1px 1px 10px 0px #d3d3d3;
}
#results-section .results-wrapper h5 {
  font-family: "Poppins-Medium";
  color: var(--secondary-color);
}
#results-section .results-wrapper p {
  text-align: justify;
  text-transform: capitalize;
}

#conclusion-section {
  padding: 40px 0;
}
#conclusion-section .intro-para h3 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
  text-align: center;
}
#conclusion-section .intro-para p {
  text-align: justify;
  text-transform: capitalize;
}

#blog-iamges-section {
  padding: 60px 0;
}

#blog-detail-section .blog-title h4 {
  font-family: "Poppins-SemiBold";
  font-size: 32px;
  text-transform: capitalize;
  color: var(--primery-color);
  letter-spacing: 0.5px;
}
#blog-detail-section .category-post-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  padding: 24px;
  border-radius: 38px;
  margin: 18px 0;
}
#blog-detail-section .category-post-details a {
  text-decoration: none;
  text-transform: capitalize;
  font-family: "Poppins-Medium";
  font-size: 16px;
  color: var(--primery-color);
}
#blog-detail-section .category-post-details .date p {
  margin-bottom: 0;
}
#blog-detail-section .category-post-details h4 {
  margin-bottom: 0;
  font-family: "Poppins-Medium";
  font-size: 18px;
}
#blog-detail-section p {
  text-align: justify;
  text-transform: capitalize;
}
#blog-detail-section .tabel-content .accordion .accordion-item {
  background: rgba(221, 236, 255, 0.6588235294);
  border-radius: 18px;
}
#blog-detail-section .tabel-content .accordion .accordion-header .accordion-button {
  background: transparent;
  border-bottom: none;
  color: #004AAD;
  font-family: "Poppins-SemiBold";
  font-size: 22px;
}
#blog-detail-section .tabel-content .accordion .accordion-body ul {
  margin-bottom: 0;
  padding-left: 20px;
}
#blog-detail-section .tabel-content .accordion .accordion-body ul li {
  padding: 0 0 18px 0;
}
#blog-detail-section .tabel-content .accordion .accordion-body ul li a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins-Medium";
  color: #000;
}
#blog-detail-section .paragraph {
  padding-top: 18px;
}
#blog-detail-section .heading-with-para {
  padding: 14px 0;
}
#blog-detail-section .heading-with-para h2 {
  font-family: "Poppins-Medium";
  font-size: 22px;
  color: var(--primery-color);
  margin-bottom: 0;
  padding-bottom: 8px;
}
#blog-detail-section .heading-with-para p {
  text-align: justify;
  text-transform: capitalize;
}
#blog-detail-section .heading-with-para h3 {
  font-family: "Poppins-Medium";
  font-size: 18px;
  color: var(--primery-color);
  margin-bottom: 0;
  padding-bottom: 8px;
}
#blog-detail-section .heading-with-para p {
  text-align: justify;
  text-transform: capitalize;
}
#blog-detail-section .blog-related-post {
  background: #fff;
  box-shadow: 1px 1px 14px rgba(28, 160, 194, 0.1803921569);
  text-align: center;
  position: sticky;
  top: 80px;
  padding: 18px;
  border-radius: 18px;
}
#blog-detail-section .blog-related-post h4 {
  font-size: 22px;
  font-family: "Poppins-Medium";
  text-transform: capitalize;
  color: var(--primery-color);
}
#blog-detail-section .blog-related-post .categorise-btn a {
  text-decoration: none;
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  font-family: "Poppins-Medium";
}/*# sourceMappingURL=home-page-style.css.map */