@charset "UTF-8";
/*====================================================================
	Colors variables
=====================================================================*/
/*===============================================================
	Resets
=================================================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 0.5rem;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  outline: none;
  text-decoration: none;
  opacity: 1;
}

ul {
  list-style-type: none;
  margin-bottom: 1rem;
}

li {
  list-style: none;
  color: #363636;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

/*===============================================================
	Margin classes
=================================================================*/
.mr-0 {
  margin: 0;
}

.mrt-small {
  margin-top: 0.75rem;
}

.mrt-normal {
  margin-top: 1.5rem;
}

.mrt-large {
  margin-top: 2rem;
}

.mrt-big {
  margin-top: 2.5rem;
}

.mrt-huge {
  margin-top: 3.2rem;
}

.mrb-small {
  margin-bottom: 0.75rem;
}

.mrb-normal {
  margin-bottom: 1.5rem;
}

.mrb-large {
  margin-bottom: 2rem;
}

.mrb-big {
  margin-bottom: 2.5rem;
}

.mrb-huge {
  margin-bottom: 3.2rem;
}

/*===============================================================
	Padding classes
=================================================================*/
.pd-0 {
  padding: 0;
}

.pdt-small {
  padding-top: 0.75rem;
}

.pdt-normal {
  padding-top: 1.5rem;
}

.pdt-large {
  padding-top: 2rem;
}

.pdt-big {
  padding-top: 2.5rem;
}

.pdt-huge {
  padding-top: 3.2rem;
}

.pdb-small {
  padding-bottom: 0.75rem;
}

.pdb-normal {
  padding-bottom: 1.5rem;
}

.pdb-large {
  padding-bottom: 2rem;
}

.pdb-big {
  padding-bottom: 2.5rem;
}

.pdb-huge {
  padding-bottom: 3.2rem;
}

/*===============================================================
	Sections
=================================================================*/
.section {
  transition: all 1s ease;
}

.section-hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section-entry {
  padding: 3rem 0;
  overflow: hidden;
}

.section-title {
  margin-bottom: 20px;
}

.section-title-center {
  text-align: center;
}

/*===============================================================
	Global
=================================================================*/
.bg-dark {
  background-color: #2b2b2b;
}

.spacer {
  height: 300px;
}

.hr-spacer {
  display: inline-block;
  margin-right: 40px;
}

.main-wrapper {
  position: relative;
  overflow: hidden;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

/*===============================================================
	Common font sizes and styles
=================================================================*/
h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.9rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #4faf47;
  margin-bottom: 0.75rem;
}

p {
  color: #000000;
  margin-bottom: 1rem;
}

.txt-center {
  text-align: center;
}

.txt-upper {
  text-transform: uppercase;
}

.txt-capitalize {
  text-transform: capitalize;
}

.txt-light {
  color: #ffffff;
}

body.dark {
  background-color: #2b2b2b;
}
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5, body.dark h6 {
  color: #ffffff;
}
body.dark p {
  color: #f7f7f7;
  font-weight: 300;
}

.title-accent {
  position: relative;
  margin-bottom: 2rem;
}
.title-accent::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #ffae19;
}

.title-dual {
  font-weight: 400;
}
.title-dual span {
  font-weight: 800;
  color: #d81155;
}

.title-bg {
  text-transform: uppercase;
  font-weight: 800;
  color: transparent;
  background-image: url("../img/mountain.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
          background-clip: text;
}

.title-gradient {
  text-transform: uppercase;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(#4faf47, #d81155);
  -webkit-background-clip: text;
          background-clip: text;
}

.title-bg-dual {
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  background-color: #fac952;
  color: #d81155;
  padding-left: 5px;
}
.title-bg-dual span {
  display: inline-block;
  background-color: #d81155;
  color: #fac952;
  padding: 0 5px;
}

.title-oblique {
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  background-color: #4faf47;
  position: relative;
  padding-left: 5px;
}
.title-oblique::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 5px;
  right: -2%;
  width: 50%;
  background-color: #ffffff;
  transform: skewX(45deg);
}

.title-pseudo {
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  background-color: #4faf47;
  position: relative;
  padding: 0 10px;
  display: inline-block;
}
.title-pseudo::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
  width: 10px;
  background-color: #4faf47;
}

.title-end {
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  padding-right: 10px;
  display: inline-block;
}
.title-end::after {
  content: "";
  position: absolute;
  bottom: 9px;
  right: -6px;
  width: 8px;
  height: 8px;
  background-color: #d81155;
}

.title-shadow {
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  margin-top: 5rem;
}
.title-shadow::before {
  content: "this is a heading";
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  font-size: 70px;
  color: #ffffff;
  background-color: #ffffff;
  text-shadow: -1px -1px 0 #dadada, 1px -1px 0 #dadada, -1px 1px 0 #dadada, 1px 1px 0 #dadada;
}

/*====================================================================
	Buttons style-1
=====================================================================*/
.c-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #04113e, #0a2a7a);
  color: #fff;
  text-decoration: none;
  border-radius: 38px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.c-btn:hover {
  color: #ffffff;
  background-color: #04113e;
}

body.dark .c-btn {
  background-color: #ffffff;
  color: #4faf47;
}
body.dark .c-btn:hover {
  background-color: #efefef;
}

/*====================================================================
	Buttons style-2
=====================================================================*/
.c-btn.s2 {
  background-color: transparent;
  color: #4faf47;
  border-color: #4faf47;
  border-radius: 50px;
  text-transform: capitalize;
}
.c-btn.s2:hover {
  color: #ffffff;
  background-color: #4faf47;
}

/*====================================================================
	Buttons style-3
=====================================================================*/
.c-btn.s3 {
  font-size: 20px;
  text-transform: uppercase;
  background-color: transparent;
  color: #444;
  box-shadow: inset 0 10px 5px rgba(0, 0, 0, 0.05), 0 25px 8px rgba(0, 0, 0, 0.05), 0 20px 15px rgba(0, 0, 0, 0.05), inset 0 -10px 15px rgba(255, 255, 255, 0.9);
}
.c-btn.s3::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  width: 65%;
  height: 5px;
  background-color: #ffffff;
}

.dark .c-btn.s3 {
  background-color: transparent;
  color: #efefef;
  box-shadow: inset 0 10px 5px rgba(255, 255, 255, 0.05), 0 25px 8px rgba(255, 255, 255, 0.05), 0 20px 15px rgba(255, 255, 255, 0.05), inset 0 -10px 15px rgba(0, 0, 0, 0.9);
}
.dark .c-btn.s3:hover {
  background-color: #363636;
}
.dark .c-btn.s3::before {
  background-color: #363636;
}

/*====================================================================
	Buttons style-4
=====================================================================*/
.c-btn.s4 {
  background-color: #0690fd;
  border-radius: 0;
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  box-shadow: 0 20px 25px rgba(6, 146, 253, 0.25);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
}
.c-btn.s4:hover {
  width: 200px;
  transition-delay: 0.5s;
}
.c-btn.s4::before {
  content: "";
  position: absolute;
  right: 25px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  transition: all 0.5s;
}
.c-btn.s4:hover::before {
  transform: rotate(45deg) translate(50px, -50px);
}
.c-btn.s4::after {
  content: "";
  position: absolute;
  left: -50px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg) translate(-50px, 50px);
  transition: all 0.5s;
}
.c-btn.s4:hover::after {
  transform: rotate(45deg) translate(50px, -50px);
  transition-delay: 1s;
}
.c-btn.s4 span {
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: all 0.5s;
  transform: translateX(-30px);
}
.c-btn.s4:hover span {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.75s;
  transform: translateX(10px);
}

.dark .c-btn.s4 {
  background-color: #0690fd;
  color: #2b2b2b;
  box-shadow: 0 20px 25px rgba(6, 146, 253, 0.25);
}
.dark .c-btn.s4::before {
  border-top: 3px solid #2b2b2b;
  border-right: 3px solid #2b2b2b;
}
.dark .c-btn.s4::after {
  border-top: 3px solid #2b2b2b;
  border-right: 3px solid #2b2b2b;
}
.dark .c-btn.s4:hover {
  color: #2b2b2b;
}

/*====================================================================
	Togglers section
=====================================================================*/
.toggler-list {
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.toggler-list li {
  margin-right: 70px;
}
.toggler-list li img {
  max-width: 50px;
}

.toggler-list-white {
  background-color: #4faf47;
}

/*====================================================================
	Cards general
=====================================================================*/
.card {
  border: none;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-img {
  border-radius: 0;
}

.card-title {
  color: #4faf47;
  margin-bottom: 12px;
}

/*====================================================================
	Card layout-1
=====================================================================*/
.card-1 {
  height: 100%;
  background-color: #efefef;
  padding: 1rem;
  text-align: center;
}
.card-1__icon {
  padding: 1.5rem;
}
.card-1__icon i {
  font-size: 50px;
  color: #fac952;
}

.dark .card-1 {
  background-color: #363636;
}

/*====================================================================
	Card layout-2
=====================================================================*/
.card-2 {
  position: relative;
  height: 100%;
  background-color: #efefef;
}
.card-2__content {
  padding: 1rem 1.5rem 4rem;
}
.card-2__title {
  padding: 0.5rem;
}
.card-2__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1rem;
}

.dark .card-2 {
  background-color: #252525;
}

/*====================================================================
	Card side layout-1
=====================================================================*/
.card-side {
  display: flex;
  background-color: #f7f7f7;
  overflow: hidden;
  position: relative;
}
.card-side__image {
  position: relative;
  overflow: hidden;
  flex: 0 0 40%;
}
.card-side__body {
  padding: 20px;
  flex: 0 0 60%;
}
.card-side__content {
  margin-bottom: 0.75rem;
}
.card-side__title {
  font-size: 1.2rem;
}
.card-side a {
  display: inline-block;
}

.dark .card-side {
  background-color: #363636;
}

/*====================================================================
	Banners style 1 Bootstrap carousel
=====================================================================*/
#digiCarousel .carousel-item {
  position: relative;
  width: 100%;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#digiCarousel .carousel-item1 {
  background-image: url("../img/banner.jpg");
}
#digiCarousel .carousel-caption {
  right: 50%;
  bottom: 50%;
  transform: translateY(50%);
  left: 10%;
  text-align: left;
}
#digiCarousel .carousel-caption h5 {
  color: #ffffff;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 900;
}
#digiCarousel .carousel-caption p {
  color: #ffffff;
  padding-right: 100px;
}

/*====================================================================
	Banners style 2 Swiper carousel
=====================================================================*/
.carousel-wrapper-cube {
  overflow: hidden;
  position: relative;
  padding-bottom: 31.25%;
}
.carousel-wrapper-cube .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.carousel-wrapper-cube .swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}
.carousel-wrapper-cube .swiper .slide1 {
  background-image: url("../img/banner-1.jpg");
}
.carousel-wrapper-cube .swiper .slide2 {
  background-image: url("../img/banner-2.jpg");
}
.carousel-wrapper-cube .swiper .slide3 {
  background-image: url("../img/banner-3.jpg");
}

.mySwiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

.carousel-wrapper-flip {
  overflow: hidden;
  position: relative;
}
.carousel-wrapper-flip .swiper {
  width: 100%;
  height: 100%;
}
.carousel-wrapper-flip .swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.carousel-wrapper-flip .swiper .swiper-slide img {
  display: block;
  width: 100%;
}

/*====================================================================
	Modal style-1
=====================================================================*/
.nav-item-modal {
  display: flex;
  align-items: center;
}

.navbar .nav-link.c-btn {
  color: #ffffff;
  line-height: unset;
  padding: 0.5rem 1rem;
}

.dark .navbar .nav-link.c-btn {
  background-color: #ffffff;
  color: #4faf47;
}
.dark .navbar .nav-link.c-btn:hover {
  background-color: #efefef;
}

.digi-modal {
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5rem;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: all 0.5s;
  background-color: #ffffff;
}

.digi-modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  transition: all 0.5s;
}

.btn-close-modal {
  font-family: inherit;
  color: inherit;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  border: none;
  background: none;
}

/*====================================================================
	Page banners layout-1
=====================================================================*/
.page-banner {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
}
.page-banner--about {
  background-image: url("../img/banner-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-banner--contact {
  background-image: url("../img/banner-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-banner .page-banner-caption {
  position: absolute;
  left: 10%;
  bottom: 20%;
}
.page-banner .page-banner-caption h5 {
  font-size: 2.5rem;
}

.page-banner.carousel {
  padding: 0;
}

/*====================================================================
	Tabs style-1
=====================================================================*/
.tabs-section-1 {
  max-width: 100rem;
  margin: 5rem auto 0 auto;
  background-color: #efefef;
}
.tabs-section-1 .tabs-btn-wrap {
  display: flex;
  justify-content: center;
}
.tabs-section-1 .tabs-sc-btn {
  margin-right: 2.5rem;
  transform: translateY(-50%);
  border-radius: 50px;
}
.tabs-section-1 .tabs-sc-btn span {
  margin-right: 1rem;
  font-weight: 600;
  display: inline-block;
}
.tabs-section-1 .tabs-sc-btn-1 {
  background-color: #fac952;
}
.tabs-section-1 .tabs-sc-btn-1:hover {
  background-color: #ffae19;
}
.tabs-section-1 .tabs-sc-btn-2 {
  background-color: #35e753;
}
.tabs-section-1 .tabs-sc-btn-2:hover {
  background-color: #16bb32;
}
.tabs-section-1 .tabs-sc-btn-3 {
  background-color: #ff728b;
  margin: 0;
}
.tabs-section-1 .tabs-sc-btn-3:hover {
  background-color: #e5536d;
}
.tabs-section-1 .tabs-sc-btn-active {
  transform: translateY(-66%);
}
.tabs-section-1 .tabs-content {
  display: none;
  padding: 2.5rem 7rem 6.5rem 7rem;
}
.tabs-section-1 .tabs-content-active {
  display: block;
}
.tabs-section-1 .tabs-header {
  font-size: 1.8rem;
  font-weight: 500;
  align-self: center;
}

.dark .tabs-section-1 {
  background-color: #363636;
}

/*====================================================================
	Home
=====================================================================*/
.hm-product-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hm-product-wrapper h2 {
  font-size: 28px;
  font-weight: 900;
}
.hm-product-wrapper .product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.hm-product-wrapper .product-card {
  background: #fff;
  border-radius: 18px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
}
.hm-product-wrapper .product-card:hover {
  transform: translateY(-6px);
}
.hm-product-wrapper .product-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 40px;
}
.hm-product-wrapper .product-card h4 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-top: -35px;
}

.hm-wrapper h3 {
  font-size: 28px;
  font-weight: 900;
}
.hm-wrapper .default-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #04113e, #0a2a7a);
  color: #fff;
  text-decoration: none;
  border-radius: 38px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.hm-wrapper .default-btn:hover {
  background-color: #4faf47;
}

.home-cta-wrapper {
  background: linear-gradient(135deg, #04113e, #0a2a7a);
  padding: 90px 0;
  color: #fff;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 16px;
  opacity: 0.8;
  margin: 0;
  color: #ffffff;
}

.cta-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #218838;
  color: #fff;
}

.why-choose-kinetiq-wrapper h1 {
  font-size: 28px;
  text-align: center;
  font-weight: 900;
}
.why-choose-kinetiq-wrapper p {
  text-align: center;
  margin-bottom: 30px;
}
.why-choose-kinetiq-wrapper .feature-card {
  margin-top: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
}
.why-choose-kinetiq-wrapper .feature-card:hover {
  transform: translateY(-8px);
}
.why-choose-kinetiq-wrapper {
  /* Icon */
}
.why-choose-kinetiq-wrapper .feature-card .icon {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.why-choose-kinetiq-wrapper {
  /* Title */
}
.why-choose-kinetiq-wrapper .feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #04113e;
  font-size: 18px;
}

.testimonial-wrapper h4 {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}
.testimonial-wrapper .owl-nav {
  display: flex;
  justify-content: space-evenly;
}
.testimonial-wrapper .testimonial-card {
  padding: 35px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}
.testimonial-wrapper .testimonial-card p {
  line-height: 1.7;
}
.testimonial-wrapper .testimonial-card::before {
  content: "“";
  font-size: 70px;
  color: rgba(4, 17, 62, 0.2);
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: serif;
}
.testimonial-wrapper .testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.testimonial-wrapper .testimonial-user img {
  width: 55px !important;
  height: 55px;
  border-radius: 50%;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-wrapper .testimonial-user h5 {
  margin: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}
.testimonial-wrapper .testimonial-user span {
  font-size: 13px;
  color: #777;
}

/*====================================================================
	About Us
=====================================================================*/
.about-banner {
  background-image: url("../img/about-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10rem 0;
  background-blend-mode: hard-light;
  background-color: #283177;
}
.about-banner h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
}

.about-info-wrapper h3 {
  font-size: 28px;
  font-weight: 900;
}

.about-cards {
  background: #f8f9fa;
}
.about-cards h1 {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}
.about-cards p {
  text-align: center;
}

.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.about-card:hover {
  transform: translateY(-8px);
}
.about-card .icon {
  width: 80px;
  margin-bottom: 15px;
}
.about-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #04113e;
}
.about-card p {
  font-size: 14px;
}

.process-section {
  background: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
}

.process-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  position: relative;
  color: #04113e;
}

.process-card:hover {
  transform: translateY(-8px);
}

.step-number {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #283077;
}

.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #04113e;
}

/*====================================================================
	Products
=====================================================================*/
/*====================================================================
	Gallery
=====================================================================*/
/*====================================================================
	Contact Us
=====================================================================*/
@media (max-width: 768px) {
  .product-main-image {
    height: 350px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-banner {
    background-image: url(../img/about-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3rem 0;
    background-blend-mode: hard-light;
    background-color: #283177;
  }
  .about-banner h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
  }
  #digiCarousel .carousel-caption h5 {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
  }
  #digiCarousel .carousel-caption p {
    color: #ffffff;
    padding-right: 0;
    font-size: 8px;
  }
}
/*====================================================================
	Two column layout-1
=====================================================================*/
.two-col-l1 {
  height: 100%;
}
.two-col-l1__image {
  height: 100%;
  background-image: url("../img/office.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.two-col-l1__content {
  height: 100%;
}
.two-col-l1__text {
  margin-bottom: 2rem;
}

/*====================================================================
	Three column layout-1
=====================================================================*/
.three-column.layout-1 {
  margin-bottom: 2rem;
}

/*====================================================================
	Three column layout-2
=====================================================================*/
.three-column.layout-2 {
  margin-bottom: 2rem;
}

/*====================================================================
	Footer layout-1
=====================================================================*/
.top-footer-wrapper {
  background-color: aliceblue;
}
.top-footer-wrapper .logo-img {
  width: 190px;
}
.top-footer-wrapper h5 {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 20px;
}
.top-footer-wrapper p {
  font-size: 14px;
}
.top-footer-wrapper ul {
  line-height: 35px;
  padding: 0;
}
.top-footer-wrapper a {
  color: #1e1e1e;
}
.top-footer-wrapper .footer-social-list {
  padding: 0;
  margin-bottom: 0;
  display: flex;
}
.top-footer-wrapper .footer-social-list .pr-3 {
  padding-right: 1rem !important;
}
.top-footer-wrapper .footer-social-list li i {
  color: #1e1e1e;
  width: 35px;
  height: 35px;
  font-size: 23px;
  text-align: center;
  line-height: 35px;
  transition: all 0.3s;
}
.top-footer-wrapper .footer-copyright-text {
  margin-bottom: 0;
  text-align: center;
  font-size: 0.85rem;
  color: #000000;
}
.top-footer-wrapper .footer-copyright-text a {
  color: #4faf47;
}

.cta-btn.whatsapp {
  background: #25d366;
}

.cta-btn.enquiry {
  background: #0f9b0f;
}

.whatsapp i {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  background-color: #25d366;
  /* box-shadow: 2px 2px 3px #999; */
  font-size: 30px;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.callus i {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  background-color: #063484;
  /* box-shadow: 2px 2px 3px #999; */
  font-size: 30px;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.scroll-top {
  position: absolute;
  top: 5px;
  right: 20px;
  color: #ffffff !important;
  cursor: pointer;
}

.scroll-top:hover {
  color: #f7f7f7 !important;
}

.bottom-footer-wrapper {
  background-color: #262e76;
  padding: 1rem 0;
}

.dark .bottom-footer-wrapper {
  background-color: #2b2b2b;
}

.footer-copyright-text {
  margin-bottom: 0;
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
}

.creator-link {
  color: #ffffff;
  font-weight: 600;
}

.creator-link:hover {
  color: #ffffff;
}

.contact-form {
  width: 100%;
}
.contact-form__label {
  padding-left: 1rem;
  font-size: 0.9rem;
}
.contact-form__input {
  background-color: #f8f8f8;
}
.contact-form__input:focus {
  border-color: #b7ffa3;
  box-shadow: none;
  border-bottom: 3px solid #b7ffa3;
}
.contact-form__input:focus::-moz-placeholder {
  color: transparent;
}
.contact-form__input:focus::placeholder {
  color: transparent;
}
.contact-form__input::-moz-placeholder {
  color: #363636;
  font-size: 0.9rem;
}
.contact-form__input::placeholder {
  color: #363636;
  font-size: 0.9rem;
}
.contact-form__textarea {
  background-color: #f8f8f8;
}
.contact-form__textarea:focus {
  border-color: #b7ffa3;
  box-shadow: none;
  border-bottom: 3px solid #b7ffa3;
}
.contact-form__textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-form__textarea:focus::placeholder {
  color: transparent;
}
.contact-form__button {
  margin-top: 2rem;
}

.form-control {
  padding: 1rem 0.75rem;
}

/*====================================================================
	Navbar style 1
=====================================================================*/
.navbar {
  background-color: transparent;
}
.navbar .logo-img {
  width: 175px;
  display: block;
}
.navbar .logo-img.dark-mode {
  display: none;
}
.navbar .nav-item {
  padding-left: 1rem;
}
.navbar .nav-link {
  color: #000000;
  line-height: 50px;
  text-transform: capitalize;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.customNav {
  animation: navSlide 1s ease forwards;
  background-color: #ffffff;
  box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

@keyframes navSlide {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.navbar .dropdown-item {
  padding: 10px 15px;
  transition: 0.3s;
}
.navbar .dropdown-item:hover {
  background: #28a745;
  color: #fff;
}
.navbar {
  /* SHOW DROPDOWN ON HOVER (DESKTOP) */
}
.navbar .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
  }
  .navbar .dropdown-menu.show {
    display: block;
  }
}
@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }
  .nav-link {
    line-height: normal !important;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .nav-link {
    border-bottom: solid 1px #efefef;
  }
  .dropdown-item {
    border-bottom: solid 1px #efefef;
  }
  .navbar-toggler {
    border: none !important;
  }
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }
}
/*===============================================================
	About us page
=================================================================*/
/*===============================================================
	Contact us page
=================================================================*/
#mail-msg-alert {
  margin-bottom: 3rem;
}

#mail-msg-alert button.btn {
  display: table;
  margin: 0 auto;
}

#mail-msg {
  color: #ffffff;
}

#mail-msg:hover {
  text-decoration: none;
}

.contact-section {
  margin-top: 4rem;
}
.contact-section__widget {
  margin-bottom: 2rem;
}
.contact-section .social-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.contact-section .social-list li:not(:last-child) {
  margin-right: 20px;
}
.contact-section .social-list i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  /* border: 1px solid #363636; */
  background-color: #283077;
  transition: all 0.3s;
  border-radius: 50%;
}
.contact-section .social-list i:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: #363636;
}

.dark .contact-section .social-list i {
  color: #efefef;
  border-color: #efefef;
  transition: all 0.3s;
}
.dark .contact-section .social-list i:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.contact-map {
  position: relative;
  padding-bottom: 34%;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.contact-wrapper h1 {
  font-size: 28px;
  font-weight: 900;
}
.contact-wrapper h5 {
  color: #000000;
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */