/*================== IMPORTS =================*/

@import url("../fonts/stylesheet.css");

/*================== VARIABLES =================*/

:root {
  --clr-theme-red: #e6000f;
  --clr-footer-bg: #003c57;
  --clr-theme-copy: #747474;
  --clr-theme-white-500: #f8f8f8;
  --clr-theme-white: #ffffff;
  --clr-theme-dark: #333333;
  --clr-theme-border: #bebebe;

  --ff-primary: "Tomato Grotesk";
  --ff-body: "Figtree-Regular";

  --fs-xxl: 72px;
  --fs-xl: 60px;
  --fs-lg: 32px;
  --fs-md: 28px;
  --fs-sm: 24px;
  --fs-body: 20px;
  --fs-xs: 16px;

  --section-gap: 90px;
  --radius-sm: 16px;
  --transition: all 0.4s ease-in-out;
}

/*================== BROWSER RESET =================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-theme-copy);
}

p {
  margin-bottom: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 12px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}

::selection {
  background-color: var(--clr-theme-red);
  color: var(--clr-theme-white);
}

/*================== UTILITY CLASSES =================*/

.container {
  max-width: 1620px;
}

.custom-pad {
  padding: var(--section-gap) 0;
}

.kajriwal__overlay {
  position: relative;
  z-index: 1;
}

.kajriwal__overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  top: 0;
  left: 0;
}

.kajriwal__bgImg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.kajriwal__bgImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: -1;
}

.kajriwal__bgMask {
  mask-mode: alpha;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.kajriwal__img-radius {
  border-radius: var(--radius-sm);
  display: block;
  overflow: hidden;
}

.kajriwal__img::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.kajriwal__img:hover::after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

.kajriwal__img {
  overflow: hidden;
  position: relative;
}

.kajriwal__img img {
  transition: var(--transition);
  width: 100%;
}

.kajriwal__section-radius {
  padding: 0 20px;
}

.kajriwal__service-trainCta {
  overflow: hidden;
}

.kajriwal__section-radius > * {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clr-theme-border);
}

section[class^="kajri__"] {
  position: relative;
  z-index: 3;
}

.kajriwal__bg-light {
  background-color: var(--clr-theme-white-500);
}

/*================== COMPONENTS =================*/

/**
 * Headings
 */

h1 {
  font-size: var(--fs-xxl);
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-lg);
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-sm);
}

h6 {
  font-size: var(--fs-xs);
}

.kajriwal__heading {
  color: var(--clr-theme-text);
}

/**
 * Swiper 
 */

[class^="swiper-button-"]::after {
  content: "";
  display: none;
}

[class^="swiper-button-"] {
  position: absolute;
  background-color: transparent;
  font-size: 18px;
  z-index: 2;
  top: unset;
  left: 0;
  bottom: 15px;
  width: 90px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 50px;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  transition: all 0.3s ease-in-out;
  z-index: 4;
}

[class^="swiper-button-"]:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
}

[class^="swiper-button-next"] {
  left: 100px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px;
  height: 35px;
  color: var(--clr-theme-white);
  background-color: var(--clr-purple);
  border-radius: 50%;
}

.swiper-wrapper {
  padding-bottom: 15px;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 0px;
}

.kajriwal__swiper-nav {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: end;
}

.swiper-button-prev .icon {
  rotate: 180deg;
}

.swiper-button-prev:hover {
  background-color: var(--clr-theme-red);
}

.swiper-button-next:hover {
  background-color: var(--clr-theme-red);
}

.swiper-button-next:hover.swiper-button-next svg {
  color: var(--clr-theme-white);
}

.swiper-button-prev:hover.swiper-button-prev svg {
  color: var(--clr-theme-white);
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 55px;
  height: 36px;
  border: 1px solid var(--clr-theme-red);
  border-radius: 6px;
  background-color: var(--clr-theme-white);
  color: var(--clr-theme-red);
}

/**
 * Form
 */

.form-group:not(.form-button) {
  margin-bottom: 16px;
}

.form-control::placeholder {
  color: var(--clr-theme-copy);
  font-weight: 300;
}

textarea.form-control {
  min-height: 160px;
  resize: none;
  height: 100px;
}

/*================== KEYFRAMES =================*/

/**============================================
 *               SECTION HEADER START
 *=============================================**/
/* ==========================
   Header
========================== */

.kajriwal__header {
  background: #fff;
  border-top: 2px solid #8f8f8f;
  position: relative;
  z-index: 999;
}

.kajriwal__header.fixed__header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.1);
  box-shadow: 0px 6px 35px -12px rgba(35, 35, 35, 0.15);
  -webkit-animation: headerSticky 0.7s ease-in-out;
  animation: headerSticky 0.7s ease-in-out;
}

.kajriwal__header-inner {
  display: flex;
  justify-content: space-between;
  min-height: 92px;
  height: 100%;
}

.kajriwal__logo {
  padding-left: 20px;
  flex-shrink: 0;
  margin: 0;
}

.kajriwal__logo img {
  height: 100px;
  object-fit: contain;
}

.kajriwal__navbar {
  flex: 1;
  padding: 0;
}

.kajriwal__navbar .navbar-nav {
  gap: 35px;
}

.kajriwal__navbar .nav-item {
  position: relative;
}

.kajriwal__navbar .nav-link {
  color: #4c4c4c;
  font-weight: 400;
  padding: 43px 0;
  transition: all 0.3s ease;
}

.kajriwal__navbar .nav-link:hover {
  color: #d60000;
}

.kajriwal__navbar .nav-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background-color: var(--clr-theme-red);
  transition: all 0.4s ease-in-out;
}

.kajriwal__navbar .nav-item.active::before {
  width: 52px;
}

.kajriwal__navbar .nav-item:hover::before {
  width: 52px;
  transition: all 0.4s ease-in-out;
}

.kajriwal__navbar .nav-item.active .nav-link {
  color: #000;
}

.kajriwal__navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.kajriwal__navbar .dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
}

.kajriwal__navbar .dropdown-item:hover {
  background-color: var(--clr-theme-red);
  color: #fff;
}

.kajriwal__download {
  flex-shrink: 0;
}

.kajriwal__download.kajriwal__download-moblie {
  display: none;
}

.kajriwal__download a {
  background-color: var(--clr-theme-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  height: 100%;
  padding: 44px 30px;
}

.kajriwal__download a:hover {
  background: #c4000d;
  color: #fff;
}

.kajriwal__download span {
  width: 28px;
}

.kajri__button {
  background-color: var(--clr-theme-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  width: fit-content;
  padding: 12px 30px;
  border: 1px solid var(--clr-theme-red);
  transition: all 0.4s ease-in-out;
}
.kajri__button.kajri__button-underline {
  background-color: transparent;
  color: var(--clr-theme-red);
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--clr-theme-red);
}
.kajri__button.kajri__button-underline span img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7028%) hue-rotate(348deg) brightness(113%) contrast(121%);
}
.kajri__button:hover {
  background: var(--clr-theme-white);
  color: var(--clr-theme-red);
  transition: all 0.4s ease-in-out;
}

.kajri__button:hover img {
  transition: all 0.4s ease-in-out;
  filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7028%)
    hue-rotate(348deg) brightness(113%) contrast(121%);
}

.kajri__button span {
  width: 28px;
}

.kajri__button span img {
  transition: all 0.4s ease-in-out;
}

/* keyframes */

@-webkit-keyframes headerSticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* keyframes */

/* kajri__banner */
.kajri__banner {
  position: relative;
  width: 100%;
}

.kajri__banner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.kajri__banner .swiper-slide {
  height: auto;
}

.kajri__banner-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    90.16deg,
    rgba(1, 20, 44, 0.81) 9.03%,
    rgba(0, 0, 0, 0) 72.73%
  );
  content: "";
}

.kajri__banner-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.kajri__banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kajri__banner-cont {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 50px 0 0 50px;
  transform: translateY(-50%);
  width: 100%;
  z-index: 9;
  height: 100%;
  display: flex;
  align-items: center;
}

.kajri__banner-cont h2 {
  font-size: var(--fs-xl);
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
  width: 60%;
}

.kajri__banner-cont .kajri__button {
  width: fit-content;
  position: absolute;
  bottom: 0;
  right: 0;
}

.kajri_pagination {
  width: fit-content !important;
  padding: 10px 20px;
  z-index: 9;
}

.swiper-pagination-bullet {
  background: #fff !important;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--clr-theme-red) !important;
  width: 35px;
  border-radius: 10px;
}

.kajri__project-headwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px;
}

.kajri__project-cont {
  width: 44%;
}

.kajri__project-wrap {
  position: relative;
  border: 1px solid rgba(205, 205, 205, 1);
  display: flex;
  flex-wrap: wrap;
}

.kajri__project-box {
  width: 25%;
  height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(205, 205, 205, 1);
}

.kajri__project-box:first-child {
  border: none;
}

.kajri__project-box h4 {
  font-size: var(--fs-lg);
  color: var(--clr-theme-red);
}

.kajri__project-box p {
  color: rgba(116, 116, 116, 1);
}

.kajri__production-head {
  position: relative;
  width: 70%;
  margin: 0 auto 25px;
}

.kajri__production-img {
  position: relative;
  width: 85%;
  margin: 25px auto;
}

.kajri__production-img .kajri__production-media {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.kajri__production-img .kajri__img {
  scale: 1.2 !important;
  width: 100%;
  height: 100%;
}

.kajri__production-img .kajri__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kajri__production-img img {
  width: 100%;
}

.kajri__production-wrap {
  position: relative;
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.kajri__production-box {
  width: 33.33%;
  position: relative;
  padding: 12px 30px;
  border-left: 1px solid rgba(177, 177, 177, 1);
  text-align: center;
}

.kajri__production-box h5 {
  font-size: var(--fs-sm);
  color: var(--clr-theme-red);
  margin-bottom: 12px;
}

.kajri__production-box:first-child {
  border: none;
  padding-left: 0;
}

.kajri__production-box:last-child {
  padding-right: 0;
}

.kajri__integrated-left {
  position: relative;
  width: 100%;
}

.kajri__integrated-head {
  padding-bottom: 100px;
}

.kajri__integrated-head h2 {
  width: 85%;
}

.kajri__integrated-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.kajri__integrated-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kajri__integrated-img img {
  position: relative;
  width: 100%;
}

.kajri__integrated-cont {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
}

.kajri__integrated-cont .kajri__button {
  position: absolute;
  right: 0;
  top: -55px;
}

.kajri__integrated-cont h4 {
  font-size: var(--fs-sm);
  color: var(--clr-theme-red);
  margin-bottom: 12px;
}

.kajri__integrated-cont p {
  color: rgba(116, 116, 116, 1);
}

.kajri__integrated-cont ul {
  margin-top: 12px;
  padding-top: 15px;
  border-top: 1px solid rgba(190, 190, 190, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.kajri__integrated-cont ul li {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 1);
  color: rgba(128, 128, 128, 1);
  font-size: 16px;
}

.kajri__integrated-right {
  padding-top: 55px;
}

.kajri__cta-wrap {
  position: relative;
  width: 100%;
}

.kajri__cta-img {
  position: relative;
  width: 100%;
}

.kajri__cta-img img {
  width: 100%;
}

.kajri__cta-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  padding: 30px;
}

.kajri__cta-cont h2 .highlight-txt {
  color: var(--clr-theme-red);
}

.kajri__cta-cont p {
  margin-bottom: 20px;
}

.kajri__products-head {
  position: relative;
  width: 100%;
}

.kajri__products-head .kajri__button {
  position: absolute;
  bottom: 0;
  right: 0;
}

.kajri__products-head {
  padding-bottom: 35px;
}

.kajri__products-wrap {
  position: relative;
  background: rgba(240, 240, 240, 1);
  width: 100%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.kajri__products-box {
  position: relative;
  width: 24%;
  background: rgba(255, 255, 255, 1);
}

.kajri__products-img {
  position: relative;
  width: 100%;
}

.kajri__products-img img {
  width: 50%;
  margin-left: auto;
  height: 300px;
  object-fit: contain;
  object-position: bottom;
}
.kajri__products-cta img {
  margin: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: unset;
}
.kajri__products-cta .kajri__button-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 25px;
}
.kajri__products-cta .kajri__button-wrap .kajri__button {
  margin: 0 auto;
}
.kajri__products-img span {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  color: var(--clr-theme-red);
}

.kajri__products-cont {
  position: relative;
  padding: 20px;
}

.kajri__products-cont h4 a {
  font-size: 20px;
  color: rgba(0, 0, 0, 1);
  display: block;
  margin-bottom: 12px;
}

.kajri__products-cont h4 a:hover {
  color: var(--clr-theme-red);
}

.kajri__products-cont p {
  line-height: 26px;
}

.kajri__products-cont .arrow {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-theme-red);
  border: 1px solid var(--clr-theme-red);
  padding: 8px;
  margin: 12px 0 0 auto;
  transition: var(--transition);
}

.kajri__products-cont .arrow:hover {
  background-color: var(--clr-theme-white);
  transition: var(--transition);
}

.kajri__products-cont .arrow:hover img {
  transition: var(--transition);

  filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7028%)
    hue-rotate(348deg) brightness(113%) contrast(121%);
}

.kajri__pipes {
  border-bottom: 1px solid rgba(205, 205, 205, 1);
  padding-bottom: 25px !important;
}

.kajri__pipes-left {
  position: relative;
  width: 100%;
}

.kajri__pipes-head h2 {
  font-size: 52px;
}

.kajri__pipes-head h2 .highlight-txt {
  color: var(--clr-theme-red);
}

.kajri__products-head ul {
  padding-top: 16px;
}

.kajri__products-head ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kajri__products-head ul li:last-child {
  margin-bottom: 0;
}

.kajri__products-head ul li strong {
  color: var(--clr-theme-red);
  padding-right: 12px;
  text-transform: uppercase;
}

.kajri__pipes-left ul {
  margin-top: 30px;
}

.kajri__pipes-right {
  position: relative;
  width: 100%;
}

.kajri__pipes-img img {
  width: 100%;
}

.kajri__pipes-img {
  margin-bottom: 20px;
}

.kajri__pipes-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  justify-content: start;
}

.kajri__pipes-list li {
  width: 47%;
  position: relative;
  display: flex;
  gap: 15px;
  border-width: 1px 0 0 1px;
  align-items: center;
  padding: 15px;
  background-color: var(--clr-theme-white-500);
}

.kajri__pipes-list li span {
  display: block;
  color: rgba(51, 51, 51, 1);
}

.kajri__pipes-list li h6 {
  font-size: var(--fs-sm);
  color: var(--clr-theme-red);
  font-weight: 500;
}

.kajri__systems-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.kajri__systems-head h2 {
  width: 60%;
  margin-bottom: 0;
}

.kajri__systems-wrap {
  position: relative;
  width: 100%;
  padding: 25px;
  background: rgba(249, 249, 249, 1);
}

.kajri__systems-wrap .nav-tabs {
  border: none;
  gap: 20px;
  margin-bottom: 30px;
}

.kajri__systems-wrap .nav-tabs .nav-link.active {
  border: none;
  box-shadow: inherit;
  color: rgba(0, 0, 0, 1);
  background: none;
}

.kajri__systems-wrap .nav-tabs .nav-link {
  position: relative;
  color: rgba(97, 97, 97, 1);
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 0 12px;
  border: none !important;
}

.kajri__systems-wrap .nav-tabs .nav-link::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--clr-theme-red);
  content: "";
  transition: all 0.4s ease-in-out;
}

.kajri__systems-wrap .nav-tabs .nav-link.active::before {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.kajri__systems-wrap .nav-tabs .nav-link:focus {
  border: inherit;
}
.kajri__systems-wrap .swiper-slide {
  height: auto;
}
.kajri__systems-box {
  position: relative;
  width: 100%;
  background: #fff;
  height: 100%;
}

.kajri__systems-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #efefef;
}

.kajri__systems-img img {
  width: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}

.kajri__systems-img:hover img {
  transition: all 0.4s ease-in-out;
  transform: scale(1.03);
}
.kajri__systems-button {
  text-align: center;
  margin-top: 20px;
}
.kajri__systems-cont {
  position: relative;
  padding: 20px;
  background-color: #fff;
}

.kajri__systems-cont h4 {
  font-size: var(--fs-sm);
  color: var(--clr-theme-red);
}

.kajri__systems-cont p,
.kajri__systems-cont li {
  font-size: 18px;
  margin-bottom: 10px;
}

.kajri__systems-cont li:last-child {
  margin-bottom: 0;
}

.kajri__systems-cont li span {
  color: rgba(51, 51, 51, 1);
}

.kajri__demands-img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 42%;
  transform: translateY(-50%);
}

.kajri__demands-img img {
  width: 100%;
}

.kajri__demands-left {
  position: relative;
  width: 100%;
}

.kajri__demands-left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}

.kajri__demands-left ul li {
  position: relative;
  width: 48.5%;
  padding: 0 0 12px 56px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);
}

.kajri__demands-left ul li span {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  color: var(--clr-theme-red);
  font-size: 20px;
  background: rgba(244, 244, 244, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: -5px;
}

.kajri__demands-left ul li:last-child {
  border: none;
}

.kajri__demands-left ul li:nth-child(5) {
  border: none;
}

.kajri__expert-left {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  background: rgba(248, 248, 248, 1);
}

.kajri__expert-icon {
  width: 105px;
  height: 105px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border: 1px solid rgba(205, 205, 205, 1);
  margin-bottom: 15px;
}

.kajri__expert-left ul {
  position: relative;
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.kajri__expert-left ul li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.kajri__expert-left ul li span {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border: 1px solid rgba(205, 205, 205, 1);
}

.kajri__expert-left ul li p {
  flex: 1;
  line-height: 24px;
}

.kajri__expert-img .kajri__button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.kajri__expert-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kajri__expert-img {
  position: relative;
  margin-left: -30px;
  height: 100%;
}

.kajri__expert-img .kajri__img {
  width: 100%;
  height: 100%;
  scale: 1.2 !important;
}

.kajri__expert-img img {
  height: 100%;
  object-fit: cover;
}

.kajri__choose-head {
  position: relative;
  width: 100%;
}

.kajri__choose-head h2 {
  width: 50%;
}

.kajri__choose-head .kajri__button {
  position: relative;
  margin-left: auto;
}

.kajri__choose-wrap {
  position: relative;
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.kajri__choose-box {
  position: relative;
  padding: 20px 0 20px 30px;
  width: 18.5%;
  border-left: 1px solid rgba(230, 230, 230, 1);
}

.kajri__choose-icon {
  width: 100%;
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding-bottom: 20px;
}

.kajri__choose-icon img {
  margin: 0 auto;
  height: 120px;
  object-fit: contain;
}

.kajri__choose-cont {
  position: relative;
  padding-top: 20px;
  text-align: center;
}

.kajri__choose-cont h4 {
  font-size: var(--fs-sm);
  color: rgba(51, 51, 51, 1);
}

.kajri__choose-cont p {
  line-height: 26px;
}

.kajri__choose-box .number {
  color: rgba(246, 246, 246, 1);
  font-size: 100px;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 900;
}

.kajri__choose-box:nth-child(odd) {
  padding-bottom: 120px;
}

.kajri__choose-box:nth-child(even) {
  padding-top: 120px;
}

.kajri__choose-box:nth-child(even) .number {
  top: 0;
  bottom: inherit;
}

.kajri__choose-box:first-child {
  border: none;
  padding-left: 0;
}

.kajri__industry-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.kajri__industry-head h2 {
  width: 60%;
}

.kajri__industry-button {
  position: relative;
  width: fit-content;
  margin-left: auto;
}

.kajri__industry-next,
.kajri__industry-prev {
  border: 1px solid rgba(230, 230, 230, 1);
  width: 70px;
  height: 50px;
  background-color: transparent !important;
}

.kajri__industry {
  position: relative;
  width: 100%;
  background: rgba(249, 249, 249, 1);
}

.kajri__industry-box {
  position: relative;
  width: 100%;
  background: #fff;
}

.kajri__industry-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kajri__industry-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.kajri__industry-img:hover img {
  transform: scale(1.03);
  transition: all 0.4s ease-in-out;
}

.kajri__industry-cont {
  padding: 20px;
}

.kajri__industry-cont h4 {
  font-size: var(--fs-sm);
  color: rgba(51, 51, 51, 1);
  height: 58px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kajri__industry-cont p {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kajri__industry-cont ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kajri__industry-cont li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(51, 51, 51, 1);
}

.kajri__event {
  position: relative;
  padding: 8px 15px;
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-theme-red);
  margin: -40px 0 20px;
  border: 1px solid rgba(205, 205, 205, 1);
  display: block;
  width: fit-content;
  background: #fff;
}

.kajri__pvc-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.kajri__pvc-box-1 {
  grid-area: 1 / 1 / 3 / 3;
}

.kajri__pvc-box-2 {
  grid-area: 1 / 3 / 2 / 4;
}

.kajri__pvc-box-3 {
  grid-area: 1 / 4 / 2 / 5;
}

.kajri__pvc-box-4 {
  grid-area: 2 / 3 / 3 / 5;
}

.kajri__pvc-head {
  position: relative;
  margin: 0 auto 30px;
  width: 60%;
}

.kajri__pvc-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.kajri__pvc-box.kajri__pvc-box-2,
.kajri__pvc-box.kajri__pvc-box-3,
.kajri__pvc-box.kajri__pvc-box-4 {
  height: 330px;
}

.kajri__pvc-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kajri__pvc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.kajri__pvc-img:hover img {
  transform: scale(1.03);
  transition: all 0.4s ease-in-out;
}

.kajri__pvc-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    89.43deg,
    rgba(0, 0, 0, 0.8) 8.04%,
    rgba(0, 0, 0, 0) 76.84%
  );
  z-index: 1;
}

.kajri__pvc-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.kajri__pvc-cont span {
  width: fit-content;
  font-size: 18px;
  color: var(--clr-theme-red);
  padding: 8px 15px;
  background: #fff;
  margin-bottom: 15px;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
}

.kajri__pvc-cont h4 {
  font-size: var(--fs-lg);
  color: #fff;
  width: 70%;
  margin-top: auto;
}

.kajri__pvc-box-1 .kajri__pvc-cont h4 {
  margin-top: 60px;
}

.kajri__pvc-cont a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-theme-red);
  border: 1px solid var(--clr-theme-red);
  padding: 8px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: var(--transition);
}

.kajri__pvc-cont a:hover {
  background-color: var(--clr-theme-white);
  transition: var(--transition);
}

.kajri__pvc-cont a:hover img {
  transition: var(--transition);

  filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7028%)
    hue-rotate(348deg) brightness(113%) contrast(121%);
}

.kajri__contact-left {
  position: relative;
  width: 100%;
}

.kajri__contact-left h2 {
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding-bottom: 12px;
}

.kajri__contact-wrap {
  position: relative;
  border-top: 1px solid rgba(230, 230, 230, 1);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.kajri__contact-box {
  width: 48%;
}
.kajri__contact-box a + a {
  margin-top: 8px;
}
.kajri__contact-box h6 {
  font-size: var(--fs-sm);
  color: rgba(0, 0, 0, 1);
  margin-bottom: 120px;
}

.kajri__contact-box a {
  display: flex;
  color: rgba(116, 116, 116, 1);
  transition: var(--transition);
  padding-left: 25px;
  position: relative;
}

.kajri__contact-box p {
  display: flex;
  gap: 10px;
  color: rgba(116, 116, 116, 1);
}

.kajri__contact-box a:hover {
  color: var(--clr-theme-red);
  transition: var(--transition);
}

.kajri__contact-box span {
  display: inline-flex;
  position: absolute;
  top: 6px;
  left: 0;
}

.kajri__socail-contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.kajri__socail-contact li a {
  padding-left: 0;
}
.kajri__socail-contact li img {
  transition: all 0.4s ease-in-out;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.kajri__socail-contact li:hover img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(73%) saturate(5694%)
    hue-rotate(349deg) brightness(106%) contrast(115%);
  transition: all 0.4s ease-in-out;
}

.kajri__form .form-control,
.kajri__form .form-select {
  border: none;
  background: rgba(244, 244, 244, 1);
  padding: 15px;
  border-radius: 0;
  font-size: 18px;
  color: rgba(116, 116, 116, 1);
  outline: none;
  font-family: var(--ff-primary);
  font-weight: 300;
}

.form-select:focus,
.form-control:focus {
  box-shadow: unset;
}

.kajri__form .form-group {
  margin-bottom: 0;
}

.kajri__form textarea.form-control {
  height: 180px;
  resize: none;
}

.kajri__contact-right {
  padding: 25px;
  border: 1px solid rgba(231, 231, 231, 1);
}

.kajri__contact-right h3 {
  font-family: var(--ff-primary);
  margin-bottom: 12px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  font-size: 36px;
}

.kajri__brand-wrap {
  position: relative;
  border: 1px solid rgba(231, 231, 231, 1);
  display: flex;
  flex-wrap: wrap;
}

.kajri__brand-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(231, 231, 231, 1);
  width: 25%;
  height: 180px;
}

.kajri__brand-box img {
  height: 95px;
  object-fit: contain;
}

.kajri__brand-box:first-child {
  border: none;
}

.kajri__footer-main {
  position: relative;
  width: 100%;
  padding: 20px;
  background: rgba(0, 60, 87, 1);
  display: flex;
  flex-wrap: wrap;
}

.kajri__footer-left {
  width: 25%;
}

.kajri__footer-left h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.kajri__footer-logo {
  background: #fff;
  padding: 20px;
  width: fit-content;
  margin-bottom: 20px;
}

.kajri__footer-left ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.kajri__footer-left ul a {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.kajri__footer-left ul li:hover a {
  background: var(--clr-theme-red);
  transition: all 0.4s ease-in-out;
}

.kajri__footer-left ul img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(87%) saturate(6675%)
    hue-rotate(352deg) brightness(101%) contrast(105%);
}

.kajri__footer-left ul li:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(0%)
    hue-rotate(31deg) brightness(107%) contrast(107%);
  transition: all 0.4s ease-in-out;
}

.kajri__foot-box {
  position: relative;
  width: 18%;
  padding-top: 35px;
  padding-left: 35px;
}

.kajri__foot-box:last-child {
  width: 21%;
}

.kajri__foot-box h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.kajri__foot-box li {
  margin-bottom: 12px;
}

.kajri__foot-box li:last-child {
  margin-bottom: 0;
}

.kajri__foot-box li a {
  color: #fff;
}

.kajri__foot-box li a:hover {
  color: var(--clr-theme-red);
}

.kajri__foot-touch {
  position: relative;
}

.kajri__foot-touch li {
  position: relative;
  padding-left: 30px;
}

.kajri__foot-touch span {
  position: absolute;
  top: 0;
  left: 0;
}

.kajri__foot-touch a,
.kajri__foot-touch p {
  display: flex;
  gap: 10px;
}

.kajri__foot-touch a span,
.kajri__foot-touch p span {
  display: inline-block;
  margin-top: 6px;
  width: 24px;
}

.kajri__foot-touch span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
    hue-rotate(343deg) brightness(97%) contrast(104%);
}

.kajri__foot-touch p {
  color: #fff;
}

.kajri__foot-bottom {
  padding: 20px;
  background: rgba(1, 54, 78, 1);
  text-align: center;
  display: flex;
  justify-content: center;
}
.kajri__footbottom-list {
  display: flex;
  justify-content: center;
}
.kajri__footbottom-list li a,
.kajri__footbottom-list li {
  color: var(--clr-theme-white);
}
.kajri__foot-bottom p a:hover,
.kajri__footbottom-list li:hover a {
  color: var(--clr-theme-red);
}
.kajri__footbottom-list li {
  border-left: 1px solid var(--clr-theme-white);
  padding-left: 10px;
  margin-left: 10px;
  line-height: 1.7;
}
.kajri__foot-bottom p,
.kajri__foot-bottom p a {
  color: #fff;
}

.kajri__foot-bottom p a:hover {
  color: var(--clr-theme-red);
}

.round-text svg {
  width: 125px;
  height: 125px;
  left: 50%;
  top: 50%;
  -webkit-animation: rotate-spin 9s ease-out infinite;
  animation: rotate-spin 9s ease-out infinite;
  border-radius: 50%;
}

.spin {
  -webkit-animation: rotate-spin 5s ease-out infinite linear;
  animation: rotate-spin 5s ease-out infinite linear;
}

@keyframes rotate-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating-text {
  position: relative;
  width: 160px;
  height: 160px;
  background: var(--clr-theme-white-500);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}

.rotating-text-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kajri__button.kajri__floating-button {
  position: fixed;
  right: -115px;
  z-index: 3;
  rotate: -90deg;
  bottom: 30%;
}

/* modal===================== */
.kajri__modal .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.kejri__btn-close {
  position: relative;
  background-color: transparent !important;
  border: none;
  width: 35px;
  height: 35px;
}

.kejri__btn-close::before {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;

  z-index: 9;
  content: "\f00d";
  font-family: "FontAwesome";
  width: 35px;
  height: 35px;
  font-size: 20px;
  background: #ff1c1c;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.kajri__img.kajri__modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kajri__img.kajri__modal-img {
  width: 100%;
  height: 100%;
}
.kajri__modal .form-button {
  position: relative;
  width: fit-content;
}
.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 0;
}
.wpcf7-not-valid-tip {
  font-size: 14px;
}

/* privacy-policy ========================*/

.kejri__generic > :not(:last-child) {
  margin-bottom: 16px;
}

.content_box_404 .kajri__button {
  margin: 0 auto;
}
.four_zero_four_bg img {
  height: 350px;
  margin: 0 auto;
  object-fit: contain;
}
