@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Raleway", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* font-family: "DM Sans", sans-serif; */

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

html,
body {
  overflow-x: hidden;
}

:root {
  --scroll-behavior: smooth;
  --default-font: "Raleway", sans-serif;
  --default-number-font: "DM Sans", sans-serif;
  --bg-body-color: #272727;
  --bg-white: #ffffff;
  --bg-black: #000000;
  --bg-green: #77ca24;
}

html {
  scroll-behavior: var(--scroll-behavior);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 12px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--default-font);
  height: auto;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--bg-white);
  background: var(--bg-body-color);
}

img {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0 0 25px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--default-font);
  margin: 0 0 20px 0;
  color: var(--bg-text-color);
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--bg-white);
  font-weight: 500;
  line-height: 1.22;
}

h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.26;
  margin: 0 0 17px 0;
}

h2 span {
  color: var(--bg-green);
}

h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.36;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

select,
input[type="email"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  height: 50px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 18px;
  color: var(--bg-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0;
}

select {
  color: rgba(255, 255, 255, 0.3);
}

select option {
  color: var(--bg-black);
}

select:has(option:checked:not([value=""])) {
  color: #fff;
}

::placeholder {
  opacity: 1;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  height: 50px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
  resize: none;
  height: 100px;
}

a {
  margin: 0;
  padding: 0;
  font-family: var(--default-body-font);
  color: var(--bg-text-color);
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--bg-orange);
}

.cmn-btn {
  display: inline-flex;
  padding: 13px 34px;
  padding-right: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: var(--bg-green);
  border-radius: 50px;
  font-size: 16px;
  border: none;
  outline: none;
  font-weight: 600;
  color: var(--bg-black);
  transition: all 0.3s ease-in-out;
}

.cmn-btn::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 30px;
  transform: rotate(-45deg) translate(0%, -50%);
  background-image: url(./../images/btn-arrow-blk.svg);
  width: 11px;
  height: 11px;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.cmn-btn:hover {
  background-color: var(--bg-white);
  color: var(--bg-black);
}

.cmn-btn:hover::after {
  top: 50%;
  right: 35px;
  transform: rotate(0deg) translate(0%, -50%);
}

.cmn-btn-white {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cmn-btn-white::after {
  background-image: url(./../images/btn-arrow-wth.svg);
}

.cmn-btn-white:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
}

.cmn-btn-white:hover::after {
  background-image: url(./../images/btn-arrow-blk.svg);
}

.cmn-btn + .cmn-btn {
  margin-left: 22px;
}

.cmn-hd {
  margin-bottom: 50px;
}

.cmn-hd:last-child {
  margin-bottom: 0px;
}

.cmn-gap {
  padding: 80px 0;
}

.container {
  max-width: 1344px;
}

/* banner */

.banner {
  position: relative;
  border-radius: 20px;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 37px;
  z-index: 1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  pointer-events: none;
  user-select: none;
  z-index: -2;
}

.banner-cont {
  max-width: 949px;
}

.banner-cont-btns {
  margin-top: 40px;
}

.banner-scroll {
  position: absolute;
  bottom: 37px;
  right: 43px;
  padding-right: 17px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  color: var(--bg-white);
  font-weight: 600;
}

.banner-scroll::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  background-image: url(./../images/btn-arrow-wth-btm.svg);
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  background-size: cover;
  transform: translateY(100);
}

.banner-scroll:hover {
  color: var(--bg-green);
}

.banner-scroll:hover::after {
  background-image: url(./../images/btn-arrow-grn-btm.svg);
}

/* banner end */

/* counter section */

.counter-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.counter-item {
  display: flex;
  padding: 10px 5px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  gap: 17px;
}

.counter-number {
  font-family: var(--default-number-font);
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 4px;
}

.counter-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.counter-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.counter-text {
  font-size: 14px;
  line-height: 1.43;
  color: var(--bg-white);
}

.counter-row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.counter-text {
  font-size: 20px;
}

.col-lg-3:last-child .counter-item {
  border: none;
}

.cmn-mg-all {
  margin-left: -12px;
  margin-right: -12px;
}

/* counter section end */

/* about section */

.about-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  z-index: -1;
}

.about-cont-wrap {
  position: relative;
  background-color: #0000007a;
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.about-cont {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
}

/* about section end */

/* logo Slider */
.logo-slider-section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.logo-slider-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(39, 39, 39, 1) 0%,
    rgba(39, 39, 39, 0) 100%
  );
  z-index: 1;
}

.logo-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    262deg,
    rgba(39, 39, 39, 1) 0%,
    rgba(39, 39, 39, 0) 100%
  );
  z-index: 1;
}

.js-logo-slider {
  width: 100%;
}

.logo-slider-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 5px 50px;
}

.logo-slider-img img {
  height: 100%;
  object-fit: contain;
}

/* logo Slider end */

/* Our vertical */
.verticals-section {
  position: relative;
  overflow: hidden;
}

/* Slider */

.verticals-section {
  padding: 96px 0;
  background-color: #353535;
}
.our-verticals-slider {
  margin-left: calc((100% - 1344px) / 2);
  padding-left: 12px;
  display: flex;
  margin-top: 50px;
  gap: 2vw;
}

/* Slides */
.our-verticals-item {
  flex: 0 0 60vw;
}

/* Bottom controls */

.our-verticals-bottom {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

/* Progress bar */
.our-verticals-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.our-verticals-progress span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--bg-white);
}

/* Counter */
.our-verticals-counter {
  font-size: 16px;
  white-space: nowrap;
}

/* Arrows */
.our-verticals-arrow-wrap button {
  padding: 6px 12px;
  cursor: pointer;
}

.our-verticals-col {
  display: flex;
  gap: 14px;
}

.our-verticals-col-img {
  width: 66%;
  border-radius: 16px;
  overflow: hidden;
}

.our-verticals-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-verticals-col-info {
  width: 34%;
  background-color: #c0ffb1;
  padding: 39px 18px 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-verticals-item:nth-child(even) .our-verticals-col-info {
  background-color: #20b245;
}

.our-verticals-col-info-top h3 {
  color: var(--bg-black);
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.our-verticals-col-info-top p {
  color: var(--bg-black);
  opacity: 0.8;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}

.our-verticals-item:nth-child(even) .our-verticals-col-info-top p,
.our-verticals-item:nth-child(even) .our-verticals-col-info-top h3 {
  color: var(--bg-white);
}

.our-verticals-item:nth-child(even) .our-verticals-col-info-bottom a.cmn-btn {
  background-color: var(--bg-white);
  color: #008421;
}

.our-verticals-item:nth-child(even)
  .our-verticals-col-info-bottom
  a.cmn-btn::after {
  background-image: url(./../images/btn-arrow-grn.svg);
}

.our-verticals-item .our-verticals-col-info-bottom a.cmn-btn:hover {
  background-color: var(--bg-black);
  color: var(--bg-white);
}

.our-verticals-item .our-verticals-col-info-bottom a.cmn-btn:hover::after {
  background-image: url(./../images/btn-arrow-wth.svg);
}

.blog-prev,
.blog-next,
.cmn-arrow-left,
.cmn-arrow-right,
.our-verticals-arrow-wrap button {
  width: 54px;
  height: 54px;
  background-color: var(--bg-white);
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  border-radius: 100%;
}

.blog-prev:hover,
.blog-next:hover,
.cmn-arrow-left:hover,
.cmn-arrow-right:hover,
.our-verticals-arrow-wrap button:hover {
  opacity: 0.6;
}

.our-verticals-counter span {
  font-family: var(--default-number-font);
  font-weight: 400;
}

.our-verticals-arrow-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* Our vertical end */

/* our-work-action */

.our-work-card-wrap {
  display: flex;
  gap: 20px;
}

.our-work-card-wrap + .our-work-card-wrap {
  margin-top: 24px;
}

.our-work-card {
  flex: 1;
  position: relative;
  padding-top: 27%; /* 3:2 Aspect Ratio */
  transition: all 0.5s ease-in-out;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
}

.our-work-card:hover {
  flex: 2;
}

.our-work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: -1;
}

.our-work-card .image-overlay {
  z-index: -2;
  pointer-events: none;
  user-select: none;
}

.our-work-category {
  position: absolute;
  top: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding: 5px 16px;
  margin-bottom: 15px;
  border-radius: 18px;
  z-index: 1;
}

.our-work-card-info {
  position: absolute;
  bottom: -100%;
  left: 20px;
  right: 20px;
  padding: 24px;
  text-align: left;
  background-color: #c0ffb1;
  opacity: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  border-radius: 12px;
  z-index: 1;
}

.our-work-card-info::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 18px;
  right: 24px;
  background-image: url(./../images/right-arrow-wht-cl.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--bg-black);
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}

.our-work-card-info .our-work-category {
  position: relative;
  top: unset;
  left: unset;
  border-color: rgba(0, 0, 0, 0.4);
  color: var(--bg-black);
}

.our-work-card-info h3 {
  font-weight: 600;
  font-size: 25px;
  color: var(--bg-black);
  margin-bottom: 5px;
}

.our-work-card-info p {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

.our-work-card:hover .our-work-card-info {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.our-work-action {
  text-align: center;
  margin-top: 50px;
}

.our-work-card:hover .our-work-category {
  opacity: 0;
}

.our-work-card:hover .our-work-card-info .our-work-category {
  opacity: 1;
}

/* our-work-action end */

/* what-we-best */

.what-we-best {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #191c1a;
  z-index: 1;
}

.what-we-best-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 1220px;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.cmn-btn.cmn-btn-wth {
  background-color: var(--bg-white);
  color: #008421;
}

.cmn-btn.cmn-btn-wth::after {
  background-image: url(./../images/btn-arrow-grn.svg);
}

.cmn-btn.cmn-btn-wth:hover {
  background-color: var(--bg-green);
  color: var(--bg-black);
}

.cmn-btn.cmn-btn-wth:hover::after {
  background-image: url(./../images/btn-arrow-blk.svg);
}

.what-we-best-col {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  min-height: 170px;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all 0.3s ease-in-out;
  transition:
    background 0.4s ease,
    opacity 0.4s ease;
}

.what-we-best-col-img {
  background-color: var(--bg-white);
  border-radius: 100%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.what-we-best-col-cont h3 {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 30px;
}

.what-we-best-col-cont p {
  font-size: 16px;
}

.right-what-we-best {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.left-what-we-best {
  position: relative; /* NOT sticky */
}

.what-we-best-col.active {
  background: rgba(255, 255, 255, 0.24);
}

.what-we-best-rv {
  position: relative;
}

.left-what-we-best.is-absolute {
  position: absolute;
  bottom: 0;
  top: auto;
}

/* what-we-best end */

/* left-img-right-txt */

.left-img-right-txt {
  background-color: #353535;
}

.right-img-left-txt .cmn-row,
.left-img-right-txt .cmn-row {
  align-items: center;
  --bs-gutter-x: 42px;
}

.right-img-cont,
.left-img-right-txt-img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.left-img-right-txt-img {
  padding-top: 95%;
  z-index: 1;
}

.right-txt-cont h2,
.left-img-right-txt-cont h2 {
  margin-bottom: 18px;
}

.right-txt-cont p,
.left-img-right-txt-cont p {
  color: rgba(255, 255, 255, 0.8);
}

.right-txt-cont ul,
.left-img-right-txt-cont ul {
  margin-bottom: 60px;
}

.left-img-right-txt-cont ul:last-child {
  margin-bottom: 0;
}

.right-txt-cont ul li,
.left-img-right-txt-cont ul li {
  background-image: url(./../images/check-icon-green.svg);
  background-size: 30px;
  font-weight: 600;
  font-size: 20px;
  color: var(--bg-white);
  background-repeat: no-repeat;
  padding-left: 48px;
  margin-bottom: 20px;
}

.right-txt-cont ul li:last-child,
.left-img-right-txt-cont ul li:last-child {
  margin-bottom: 0;
}
/* left-img-right-txt end */

/* our-products-section */

.our-products-section {
  background-color: #353535;
}

.our-products-section .cmn-hd {
  max-width: 810px;
  margin: 0 auto 60px;
}

.our-products-section .cmn-hd p {
  opacity: 0.75;
}

.our-prd-col-top {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.our-prd-col-img {
  position: relative;
  padding: 108% 0 0;
  z-index: 1;
}

.our-prd-col-img .image-overlay {
  z-index: -2;
  transition: all 1s ease-in-out;
}

.our-prd-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  will-change: transform;
}

.our-prd-col-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 23px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.our-prd-col-cont h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-prd-col-cont p {
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-prd-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 40px;
}

.our-prd-col:hover .image-overlay {
  transform: scale(1.1);
}

.our-prd-col:hover .our-prd-col-cont {
  opacity: 0;
}

.our-prd-col:hover .cmn-btn {
  background-color: var(--bg-white);
  color: var(--bg-black);
}

.our-prd-col:hover .cmn-btn::after {
  background-image: url(./../images/btn-arrow-blk.svg);
  top: 50%;
  right: 35px;
  transform: rotate(0deg) translate(0%, -50%);
}

/* our-products-section end */

/* wh-or-clnt-say */
.wh-or-clnt-say-cont-img {
  display: flex;
  align-items: center;
  gap: 17px;
}
.wh-or-clnt-say-imgs {
  display: inline-flex;
  align-items: center;
}

.wh-or-clnt-say-imgs img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #fff;
  margin-left: -20px;

  opacity: 0;
  transform: translateX(-30px);
}

/* first image */
.wh-or-clnt-say-imgs img:first-child {
  margin-left: 0;
}

.wh-or-clnt-say-cont span {
  font-family: var(--default-number-font);
  font-size: 35px;
  color: var(--bg-white);
  margin-right: 4px;
  display: inline-block;
}

.wh-or-clnt-say-cont {
  font-weight: 500;
  font-size: 20px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.7);
}

.wh-or-clnt-say-cont-img {
  margin-bottom: 16px;
}

.wh-or-clnt-say h2 {
  margin-bottom: 50px;
}

.wh-or-clnt-say-slide-inner {
  position: relative;
  padding-left: 96px;
}

.wh-or-clnt-say-slide-top p {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.53;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(40px);
  opacity: 0;
}

.quotation-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  max-width: 70px;
  transition: all 0.5s ease-in-out;
  transform: scale(0);
}

.wh-or-clnt-say-slide.slick-current .quotation-icon {
  transform: scale(1);
  opacity: 1;
}

.wh-or-clnt-say-slide.slick-current .wh-or-clnt-say-slide-top p {
  transform: translateY(0);
  opacity: 1;
}

.wh-or-clnt-say-slide.slick-current .clients-wrap {
  transform: translateY(0);
  opacity: 1;
}

.clients-wrap {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  gap: 22px;
  margin-top: 120px;
}

.clients-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top {
  margin-bottom: 30px;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span {
  font-family: var(--default-number-font);
}

.clients-cont h3 {
  font-size: 26px;
  margin-bottom: 4px;
}

.clients-cont span {
  font-family: var(--default-number-font);
  font-size: 16px;
  opacity: 0.7;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span {
  font-size: 35px;
}

.wh-or-clnt-say-slide-inner .wh-or-clnt-say-slide-top span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/check-icon-green.svg);
}
/* ------------------- */

.wh-or-clnt-say-rgt {
  position: relative;
  margin-top: 105px;
  padding-left: 30px;
}

.wh-or-clnt-say-progress {
  width: calc(100% - 30px);
  height: 4px;
  left: 30px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  bottom: 106px;
}

.wh-progress-bar {
  height: 100%;
  width: 0;
  background: var(--bg-white);
  transition: width 0.3s ease;
}

.wh-or-clnt-say-arrows {
  position: absolute;
  bottom: 0;
  right: 0;
}

.wh-or-clnt-say-arrows button + button {
  margin-left: 20px;
}
/* wh-or-clnt-say end */

/* contact form */
.cont-col-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  padding: 36px 23px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 1;
}

.cont-col-form {
  background-color: #353535;
  border-radius: 20px;
  padding: 26px 50px;
}

.cont-col-form h3 {
  margin-bottom: 25px;
  font-weight: 500;
}

.form-col {
  margin-bottom: 20px;
}

.form-col:last-child {
  margin-bottom: 0px;
}

.form-col p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 18px;
  font-size: 16px;
}

.cont-col-img h2 {
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 5px;
}

.cont-col-img p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
/* contact form end */
/* blog-section */

.blog-section {
  background-color: #191d1a;
  border-radius: 20px;
}

.blog-slider-wrap {
  position: relative;
}

.blog-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 2px;
  bottom: 106px;
}

.blog-progress-bar {
  display: block;
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: var(--bg-white);
}

.blog-slide {
  padding: 0 10px;
}

.blog-slide-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding-top: 67%;
  z-index: 1;
}

.blog-slide-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.blog-slide-img .image-overlay {
  z-index: -2;
  transition: all 0.8s ease-in-out;
}

.blog-categories {
  position: absolute;
  top: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding: 5px 16px;
  margin-bottom: 15px;
  border-radius: 18px;
  z-index: 1;
}

.blog-slide-inner {
  display: flex;
  flex-direction: column;
  padding: 21px 19px;
  background: linear-gradient(
    180deg,
    rgba(119, 202, 36, 0.2) 0%,
    rgba(119, 202, 36, 0.2) 100%
  );
  border: 1px solid var(--bg-green);
  border-radius: 16px;
}

.js-blog-slider .slick-list {
  margin: 0 -10px;
}

.blog-slide-cont {
  padding-top: 20px;
}

.blog-slide-cont h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blog-slide-cont p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cmn-btn-txt {
  background: transparent;
  padding: 0 18px 0 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--bg-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.cmn-btn-txt::after {
  right: 0;
  background-image: url(./../images/btn-arrow-wth.svg);
}

.blog-slide-inner:hover .cmn-btn-txt,
.cmn-btn-txt:hover {
  background-color: transparent;
  color: var(--bg-green);
  border-color: var(--bg-green);
}

.blog-slide-inner:hover .cmn-btn-txt::after,
.cmn-btn-txt:hover::after {
  right: 0;
  background-image: url(./../images/rgt-arrow-light-gr.svg);
  background-size: 12px;
}

.blog-slide-inner:hover .blog-slide-cont h3 {
  color: var(--bg-green);
}

.blog-slide-inner:hover .image-overlay {
  transform: scale(1.1);
}

.blog-slider-wrap {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 50px;
}

.blog-arrows {
  display: inline-flex;
  gap: 20px;
  flex-shrink: 0;
}
/* blog-section end */

/* accordion */

.faq-section .accordion-item {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0px;
}

.faq-section .accordion-button {
  background-color: transparent;
  color: var(--bg-white);
  font-weight: 500;
  font-size: 22px;
  padding: 27px 0;
  padding-right: 60px;
  transition: all 0.3s ease-in-out;
  outline: none;
  position: relative;
  box-shadow: none;
}

.faq-section .accordion-body {
  padding: 0 0 24px;
  color: var(--bg-white);
}

.faq-section .accordion-body p {
  color: rgba(255, 255, 255, 0.8);
}

.faq-section .accordion-button::after {
  content: "\2b";
  position: absolute;
  font-family: "fontawesome";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  color: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  font-size: 17px;
  border-radius: 100%;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-color: var(--bg-green);
  content: "\f068";
}

.faq-section
  .accordion-item:first-of-type
  > .accordion-header
  .accordion-button {
  margin-top: -27px;
}

.acco-seo-div {
  margin-top: 80px;
}

.seo-key-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.acco-btn {
  width: 100%;
  background-color: transparent;
  color: var(--bg-white);
  font-weight: 500;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 27px 0;
  border: none;
  transition: all 0.3s ease-in-out;
  outline: none;
  position: relative;
  box-shadow: none;
  text-align: left;
}

.acco-btn img {
  width: 50px;
}

.acco-body-cont {
  display: none;
  padding-bottom: 43px;
}

.acco-body-cont h4 {
  font-size: 20px;
}

.acco-body-cont p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.acco-body-cont span {
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.acco-body-cont ul {
  margin-bottom: 20px;
}

.acco-body-cont ul li {
  margin-bottom: 5px;
  font-size: 14px;
}

.acco-body-cont ul li:last-child {
  margin-bottom: 0px;
}

.acco-body-cont ul:last-child {
  margin-bottom: 0;
}

/* accordion end */

/* footer */

.page-footer {
  position: relative;
  background-color: #001a07;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.page-footer ul li a {
  font-family: var(--default-number-font);
}

.page-footer .image-overlay {
  opacity: 0.2;
}

.footer-logo-link {
  display: inline-block;
  max-width: 130px;
  margin-bottom: 30px;
}

.ftr-top-lft ul {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ftr-top-lft ul li a {
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  color: var(--bg-white);
}

.ftr-top-lft ul li a:hover {
  opacity: 0.7;
}

.ftr-inp-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 80px;
  padding: 4px 21px;
}

.ftr-inp-wrap .cmn-btn {
  font-size: 14px;
  padding: 10px 34px;
  padding-right: 52px;
  position: absolute;
  top: 8.5px;
  right: 8px;
}

.ftr-inp-wrap input {
  border: none;
  padding-right: 150px;
}

.ftr-top-rgt label {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 26px;
}

.ftr-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ftr-btm {
  padding: 40px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ftr-hd {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 17px;
}

.ftr-btm ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
}

.ftr-btm ul li:last-child {
  margin-bottom: 0;
}

.ftr-btm ul li a:hover {
  color: var(--bg-green);
}

.ftr-col-adds ul li {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.ftr-col-adds ul li i {
  margin-top: 7px;
}

.ftr-cpt-col ul {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.ftr-cpt-col ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.ftr-cpt-col p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.ftr-cpt-col a:hover,
.ftr-cpt-col ul li a:hover {
  color: var(--bg-green);
}

.ftr-copy-rgt {
  padding: 33px 0;
}

.header {
  transition: transform 0.9s ease;
}

.header.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
}

.header.header-hide {
  transform: translateY(-100%);
}

.mobile-hdr-logo {
  display: none;
}

.hrd-top {
  width: 100%;
  display: none;
}

.ftr-inp-wrap-bottom {
  display: none;
}

/* footer end */

[data-animate="bt"] {
  opacity: 0;
  transform: translateY(60px);
}

/* inner-banner */
.inner-banner {
  min-height: 60vh;
  padding: 100px 0 70px;
  background-color: var(--bg-black);
  z-index: 1;
  margin-top: 96px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.inner-banner::after {
  display: none;
}

.inner-banner .banner-cont {
  max-width: 800px;
}

.inner-banner .banner-cont h1 {
  color: #fff;
}

.inner-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    0deg,
    rgba(39, 39, 39, 1) 0%,
    rgba(39, 39, 39, 0) 100%
  );
  opacity: 0.8;
  z-index: -1;
}

/* .inner-banner .image-overlay {
  object-position: top;
} */

.inner-abt-sec {
  background-color: transparent;
}

.inner-abt-sec .left-img-right-txt-cont ul {
  margin-bottom: 30px;
}

.sub-hd-all {
  display: inline-flex;
  margin-bottom: 15px;
  gap: 20px;
}

.sub-hd-all span {
  color: #bbee43;
}

.abt-two-lft-imgs {
  padding-right: 20px;
}

.abt-two-col-img {
  padding-top: 118%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.abt-two-col-img-two {
  padding: 0;
  height: 100%;
}

.abt-two-col {
  background-color: #dadada;
  padding: 12px;
  border-radius: 10px;
  margin-top: 20px;
}

.abt-two-col p {
  font-size: 16px;
  color: var(--bg-black);
}

.inner-abt-sec .cmn-row {
  align-items: center;
}

.our-structure-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-body-color);
  border-radius: 40px;
  padding: 30px;
  margin-bottom: 40px;
  z-index: 1;
}

.our-structure-wrap:last-child {
  margin-bottom: 0;
}

.service-number {
  border-radius: 6.25rem;
  padding: 5px 17px;
  border: 1px solid #bbee43;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--default-number-font);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.our-structure-lft h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.our-structure-lft h4 {
  font-size: 35px;
  margin-bottom: 30px;
}

.our-structure-lft ul {
  margin-bottom: 30px;
}

.our-structure-lft ul li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.our-structure-lft ul li:last-child {
  margin-bottom: 0;
}

.our-structure-lft ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(./../images/left-icon-wh.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.our-structure-rgt {
  height: 500px;
  overflow: hidden;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
}

.our-structure-rgt img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.our-structure-wrap:hover .our-structure-rgt {
  border-radius: 40%;
}

.our-structure-wrap:hover .our-structure-rgt img {
  transform: scale(1.2);
}

.our-structure-row {
  align-items: center;
  --bs-gutter-x: 50px;
}

.our-structure-wrap:nth-child(even) .our-structure-row {
  flex-direction: row-reverse;
}

.our-expertise-col {
  border-top: 1px solid #ffffff40;
  border-bottom: 1px solid #ffffff40;
  position: relative;
  padding: 40px 200px;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.our-expertise-col::before {
  content: " / ";
  position: absolute;
  left: 140px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1;
  font-family: var(--default-number-font);
}

.expertise-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 80px;
}

.our-expertise-col h3 {
  font-size: 30px;
  margin-bottom: 0;
}

.our-expertise-flex {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.expertise-image {
  position: absolute;
  right: -30px;
  top: 0px;
  transform: scale(0) rotate(10deg);
  z-index: 1;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  user-select: none;
  max-width: 450px;
}

.our-expertise-col:hover .expertise-image {
  transform: scale(1) rotate(10deg);
  top: -35px;
}

.our-structure-sec {
  background-image: linear-gradient(
    to right bottom,
    #313e3b,
    #2e3b38,
    #2c3835,
    #293532,
    #27322f
  );
  position: relative;
  z-index: 1;
}

/* end-to-end */

.our-expertise-sec {
  position: relative;
  z-index: 1;
}

.our-expertise-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url(./../images/demo-elearning-border.jpg);
  background-position: center top;
  opacity: 0.7;
  z-index: -1;
}

.end-to-end-col h2 {
  margin-bottom: 40px;
}

.end-to-end-sec {
  position: relative;
}

.end-to-end-ov {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 410px;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.border-line-sec {
  position: relative;
}

.border-line-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-image: url(./../images/vertical-line-bg-small.svg);
}

.demo-elearning-bg {
  position: absolute;
  top: 4%;
  left: 0;
  max-width: 405px;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.end-to-end-col-rgt {
  padding-left: 30px;
}

.end-to-end-col-rgt-inner span {
  line-height: 1;
  font-size: 90px;
  font-weight: 700;
  font-family: var(--default-number-font);
  opacity: 0.1;
}

.end-to-end-col-rgt-inner p {
  font-family: var(--default-number-font);
  font-size: 22px;
  font-weight: 600;
  color: #bbee43;
  opacity: 0.8;
  margin: -30px 0 0;
  padding-left: 30px;
}

.end-to-end-col-rgt .row {
  --bs-gutter-y: 0px;
}

.end-to-end-col-rgt-inner {
  width: 50%;
  border-bottom: 1px solid #ffffff40;
  border-right: 1px solid #ffffff40;
  padding: 20px 0;
  padding-top: 0;
}

.end-to-end-col-rgt .col-lg-12:nth-child(even) .end-to-end-col-rgt-inner {
  margin-left: auto;
  border-left: 1px solid #ffffff40;
  border-right: none;
  padding: 20px;
  padding-top: 0;
}

/* ----- */

.product-innovation-sec {
  position: relative;
  z-index: 1;
}

.product-innovation-sec .image-overlay {
  opacity: 0.7;
}

.product-innovation-wrap {
  margin-bottom: 45px;
}

.why-choose-sec .cmn-row {
  align-items: center;
  --bs-gutter-x: 50px;
}

.contact-map {
  position: relative;
  background-color: var(--bg-black);
}

.contact-map {
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-black);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.7;
}

.contact-info {
  background-color: var(--bg-white);
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 500px;
  color: var(--bg-body-color);
  padding: 45px;
  padding-right: 150px;
  border-radius: 20px 0 0 0;
  z-index: 1;
}

.contact-info h4 {
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  font-family: var(--default-number-font);
}

.contact-info ul {
  margin-bottom: 30px;
}

.contact-info ul li {
  margin-bottom: 7px;
}

.contact-info ul li a {
  font-family: var(--default-number-font);
  border-bottom: 2px solid var(--bg-body-color);
}

.contact-info ul li a:hover {
  color: var(--bg-green);
  border-color: var(--bg-green);
}

.contact-info-ov {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 202px;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.contact-info .cmn-btn:hover {
  background-color: #bbee43;
}

.contact-form-cont {
  max-width: 950px;
  margin: 60px auto 0;
}
/* input file */
.upload-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #474747;
  padding: 5px;
  border-radius: 5px;
  margin-top: 6px;
}

.upload-btns {
  background-color: #77ca24;
  border: none;
  outline: none;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  flex-shrink: 0;
  color: var(--bg-body-color);
}

.preview-box {
  position: relative;
  display: flex;
  gap: 7px;
}

.preview-box img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.file-info {
  font-size: 12px;
  font-family: var(--default-number-font);
}

.delete-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #bb3d3d;
  color: var(--bg-white);
  border: none;
  font-size: 10px;
  width: 17px;
  height: 17px;
  line-height: 1;
  padding: 0px;
  cursor: pointer;
  border-radius: 50%;
}

.upload-btns i {
  margin-right: 3px;
}

.preview-area {
  width: 100%;
}

.text-right {
  text-align: right;
}

.contact-form-cont .form-col p {
  margin-top: 0;
}

/* contact-form */

.contact-form-cont .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.contact-form-cont label {
  font-family: var(--default-number-font);
  text-transform: uppercase;
  font-size: 15px;
}

.contact-form-cont label sup {
  font-size: 20px;
  top: 6px;
  color: #f56262;
}

.admission-banner {
  padding-top: 0;
}

.admission-banner__content {
  background: #82d42f;
  padding: 45px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.admission-banner__hd h2 {
  color: var(--bg-body-color);
  font-size: 24px;
  font-weight: 600;
}

.cmn-btn-bk {
  background-color: var(--bg-body-color);
  padding: 13px 34px;
  display: inline-flex;
  border-radius: 40px;
}

.cmn-btn-bk:hover {
  background-color: var(--bg-white);
  color: var(--bg-black);
}

.cmn-btn-txt-wh {
  display: inline-flex;
  padding: 7px 0;
  align-items: center;
  line-height: 1;
  color: var(--bg-body-color);
  font-family: var(--default-number-font);
  border-bottom: 2px solid transparent;
  font-weight: 600;
  gap: 14px;
  margin-left: 20px;
}

.cmn-btn-txt-wh:hover {
  border-color: var(--bg-black);
  color: var(--bg-black);
}

.admission-banner__content .row {
  align-items: center;
}

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

/* contact-form end */

/* service sec */

.srv-wrap .row {
  --bs-gutter-x: 25px;
  --bs-gutter-y: 25px;
}

.svr-top-cont ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svr-top-cont ul li {
  border: 1px solid #ffffff42;
  border-radius: 6.25rem;
  padding: 7px 18px;
  font-weight: 500;
  display: inline-flex;
  gap: 11px;
  font-size: 16px;
}

.svr-top-cont ul li i {
  font-size: 16px;
}

.svr-top-cont h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.svr-top-cont p {
  font-size: 16px;
  opacity: 0.8;
}

.service-sec .our-structure-wrap {
  padding: 10px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.svr-image {
  position: relative;
  padding-top: 80%;
  border-radius: 30px;
  overflow: hidden;
}

.svr-top-cont {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 24px;
  text-align: left;
  background-color: #484948bd;
  transition: all 0.7s ease-in-out;
  border-radius: 20px;
  z-index: 1;
  backdrop-filter: blur(3px);
}

.arrow-top {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 40px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  height: 40px;
  border: 1px dashed var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 0 0 0 10px var(--bg-body-color);
  background-color: var(--bg-body-color);
  transform: rotate(-45deg);
}

.our-structure-wrap:hover .arrow-top {
  transform: rotate(0deg);
  background-color: var(--bg-green);
  color: var(--bg-body-color);
  border-color: var(--bg-black);
  box-shadow: 0 0 0 10px var(--bg-green);
}

.svr-image .image-overlay {
  transition: all 0.7s ease-in-out;
}

.our-structure-wrap:hover .svr-image .image-overlay {
  transform: scale(1.1);
  opacity: 1;
}

.we-serve {
  padding-right: 20px;
}

.we-serve-row {
  align-items: flex-end;
}

.we-serve-wrap {
  margin-top: 70px;
  position: relative;
}

.we-serve-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 56, 53, 1) 0%,
    rgba(40, 51, 48, 1) 100%
  );
}

.we-serve-wrap .row {
  --bs-gutter-x: 0px;
  --bs-gutter-y: 0px;
}

.we-serve-item {
  position: relative;
  padding: 80px 50px;
  height: 100%;
  border-right: 1px solid #ffffff42;
  border-bottom: 1px solid #ffffff42;
  text-align: center;
}

.we-serve-wrap .row .col-md-6:nth-child(3n) .we-serve-item {
  border-right: none;
}

.we-serve-item-img {
  max-width: 80px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.we-serve-item-img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--bg-white);
  opacity: 0.2;
  z-index: -1;
}

.we-serve-item-cont h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.we-serve-item-cont p {
  font-size: 16px;
}

.we-serve-item-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ffffff42;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  z-index: 2;
}

.hover-we-serve-item-cont {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 44px;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  gap: 5px;
  padding: 0 50px;
  opacity: 0;
  background-color: #262928;
  z-index: 1;
  transition: all 0.6s ease-in-out;
}

.hover-we-serve-item-cont.active {
  opacity: 1;
}

.hover-we-serve-item-cont h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 10px;
}

.hover-we-serve-item-cont p {
  margin-bottom: 10px;
}

.hover-we-serve-item-cont ul {
  margin-bottom: 10px;
}

.hover-we-serve-item-cont ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.hover-we-serve-item-cont ul li:last-child {
  margin-bottom: 0;
}

.hover-we-serve-item-cont ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--bg-white);
}

/* service sec end */

/* project */

.project__filter .project__select {
  border: none;
  background-color: #504f4f;
  padding: 0 13px;
  border: none;
  font-size: 16px;
  border-radius: 3px;
  color: var(--bg-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  background-image: url(./../images/select-down.png);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: right 14px center;
}

.project__filter .project__select option {
  color: #fff;
  background-color: #5a5a5a;
}

.project-card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.project-card.show {
  display: block;
}

.project-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.project__item {
  margin-top: 40px;
}

.project-card-link-img {
  position: relative;
  padding-top: 60%;
  z-index: 1;
}

.project-card-link-top {
  background-color: var(--bg-white);
  padding: 15px 20px;
}

.project-card-link-top h3 {
  font-size: 17px;
  color: var(--bg-body-color);
}

.project-card-link-cont {
  background-color: var(--bg-white);
  padding: 25px;
  color: var(--bg-body-color);
}

.project-card-link-cont ul {
  display: flex;
  gap: 25px;
  margin-bottom: 10px;
}

.project-card-link-cont ul li {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-body-color);
  opacity: 0.8;
}

.project-card-link-cont ul li span {
  margin-right: 5px;
}

.project-card-link-cont h4 {
  font-weight: 700;
  margin-bottom: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cmn-btn-txt-br {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 2px solid var(--bg-black);
}

.project-card-link {
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
}

.project__item .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.project__pagination-list {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.project__pagination-list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  font-family: var(--default-number-font);
  cursor: pointer;
}

.project__pagination-list li button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
}

.project__pagination-list li.page-number {
  cursor: pointer;
  font-size: 20px;
  color: var(--bg-white);
  opacity: 0.5;
}

.project__pagination-list li.page-number.active {
  opacity: 1;
}

.inner-counter-section .counter-text {
  font-size: 16px;
}

.banner-cont > span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  background: #0000005e;
  padding: 6px 16px;
  border: 1px solid #919191;
  backdrop-filter: blur(7px);
  border-radius: 3px;
}

.banner-cont ul {
  display: flex;
  gap: 25px;
}

.banner-cont ul li {
  font-family: var(--default-number-font);
  font-size: 16px;
}

.banner-cont ul li i {
  margin-right: 5px;
}

.banner-dtl {
  min-height: 70vh;
}

.project-dtl {
  max-width: 900px;
  margin: 0 auto;
}

.project-dtl h3,
.project-dtl h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 13px;
}

.project-dtl h3::before,
.project-dtl h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30%;
  height: 3px;
  background-color: var(--bg-white);
}

blockquote {
  background-color: #ffffff2a;
  border-left: 3px solid var(--bg-white);
  padding: 20px;
  border-radius: 10px;
}

.project-dtl ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  font-family: var(--default-number-font);
}

.project-dtl ul li::before {
  content: "\f101";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  top: 0;
}

.project-dtl ul {
  margin-bottom: 25px;
}

.project-dtl ul:last-child {
  margin-bottom: 0;
}

.project-dtl table {
  font-family: var(--default-number-font);
  border-collapse: collapse;
  border: 1px solid #92929297;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.project-dtl th {
  border: none;
  background-color: #e7e7e7;
  color: var(--bg-body-color);
  text-align: left;
  padding: 10px 15px;
  font-size: 16px;
}

.project-dtl td {
  border: none;
  padding: 10px 15px;
  font-size: 16px;
}

.project-dtl tr:nth-child(even) {
  background-color: #dddddd53;
}

.dtl-image {
  width: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}
/* project end */

/* modal */

.event-modal {
  background-color: #0000005c;
  backdrop-filter: blur(9px);
}

.event-modal .modal-dialog {
  width: 100%;
 max-width: 600px;
}

.event-modal .modal-content {
background-color: var(--bg-body-color);
    border: none;
    box-shadow: 0 0 110px #ffffff4f;
}

.modal-info-body {
  padding: 30px;
  color: var(--bg-white);
}

.event-modal .pop-btn-close {
    width: 25px;
    height: 25px;
    padding: 0;
    top: 16px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-btn-close::before {
    font-size: 9px;
    line-height: 1;
}

.modal-info-body h3 {
  margin-bottom: 14px;
}

.modal-info-body p {
  margin-bottom: 4px;
  font-size: 13px;
}

.modal-info-body p a {
  font-size: 13px;
  border-bottom: 1px solid var(--bg-light-wh);
}

.modal-info-body .form-col {
  margin-bottom: 20px;
}

.modal-info-body .form-col:last-child {
  margin-bottom: 0px;
}

.modal-info-body form {
  margin-top: 20px;
}

.form-col-pay {
    margin-top: 10px;
    background-color: #ffffff33;
    color: var(--bg-white);
    text-transform: capitalize;
    padding: 8px 9px;
    border-radius: 4px;
    font-size: 12px;
    border-left: 2px solid #fff;
}

.modal-info-body .row {
  --bs-gutter-y: 20px;
}

.modal-info-body input[type="email"], 
.modal-info-body input[type="tel"], 
.modal-info-body input[type="text"] {
  height: 40px;
  font-size: 16px;
}

.modal-info-body textarea {
    font-size: 16px;
}

.payment-wrap-img p {
    margin-bottom: 10px;
    font-size: 12px;
 }

 .payment-wrap-img h4 {
  font-family: var(--default-font);
 }

 .modal-info-body .form-col select {
      height: 40px;
 }

 .modal-form-top {
  margin-bottom: 16px;
}

.modal-form-body h2 {
  color: var(--bg-white);
  font-size: 28px;
}

.modal-form-body p {
  font-size: 14px;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.modal-form-body p span {
  font-size: 16px;
  color: var(--bg-white);
  margin-top: 20px;
  display: block;
}

.form-col label {
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 0px;
  color: var(--bg-white);
}


.pop-btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.3s ease-in-out;
  width: 34px;
  height: 34px;
  border: 2px solid var(--bg-white);
  background-color: transparent;
  border-radius: 50%;
}

.pop-btn-close::before {
  content: "\58";
  font-family: "fontawesome";
  color: var(--bg-white);
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}

.pop-btn-close:hover::before {
  color: var(--bg-green);
}

.pop-btn-close:hover {
  background-color: var(--bg-white);
}

/* -----------------responsive-------------- */

@media (max-width: 1340px) {
  body {
    font-size: 16px;
  }

  .navbar .navbar__right {
    column-gap: 11px;
  }
}

@media (max-width: 1280px) {
  .btn-cmn-social {
    width: 35px;
    height: 35px;
  }

  .btn-cmn-social img {
    max-width: 16px;
    max-height: 16px;
  }

  .menu .menu__inner .menu__item {
    padding: 12px 12px 12px 0;
  }

  .ftr-btm ul li {
    font-size: 16px;
  }

  .ftr-btm {
    padding: 40px 0;
  }

  .cmn-btn-bk {
    padding: 11px 20px;
}

.admission-banner__content {
    padding: 35px;
}
}

@media (max-width: 1199px) {
  .h1-heading,
  h1 {
    font-size: 40px;
  }

  .header .menu__inner {
    padding: 0 18px;
  }

  .cmn-btn {
    padding: 11px 14px;
    padding-right: 29px;
    font-size: 14px;
  }

  .cmn-btn::after {
    right: 9px;
    background-size: 9px;
  }

  .menu .menu__inner .menu__item .menu__link {
    font-weight: 400;
    padding: 12px 0px;
    border-bottom: 1px solid #3333335e;
  }

  .navbar .navbar__left {
    flex: 0 0 15%;
  }

  .menu .menu__inner .menu__item {
    padding: 0px 12px 0px 0;
  }

  .banner {
    min-height: 590px;
  }

  .cmn-btn:hover::after {
    right: 11px;
  }

  .counter-img {
    width: 40px;
    height: 40px;
  }

  .counter-text {
    font-size: 13px;
  }

  .counter-number {
    font-size: 30px;
  }

  .counter-section {
    padding: 30px 0;
  }

  .header.fixed {
    padding: 15px 0px;
  }

  .header .menu__inner .tabs__sidebar ul li a {
    padding: 12px 13px !important;
  }

  .our-verticals-col-info-top h3 {
    font-size: 20px;
  }

  .our-verticals-col-info-top p {
    font-size: 14px;
  }

  .our-verticals-col-info {
    width: 50%;
    padding: 30px 15px 20px;
  }

  .our-verticals-col-img {
    width: 50%;
  }

  .our-verticals-slider {
    margin-left: 0;
  }

  .our-verticals-col {
    display: flex;
    gap: 10px;
    height: 100%;
  }

  .blog-prev,
  .blog-next,
  .cmn-arrow-left,
  .cmn-arrow-right,
  .our-verticals-arrow-wrap button {
    width: 40px;
    height: 40px;
  }

  .verticals-section {
    padding: 60px 0;
  }

  .our-work-card:hover {
    flex: 1;
  }

  .our-work-category {
    display: none;
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 10px;
    border-radius: 20px;
  }

  .our-work-card-wrap {
    gap: 12px;
  }

  .our-work-card-info h3 {
    color: var(--bg-white);
  }

  .our-work-card-info .our-work-category {
    display: inline-block;
  }

  .our-work-card-info {
    opacity: 1;
    visibility: visible;
    bottom: 5px;
    left: 5px;
    right: 5px;
    padding: 15px;
    background: #fff;
    background-color: #ffffff33;
    backdrop-filter: blur(3px);
  }

  .our-work-card-info p {
    color: var(--bg-white);
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .our-work-card-info::after {
    width: 30px;
    height: 30px;
    top: 18px;
    right: 12px;
    background-size: 12px;
    background-color: var(--bg-white);
    background-image: url(./../images/arrow-sd-rgt.svg);
  }

  .our-work-card-info h3 {
    font-size: 20px;
  }

  .our-work-card-info .our-work-category {
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    color: #fff;
    margin: 0;
  }

  .what-we-best-col {
    min-height: auto;
    padding: 14px 20px;
    gap: 18px;
  }

  .what-we-best-col-cont h3 {
    font-size: 22px;
  }

  .what-we-best-col-img {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .what-we-best-col-cont p {
    font-size: 14px;
  }

  .right-what-we-best {
    gap: 12px;
    margin-top: 30px;
  }

  .right-txt-cont ul li,
  .left-img-right-txt-cont ul li {
    background-size: 21px;
    font-size: 16px;
    padding-left: 33px;
    margin-bottom: 10px;
    background-position: 0 2px;
  }

  .right-txt-cont ul,
  .left-img-right-txt-cont ul {
    margin-bottom: 30px;
  }

  .right-img-cont img,
  .left-img-right-txt-img img {
    width: 100%;
  }

  .wh-or-clnt-say h2 {
    margin-bottom: 30px;
  }

  .wh-or-clnt-say-rgt {
    margin-top: 55px;
  }

  .wh-or-clnt-say-slide-top p {
    font-size: 18px;
  }

  .clients-wrap {
    margin-top: 100px;
  }

  .wh-or-clnt-say-progress {
    height: 2px;
    margin-top: 0;
  }

  .wh-or-clnt-say-arrows {
    bottom: 14px;
  }

  .blog-slide-inner {
    padding: 10px;
  }

  .blog-slide-cont h3 {
    font-size: 20px;
  }

  .blog-slide-cont p {
    font-size: 14px;
  }

  .blog-slide-cont .cmn-btn {
    padding: 0 17px 0 0;
  }

  .blog-slide-cont .cmn-btn::after {
    right: -6px;
  }

  .faq-section .accordion-button {
    font-size: 19px;
  }

  .blog-categories {
    top: 13px;
    left: 12px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .faq-section .accordion-button::after {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .ftr-top-rgt label {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-logo-link {
    max-width: 210px;
    margin-bottom: 20px;
  }

  .inner-banner {
    min-height: 440px;
  }

  .inner-banner .banner-cont p {
    display: block;
  }

  .abt-two-lft-imgs {
    padding-right: 0px;
  }

  .abt-two-col p {
    font-size: 14px;
  }

  .our-expertise-col {
    border-top: 1px solid #ffffff40;
    border-bottom: 1px solid #ffffff40;
    position: relative;
    padding: 20px 120px;
    min-height: 110px;
    display: flex;
    align-items: center;
  }

  .our-expertise-col h3 {
    font-size: 24px;
  }

  .expertise-icon {
    max-width: 57px;
  }

  .our-expertise-col::before {
    left: 80px;
    font-size: 30px;
  }

  .expertise-image {
    right: 0;
    transform: scale(1) rotate(0deg);
    z-index: 1;
    border-radius: 20px;
    top: -17px;
    max-width: 280px;
  }

  .our-expertise-col:hover .expertise-image {
    transform: scale(1) rotate(0deg);
    top: -17px;
  }

  .end-to-end-col-rgt-inner p {
    font-size: 16px;
  }

  .end-to-end-col-rgt-inner span {
    font-size: 70px;
  }

  .srv-wrap .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}

.service-sec .our-structure-wrap {
    border-radius: 20px;
}

.svr-image {
    border-radius: 20px;
}

.arrow-top {
    width: 30px;
    font-size: 11px;
    height: 30px;
    box-shadow: 0 0 0 5px var(--bg-body-color);
}

.svr-top-cont h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.svr-top-cont p {
    font-size: 14px;
}

.svr-top-cont {
    padding: 16px;
}

  .we-serve-item {
    padding: 54px 15px;
  }

  .we-serve-item-img {
    max-width: 50px;
    margin: 0 auto 20px;
  }

  .we-serve-item-img::before {
    top: -30px;
    width: 70px;
    height: 70px;
  }

  .hover-we-serve-item-cont {
    padding: 0 20px;
  }

  .hover-we-serve-item-cont p {
    margin-bottom: 4px;
    font-size: 12px;
}

.hover-we-serve-item-cont ul li {
    font-size: 12px;
    margin-bottom: 2px;
    position: relative;
    padding-left: 12px;
}

  .footer-logo-link {
      max-width: 130px;
  }

  .cmn-btn-bk {
    font-size: 16px;
}

.admission-banner__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cmn-btn-txt-wh {
  margin: 0;
}

.contact-map {
    height: 540px;
}

.contact-info {
    max-width: 450px;
    padding: 25px;
    padding-right: 100px;
}

.contact-info-ov {
    max-width: 162px;
}
}

@media (max-width: 991px) {
  .burger {
    display: block;
    margin: 0;
    height: 20px;
  }

  .navbar .navbar__left {
    flex: 0 0 20%;
  }

  .menu .menu__inner .menu__item .menu__link {
    color: var(--bg-black);
    font-weight: 600;
  }

  .menu .menu__inner .menu__item {
    padding: 0;
  }

  .menu .menu__header .menu__arrow > i {
    font-size: 12px;
  }

  .menu .menu__header .menu__arrow {
    width: 2rem;
  }

  .menu .menu__inner .menu__item .menu__link > i {
    margin-left: 0;
    transform: rotate(90deg);
  }

  .menu .menu__header .menu__title {
    font-weight: 700;
    font-size: 16px;
  }

  .menu .menu__header .menu__title:hover {
    color: var(--bg-black) !important;
  }

  .menu .menu__inner .menu__item > .menu__link > i {
    transform: rotate(0deg) !important;
  }

  .tab-images-flex .submenu__inner {
    width: 50%;
    padding: 5px;
  }

  .tab-images-flex {
    margin: -5px -5px 0;
  }

  .tabs__content-wrapper h4 {
    font-weight: 700;
    font-size: 17px;
    opacity: 0.8;
  }

  .submenu .submenu__inner .submenu__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
  }

  .submenu {
    overflow-x: hidden;
  }

  .mobile-hdr-logo {
    max-width: 180px;
    position: absolute;
    top: 12px;
    left: 18px;
  }

  .mobile-hdr-logo a {
    display: inline-block;
  }

  .header .menu__inner {
    padding: 65px 18px 0;
  }

  .mobile-hdr-logo {
    display: block;
  }

  .counter-item {
    padding: 30px 0;
    height: 100%;
  }

  .counter-row .col-6 .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .counter-row .col-6:nth-child(2) .counter-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .counter-row .col-6:nth-child(3) .counter-item {
    border-bottom: none;
  }

  .counter-row .col-6:nth-child(4) .counter-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
  }

  h2 {
    font-size: 35px;
  }

  .logo-slider-section {
    padding: 11px 0;
  }

  .banner-cont p {
    display: none;
  }

  .banner-scroll {
    display: none;
  }

  .our-verticals-bottom {
    margin-top: 30px;
    gap: 15px;
  }

  .our-verticals-item {
    flex: 0 0 80vw;
  }

  .our-verticals-slider {
    margin-top: 30px;
  }

  .our-work-card-wrap {
    width: calc(50% - 5px);
    flex-wrap: wrap;
  }

  .our-work-card-wrap-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .our-work-card {
    flex: unset;
    padding-top: 70%;
    width: 100%;
  }

  .our-work-card-wrap + .our-work-card-wrap {
    margin-top: 0px;
  }

  .what-we-best-col {
    padding: 20px;
  }

  .left-what-we-best,
  .right-what-we-best {
    padding: 0 20px;
  }

  .right-img-left-txt .cmn-row,
  .left-img-right-txt .cmn-row {
    --bs-gutter-x: 20px;
  }

  .wh-or-clnt-say-cont-img {
    margin: 0 auto 16px;
    justify-content: center;
  }

  .wh-or-clnt-say .cmn-hd {
    text-align: center;
  }

  .wh-or-clnt-say-imgs img {
    width: 40px;
    height: 40px;
  }

  .wh-or-clnt-say-cont {
    font-size: 13px;
  }

  .wh-or-clnt-say-cont span {
    font-size: 25px;
  }

  .wh-or-clnt-say-rgt {
    padding: 0;
  }

  .quotation-icon {
    max-width: 50px;
  }

  .wh-or-clnt-say-slide-inner {
    padding-left: 60px;
  }

  .clients-cont h3 {
    font-size: 19px;
  }

  .cont-col-form {
    padding: 24px;
  }

  .cont-col-form h3 {
    margin-bottom: 16px;
  }

  select,
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    font-size: 16px;
  }

  .form-col {
    margin-bottom: 10px;
  }

  .cont-col-img {
    padding-top: 40%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .cont-col-form {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .ftr-social {
    margin-bottom: 20px;
  }

  .sub-hd-all {
    margin-bottom: 5px;
  }

  .expertise-icon {
    max-width: 39px;
  }

  .our-expertise-col h3 {
    font-size: 18px;
  }

  .our-expertise-col {
    padding: 14px 80px;
    min-height: 80px;
  }

  .expertise-image {
    border-radius: 10px;
    top: -17px;
    max-width: 220px;
  }

  .our-expertise-col::before {
    left: 53px;
    font-size: 20px;
  }

  .we-serve-item {
    border: none;
    border-bottom: 1px solid #ffffff42;
  }

  .we-serve-wrap .row .col-md-6:nth-child(odd) .we-serve-item {
    border-right: 1px solid #ffffff42;
  }

  .we-serve-wrap {
    margin-top: 40px;
    border: 1px solid #ffffff42;
    border-bottom: none;
  }

  .admission-banner__hd {
    text-align: center;
    margin-bottom: 30px;
  }

  .project-card {
    width: 50%;
  }

  .related-projects .row {
  --bs-gutter-y: 20px;
}
}

@media (max-width: 767px) {
  .mobile-hdr-logo {
    max-width: 150px;
  }

  .header .menu__inner {
    padding: 56px 12px 0;
  }

  .navbar .navbar__left {
    flex: 0 0 30%;
  }

  .header {
    padding: 7px 0;
  }

  .banner {
    min-height: 500px;
  }

  .h1-heading,
  h1 {
    font-size: 35px;
  }

  .logo-slider-section {
    padding: 7px 0;
  }

  .our-work-card {
    padding-top: 90%;
  }

  .left-img-right-txt-cont {
    margin-top: 30px;
  }

  .right-img-cont {
    margin-top: 30px;
  }

  .our-prd-col .cmn-btn {
    position: absolute;
    right: 17px;
    top: 17px;
    font-size: 0px;
    padding: 0;
    width: 30px;
    height: 30px;
    background-color: var(--bg-white);
  }

  .our-prd-col .cmn-btn::after {
    background-image: url(./../images/arrow-sd-rgt.svg);
    transform: rotate(0deg);
    width: 20px;
    background-size: contain;
    height: 10px;
    right: unset;
    left: 7px;
    top: 10px;
  }

  .faq-section .accordion {
    margin-top: 50px;
  }

  .faq-section .accordion-button {
    padding: 18px 0;
  }

  .acco-btn {
    font-size: 18px;
    gap: 40px;
    padding: 17px 0;
  }

  .acco-btn img {
    width: 36px;
  }

  .ftr-btm ul li a {
    font-size: 14px;
  }

  .ftr-top-rgt {
    margin-top: 20px;
  }

  .ftr-top-lft {
    text-align: center;
  }

  .footer-logo-link {
    margin: 0 auto 20px;
  }

  .ftr-top-lft ul {
    justify-content: center;
  }

  .ftr-cpt-col p {
    margin-bottom: 10px;
  }

  .ftr-cpt-col a,
  .ftr-cpt-col p {
    font-size: 14px;
  }

  .ftr-cpt-col {
    text-align: center;
  }

  .ftr-cpt-col ul {
    gap: 18px;
    justify-content: center;
  }

  .ftr-cpt-col ul li a {
    font-size: 14px;
  }

  .ftr-copy-rgt {
    padding: 14px 0;
  }

  .inner-banner {
    min-height: 350px;
  }

  .abt-two-col-img {
    padding-top: 58%;
  }

  .our-structure-rgt img {
    width: 100%;
  }

  .our-structure-rgt {
    height: auto;
  }

  .our-structure-row {
    --bs-gutter-y: 30px;
  }

    .expertise-image {
    border-radius: 10px;
    top: -1px;
    max-width: 170px;
  }

  .cmn-hd {
    margin-bottom: 20px;
}

.project__filter {
  margin-top: 20px;
}

.project__filter .project__select {
    height: 44px;
}

.banner-cont > span {
    font-size: 12px;
    margin-bottom: 7px;
    padding: 4px 9px;
}

.banner-cont ul li {
    font-size: 14px;
}

.banner-cont ul {
    gap: 12px;
    flex-wrap: wrap;
}
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
    padding: 5px;
  }

  .h1-heading,
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

  .header {
    padding-top: 0;
  }

  .navbar .navbar__left {
    flex: 0 0 43%;
  }

  .hrd-top {
    display: block;
    margin-bottom: 10px;
  }

  .hrd-top ul {
    display: flex;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  .hrd-top ul li {
    width: 50%;
  }

  .navbar__right .cmn-btn {
    display: none;
  }

  .hrd-top ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--bg-white);
    color: var(--bg-black);
    padding: 6px 0;
  }

  .hrd-top ul li:last-child a {
    background-color: var(--bg-green);
    color: var(--bg-black);
  }

  .cmn-btn + .cmn-btn {
    margin-left: 0px;
  }

  .banner-cont-btns {
    margin-top: 0;
  }

  .banner-cont-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
  }

  .banner {
    padding: 100px 0 18px;
  }

  .header {
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
  }

  .banner::after {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 0%,
      rgb(0 0 0 / 60%) 100%
    );
  }

  .counter-number {
    font-size: 23px;
  }

  .counter-item {
    gap: 10px;
  }

  .header.fixed {
    padding-top: 0;
  }

  .header.fixed .hrd-top ul {
    border-radius: 0px;
  }

  .about-cont-wrap {
    min-height: 60vh;
  }

  .banner-scroll {
    display: none;
  }

  .our-verticals-col {
    flex-wrap: wrap;
    gap: 0;
  }

  .our-verticals-col-img {
    width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    order: 1;
  }

  .our-verticals-col-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .our-verticals-item {
    flex: 0 0 70vw;
  }

  .our-verticals-col-info {
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    order: 2;
  }

  .our-verticals-slider {
    gap: 3vw;
  }

  .our-verticals-arrow-wrap {
    gap: 8px;
  }

  .our-verticals-bottom {
    margin-top: 20px;
  }

  .logo-slider-img {
    padding: 5px 30px;
  }

  .our-work-card-wrap {
    width: 100%;
  }

  .our-work-section,
  .cmn-mg-all {
    margin-left: -6px;
    margin-right: -6px;
  }

  .our-work-card-wrap + .our-work-card-wrap {
    margin-top: 10px;
  }

  .our-work-action {
    margin-top: 30px;
  }

  .cmn-gap {
    padding: 50px 0;
  }

  .cmn-hd {
    margin-bottom: 30px;
  }

  h2 {
    margin: 0 0 10px 0;
  }

  .left-what-we-best,
  .right-what-we-best {
    padding: 0 0px;
  }

  .what-we-best-col {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .right-txt-cont ul li,
  .left-img-right-txt-cont ul li {
    background-size: 18px;
    font-size: 14px;
    padding-left: 28px;
  }

  .our-prd-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }

  .our-prd-col-img {
    padding: 85% 0 0;
  }

  .our-products-section .cmn-hd {
    margin: 0 auto 40px;
  }

  .quotation-icon {
    max-width: 40px;
  }

  .wh-or-clnt-say-slide-top p {
    font-size: 16px;
  }

  .clients-wrap {
    margin-top: 70px;
  }

  .clients-img {
    width: 50px;
    height: 50px;
  }

  .clients-cont h3 {
    font-size: 16px;
  }

  .clients-cont span {
    font-size: 14px;
  }

  .wh-or-clnt-say-progress {
    bottom: 70px;
  }

  .wh-or-clnt-say-arrows {
    display: none;
  }

  .blog-slider-wrap {
    gap: 30px;
    margin-top: 30px;
  }

  .blog-prev,
  .blog-next {
    width: 30px;
    height: 30px;
  }

  .blog-arrows {
    gap: 13px;
  }

  .faq-section .accordion-button {
    font-size: 16px;
    padding-right: 40px;
  }

  .ftr-inp-wrap-top {
    display: none;
  }

  .ftr-inp-wrap-bottom {
    display: block;
  }

  .navbar .navbar__left .brand {
    max-width: 78px;
  }

  .sub-hd-all {
    margin-bottom: 8px;
    gap: 9px;
  }

  .abt-two-col-img-two {
    height: auto;
    margin-top: 20px;
  }

  .our-structure-wrap {
    border-radius: 20px;
    padding: 20px;
  }

  .service-number {
    padding: 3px 12px;
    letter-spacing: 1px;
    margin-bottom: 11px;
  }

  .our-structure-lft h4 {
    font-size: 29px;
    margin-bottom: 16px;
  }

  .our-structure-lft ul li::before {
    top: 7px;
    left: 0;
    width: 11px;
    height: 10px;
  }

  .our-structure-lft ul li {
    font-size: 16px;
    margin-bottom: 6px;
    padding-left: 22px;
  }

  .our-structure-lft ul {
    margin-bottom: 20px;
  }

  .our-structure-lft ul:last-child {
    margin-bottom: 0;
  }

  .our-structure-rgt {
    border-radius: 20px;
  }

  .our-structure-wrap {
    margin-bottom: 20px;
  }

      .expertise-image {
    display: none;
  }

  .our-expertise-flex {
    gap: 20px;
}

.our-expertise-col {
  padding-right: 20px;
}

.end-to-end-col h2 {
    margin-bottom: 25px;
}

.end-to-end-col-rgt {
    padding-left: 0;
    margin-top: 30px;
}

.end-to-end-ov {
    max-width: 200px;
}

.hover-we-serve-item-cont {
    bottom: 37px;
}

.demo-elearning-bg {
    top: 1%;
    max-width: 205px;
}

.inner-counter-section .counter-text {
    font-size: 12px;
}

.project-card {
  width: 100%;
}

.project-dtl td {
    padding: 6px 15px;
    font-size: 14px;
}

.inner-banner {
    padding: 120px 0 18px;
  }

  .contact-form-cont .text-right {
    text-align: center;
}

    .contact-info {
        max-width: 100%;
        border-radius: 0;
    }

    .contact-info ul li a {
      font-size: 14px;
    }

    .contact-info ul {
    margin-bottom: 20px;
}

.contact-info h4 {
    margin-bottom: 8px;
}

.modal-info-body {
    padding: 20px 12px;
}

.modal-info-body .row {
    --bs-gutter-y: 12px;
}
}

@media (max-width: 479px) {
  .counter-img {
    width: 30px;
    height: 30px;
  }

  .counter-number {
    font-size: 18px;
  }

  .counter-text {
    font-size: 11px;
  }

  .counter-item {
    padding: 20px 0;
  }

  .our-verticals-item {
    flex: 0 0 80vw;
  }

  .blog-prev,
  .blog-next,
  .cmn-arrow-left,
  .cmn-arrow-right,
  .our-verticals-arrow-wrap button {
    width: 30px;
    height: 30px;
    padding: 0px 9px;
  }

  .what-we-best-col {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .hrd-top ul li a {
    font-size: 10px;
  }
}
