/* 01 : Website Global CSS BOF
========================================================== */

:root {
  --primary-color: #272727;
  /*rgba(39, 39, 39, 1)*/
  --secondary-color: #1d1d1d;
  /*rgba(29, 29, 29, 1)*/
  --third-color: rgba(18, 18, 18, 1);
  --main-black: #000;
  --main-white: #fff;

  --main-yellow: rgba(255, 165, 2, 1);
  --main-blue: rgba(72, 186, 255, 1);

  --main-text-shade1: rgba(255, 255, 255, 0.8);
  --main-text-shade2: rgba(255, 255, 255, 0.7);
  --main-text-shade3: rgba(255, 255, 255, 0.6);
  --main-text-shade4: rgba(255, 255, 255, 0.5);
  --main-text-shade5: rgba(255, 255, 255, 0.4);
  --main-text-shade6: rgba(255, 255, 255, 0.3);
  --main-text-shade7: rgba(255, 255, 255, 0.2);
  --main-text-shade8: rgba(255, 255, 255, 0.1);
}

body,
html {
  height: 100%;
}

body {
  background: rgba(18, 18, 18, 1);
  font-family: "Poppins";
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  color: var(--main-white);
  text-transform: none;
  user-select: none;
}

section {
  scroll-margin-top: 110px;
}

@media (max-width: 1199.98px) {
  section {
    scroll-margin-top: 105px;
  }
}

@media (max-width: 991.98px) {
  section {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 767px) {
  section {
    scroll-margin-top: 70px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--main-white);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: var(--main-yellow);
  text-decoration: none;
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

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

i {
  font-family: "FontAwesome";
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* Browser Selection CSS BOF */
::selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-moz-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-webkit-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-o-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-ms-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

p a {
  color: var(--main-yellow);
}

p a:hover {
  text-decoration: underline;
}

/* 02 : Global Classes CSS BOF
==================================================== */

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Background &amp; Color Style CSS BOF
=================================================== */

/* Font Color Style CSS BOF */
.white_text {
  color: var(--main-white) !important;
}

.white_shade1_text {
  color: var(--main-text-shade1);
}

.white_shade2_text {
  color: var(--main-text-shade2);
}

.white_shade3_text {
  color: var(--main-text-shade3);
}

.white_shade4_text {
  color: var(--main-text-shade4);
}

.white_shade5_text {
  color: var(--main-text-shade5);
}

.black_text {
  color: var(--main-black) !important;
}

.primary_text {
  color: var(--primary-color) !important;
}

.secondary_text {
  color: var(--secondary-color) !important;
}

.yellow_text {
  color: var(--main-yellow) !important;
}

.blue_text {
  color: var(--main-blue) !important;
}

/* Background Color Style CSS BOF */

.primary-bg-overlay {
  background: var(--primary-color);
}

.secondary-bg-overlay {
  background: var(--secondary-color);
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

.checked-list>li {
  padding-left: 30px;
}

/* 03 : Heading Style CSS BOF
=================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
  line-height: normal;
  font-weight: 600;
  font-style: normal;
  color: var(--main-white);
  margin-bottom: 0;
}

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

h1,
.h1 {
  font-size: 82px;
  line-height: 104px;
}

.h2 {
  font-size: 56px !important;
  line-height: 62px !important;
}

.h3 {
  font-size: 42px !important;
  line-height: 50px !important;
}

.h4 {
  font-size: 28px !important;
}

.h5 {
  font-size: 24px !important;
}

.h6 {
  font-size: 18px !important;
  line-height: normal;
}

.font-36 {
  font-size: 36px !important;
}

.font-16 {
  font-size: 16px !important;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal !important;
}

.font_bl {
  font-weight: bold !important;
}

.font_blk {
  font-weight: 900 !important;
}

.font_smb {
  font-weight: 600 !important;
}

.font_md {
  font-weight: 500 !important;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.common-rounded {
  border-radius: 20px;
}

.common-rounded-10 {
  border-radius: 10px;
}

/* 04 : Paragraph Style CSS BOF
=================================================== */
p,
.p {
  line-height: 30px;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
=================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.btn {
  background-color: var(--main-yellow);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins";
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 30px;
  border: 1px solid var(--main-yellow);
  text-transform: unset;
  box-shadow: none;
  min-width: 160px;
  color: var(--main-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover,
.btn:focus {
  background-color: var(--main-blue);
  color: var(--main-white);
  box-shadow: none;
  outline: none;
  border-color: var(--main-blue);
}

.btn:hover svg,
.btn:hover svg path {
  stroke: var(--main-white);
  transition: all 0.4s ease-in-out 0s;
}

.btn_outline {
  background-color: transparent;
  color: var(--main-white);
  border: 1px solid var(--main-text-shade5);
}

.btn_outline:hover,
.btn_outline:focus {
  background-color: var(--main-white);
  color: var(--main-black);
  box-shadow: none;
  outline: none;
  border-color: var(--main-white);
}

.btn_outline:hover img,
.btn_outline:focus img {
  filter: invert(20%) grayscale(100%) brightness(50%) contrast(4);
  transition: all 0.4s ease-in-out 0s;
}

.btn_white {
  background-color: var(--main-white);
  color: var(--primary-color);
  border: 1px solid var(--main-white);
}

.btn_white:hover,
.btn_white:focus {
  background-color: var(--main-blue);
  box-shadow: none;
  outline: none;
  border-color: var(--main-blue);
}

/* ---add css for black btn by himani - 5/2/24 */
.btn_black {
  background-color: var(--third-color);
  color: var(--main-white);
  border: 1px solid var(--third-color);
}

.btn_black:hover,
.btn_black:focus {
  background-color: var(--main-white);
  box-shadow: none;
  outline: none;
  color: var(--third-color);
  border-color: var(--main-white);
}

.btn_blue {
  background-color: var(--main-blue);
  color: var(--main-white);
  border: 1px solid var(--main-blue);
}

.btn_blue:hover,
.btn_blue:focus {
  background-color: var(--main-yellow);
  box-shadow: none;
  outline: none;
  color: var(--main-black);
  border-color: var(--main-yellow);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
==================================================== */

.form-control,
.form-select {
  background-color: transparent;
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 16px;
  color: var(--main-white);
  font-family: "Poppins";
  font-weight: normal;
  padding: 18px 22px;
  line-height: normal;
  /* height: 60px; */
}

.form-select {
  background-image: url("./../images/select-arrow.webp");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 22px center;
  cursor: pointer;
  color: var(--main-text-shade6);
  padding: 16px 50px 16px 22px;
}

.form-select option {
  color: var(--main-black) !important;
}

.form-label {
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
  color: var(--main-black);
  margin-bottom: 12px !important;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 18px 23px;
  height: 232px;
}

.form-group .required-field {
  color: rgba(255, 63, 63, 1);
}

/*** Placeholder CSS BOF ***/
.form-control::placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-moz-placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

.form-control:-ms-input-placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-webkit-input-placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-o-input-placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

/* Focus State CSS BOF */

.form-control:focus,
.form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: transparent;
  color: var(--main-white);
}

/* SECONDARY FORM DESIGN ADDED ---- BY HIMANI */

.secondary-form .form-group {
  margin-bottom: 34px;
}

.secondary-form .form-label {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--main-white);
  margin-bottom: 8px !important;
  text-transform: capitalize;
}

.secondary-form .form-control,
.secondary-form .form-select {
  font-size: 18px;
  background-color: var(--primary-color);
  border-color: transparent;
  border-radius: 5px;
  padding: 18px 23px;
}

.secondary-form .form-control:focus,
.secondary-form .form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  color: var(--main-white);
}

.secondary-form .form-select {
  color: var(--main-text-shade3);
}

.secondary-form .form-select option {
  color: var(--main-white) !important;
}

.secondary-form textarea.form-control {
  height: 130px;
  padding: 18px 23px;
}

/*** Placeholder CSS BOF ***/
.secondary-form .form-control::placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-moz-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control:-ms-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-webkit-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-o-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.page-wrapper {
  margin: 0px auto;
  /* overflow-x: hidden; */
}

.no-scroll {
  overflow: hidden;
}

.common-padding {
  padding: 140px 0;
}

/* ======================================================
                COMMON CONTAINER SOC
====================================================== */
@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}

/* ====================================================
            SLICK SLIDER COMMON CSS
==================================================== */
ul.slick-dots {
  font-size: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  bottom: 0;
  left: 0;
  right: 0;
}

ul.slick-dots li {
  display: inline-block;
  margin: 8px;
}

ul.slick-dots li button {
  font-size: 0;
  outline: 0;
  border: 1px solid #cbcbcb;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

ul.slick-dots li.slick-active button {
  background: #000;
  border-color: #000;
}

ul.slick-dots li {
  padding: 0px;
  border-radius: 100%;
}

ul.slick-dots li button {
  position: relative;
  z-index: 1;
}

ul.slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  background: transparent;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 100%;
  transition: all 400ms ease;
}

ul.slick-dots li.slick-active button:before {
  background: var(--main-yellow);
}

.slick-vertical .slick-slide {
  border: none;
}

ul.slick-dots li button:before {
  background-color: var(--main-white);
}

button.slick-arrow {
  font-size: 0;
  position: absolute;
  z-index: 9;
  background: var(--main-yellow);
  cursor: pointer;
  border: 1px solid var(--main-yellow);
  bottom: 0;
  width: 60px;
  height: 60px;
  top: 100%;
  border-radius: 100%;
  text-align: center;
}

button.slick-prev.slick-arrow {
  right: 70px;
}

button.slick-prev.slick-arrow.slick-disabled,
button.slick-next.slick-arrow.slick-disabled {
  opacity: 0.4;
  background-color: transparent;
  border-color: var(--main-white);
}

button.slick-next.slick-arrow {
  right: 0;
}

button.slick-prev.slick-arrow:after {
  content: "";
  background: url("./../images/slider-arrow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  display: inline-block;
  width: 21px;
  transform: rotate(-180deg);
  transition: all 500ms ease;
}

button.slick-next.slick-arrow:after {
  content: "";
  background: url("./../images/slider-arrow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  display: inline-block;
  width: 21px;
  transition: all 500ms ease;
}

/* ====================================================
                  COMMON LETS TALK 
==================================================== */
.common-lets-talk-wrapper {
  background-image: url("./../images/lets-talk/experts-talk-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1520px 98%;
}

/* ====================================================
            PAGINATION COMMON CSS
==================================================== */
.pagination {
  justify-content: center;
}

.page-link,
.page-link:hover,
.page-link:focus {
  background-color: transparent;
  border: transparent;
  outline: none;
  box-shadow: unset;
}

.page-item.active .page-link {
  background-color: transparent;
  border: transparent;
  color: var(--main-yellow);
}

.page-item.disabled .page-link {
  background-color: transparent;
  border-color: var(--main-white);
  color: var(--main-white);
  opacity: 0.5;
}

.page-item.disabled .page-link svg {
  /* opacity: 0.5; */
}

.page-link {
  width: 60px;
  height: 60px;
  display: flex;
  color: var(--main-text-shade3);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.page-link:hover,
.page-link:focus {
  color: var(--main-text-shade3);
}

.page-link[aria-label="Previous"],
.page-link[aria-label="Next"] {
  border: 1px solid var(--main-white);
  border-radius: 100%;
  box-shadow: unset;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 100%;
  box-shadow: unset;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}

@media (max-width: 767px) {
  .page-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ===============================================
            COMMON TABBING SOC
=============================================== */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  border: none;
  border-radius: 30px;
  color: var(--main-white);
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  background: 0 0;
  padding: 10px 40px;
  color: var(--main-text-shade3);
  border: none;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .nav-tabs .nav-link {
    padding: 10px 25px;
  }
}

.nav-tabs {
  border: none;
}

/* ================================================
               COMMON TITLE STRUCTURE
================================================= */
.common-title-padding {
  padding-bottom: 70px;
}

/* ===============================================
              COMMON ACCORDIAN CSS
================================================= */
.accordion-button:focus {
  border-color: transparent;
  box-shadow: unset;
}

.accordion-button {
  background-color: transparent;
  color: var(--main-white);
  font-size: 24px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--main-text-shade1);
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 0;
}

.accordion-item {
  background-color: var(--secondary-color);
  border: none;
  margin-bottom: 24px;
  border-radius: 20px;
  border: 1px solid var(--main-text-shade8);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 20px;
}

.accordion-item:not(:first-of-type),
.accordion-collapse.show {
  border-top: 1px solid var(--main-text-shade8);
}

.accordion-button:not(.collapsed)::after {
  display: none;
}

.accordion-button::after {
  display: none;
}

.accordion-header {
  padding: 30px 40px 30px 40px;
}

.accordion-body {
  padding: 30px 40px 30px 40px;
  text-align: start;
}

/* **************************************************************
                        SPINNER CSS
************************************************************** */
.moderspinner {
  width: 40px;
  height: 40px;
  border: dotted 5px var(--main-yellow);
  border-radius: 100%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg) scale(0.8);
    border-top-color: transparent;
    border-right-color: transparent;
  }

  50% {
    transform: rotate(180deg) scale(1.2);
    border-color: var(--main-yellow);
    border-top-color: transparent;
    border-right-color: transparent;
  }

  100% {
    transform: rotate(360deg) scale(0.8);
    border-color: var(--main-yellow);
    border-top-color: transparent;
    border-right-color: transparent;
  }
}

.page-loader {
  z-index: 9999999;
  position: fixed;
  background: var(--main-white);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-loader .moderspinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ****************************************************************
*******************************************************************
                         HOME PAGE 
*******************************************************************
******************************************************************/

/* ===============================================
                HERO SECTION SOC
=============================================== */

.hero-sec {
  /* background-image: url("./../images/banner/bannerau.png"); */
  background-image: url("./../images/banner/banner-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.hero-sec {
  padding: 150px 0;
}

.hero-content {
  max-width: 935px;
  margin: auto;
  padding: 24px 0 32px;
}

/* ===============================================
              HEADLINES SECTION SOC
=============================================== */
/* remove marquee animation -------- by Himani */
.block-list {
  /* position: relative; */
  display: flex;
  justify-content: center;
}

@media (min-width: 1800px) {
  .marquee-list {
    /* justify-content: center; */
  }
}

.marquee-list::-webkit-scrollbar {
  /* width: 4px; */
  height: 4px;
  background-color: var(--main-text-shade7);
  /* display: none; */
}

.marquee-list::-webkit-scrollbar-thumb {
  background: var(--main-text-shade4);
}

.marquee-list ::-webkit-scrollbar-track {
  background: var(--main-text-shade6);
}

.marquee-list {
  padding: 0;
  display: flex;
  gap: 1.6rem;
  overflow: auto;
  padding: 0 20px;

  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  /* transform: scale(0.98); */
  will-change: transform;
  user-select: none;
  cursor: pointer;
}

.marquee-list>li {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  align-items: center;
}

.marquee-list>li::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("./../images/headlines/headelines-icon.webp");
  background-size: contain;
}

.marquee-list>li:last-child::after {
  display: none;
}

.items {}

.items.active {
  /* background: rgba(255, 255, 255, 0.3); */
  cursor: grabbing;
  cursor: -webkit-grabbing;
  /* transform: scale(1); */
}

.item {
  display: inline-block;
}

/*====================================================
                 FOOTER SECTION
=================================================== */
.footer-main {
  background: var(--third-color);
}

.footer-main .industry-ex-label {
  letter-spacing: 5px;
  font-size: 20px;
}

.footer-main .industry-exp-img {
  max-width: 220px;
}

.footer-menu-col .footer-media-box ul li a {
  width: 42px;
  height: 42px;
}

.footer-menu-col .footer-media-box ul li a:hover {
  background-color: var(--main-yellow);
}

.footer-menu-col ul li a:hover p {
  opacity: 1;
}

.footer-media-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.footer-media-box {
  margin-bottom: 38px;
}

.footer-media-box:last-child {
  margin-bottom: 0;
}

.footer-media-box>div p {
  font-size: 20px;
}

.footer-menu-col ul li a {
  transition: all 500ms ease;
}

.footer-media-menu .bottom-menu li {
  border-right: 1px solid var(--main-text-shade5);
}

.footer-media-menu .bottom-menu li:last-child {
  border: none;
}

.footer-media-menu {
  border-top: 1px solid var(--primary-color);
}

.footer-logo-img {
  max-width: 220px;
}

.footer-main textarea.form-control {
  height: 150px;
}


/* ====================================================
                PORTFOLIO SECTION SOC
==================================================== */
.portfolio-box {
  border-radius: 30px;
  padding: 30px;
}

.portfolio-content {
  padding: 0px 50px;
}

.technology-box {
  width: 70px;
  height: 70px;
}

.technology-box img {
  width: 100%;
  height: 100%;
  display: inline-block;
  max-height: initial;
}

.portfolio-hover-video {
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-hover-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* CHANGE HOVER EFFECTS --- BY HIMANI (16-2-24) */
.portfolio-box.active .portfolio-hover-video img {
  opacity: 0;
}

/* ====================================================
                CLIENT SECTION SOC
==================================================== */
.client-content {
  padding: 34px 34px 46px 34px;
}

.client-box {
  border-radius: 30px;
  overflow: hidden;
  margin: 0 20px;
}

.client-slider .slick-list.draggable {
  margin: 0px -20px;
  overflow: unset;
}

.client-slider button.slick-arrow {
  bottom: 150px;
  top: unset;
}

.client-slider .slick-slide.slick-current.slick-active+.slick-active {
  margin-top: -150px;
}

.client-slider .slick-slide.slick-current.slick-active+.slick-active+.slick-active {
  margin-top: -300px;
}

.client-slider .slick-slide.slick-current.slick-active {
  margin-top: 0;
}

.client-slider .slick-slide {
  transition: all 0.5s linear !important;
}

.client-element {
  display: inline-block;
  position: absolute;
  bottom: -50px;
  left: calc((100% - 850px) / 2);
  z-index: -1;
}

/* ===================================================
          GROWTH COUNTDOWN SECTION SOC
================================================== */
.growth-countdown {
  font-size: 112px;
  line-height: 100px;
}

.know-about-project img {
  max-width: 300px;
}

.know-about-project:hover img:last-child {
  opacity: 1;
  visibility: visible;
}

.know-about-project img:last-child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s ease-in-out;
}

.know-about-project img:first-child {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

.know-about-project:hover img:first-child {
  opacity: 0;
  visibility: hidden;
}

/* ===================================================
             SERVICE SECTION SOC 
====================================================*/
.service-sec {
  background-image: url("./../images/services/service-bg-img.webp");
  background-repeat: no-repeat;
  background-size: contain 100%;
}

.service-card {
  border-radius: 10px;
  padding: 30px;
}

.service-card a img {
  transition: all 0.5s ease-in-out;
}

.service-card a:hover img {
  margin-left: 10px;
  transition: all 0.5s ease-in-out;
}

/* ===================================================
             OUR VALUE SECTION SOC 
====================================================*/

.our-value-card-wrapper>div {
  /* border-right: 1px solid red; */
  border-bottom: 1px solid var(--primary-color);
}

.our-value-card-wrapper>div:nth-child(2n + 1) {
  border-right: 1px solid var(--primary-color);
}

.our-value-card-wrapper>div:nth-last-child(2),
.our-value-card-wrapper>div:last-child {
  border-bottom: 0;
}

.our-value-card {
  padding: 30px 60px 30px;
}

.our-value-card-wrapper>div:nth-child(2n + 1) .our-value-card {
  padding-left: 0;
}

.our-value-card-wrapper>div:nth-child(2n + 2) .our-value-card {
  padding-right: 0;
}

/* DD SOME ALIGNMENT CSS ---- BY HIMANI */
.our-value-card-title .our-value-card-content {
  width: calc(100% - 70px);
}

.our-value-card-title .our-value-card-img {
  width: 70px;
}

/* =================================================
            CONSULATATION SECTION SOC 
===================================================*/
.consultation-img {
  margin: -65px 0 -20px;
}

.consulting-content {
  position: absolute;
}

/* ========================================================
                RESOURCES SECTION SOC
======================================================== */
.resources-box {
  border-radius: 10px;
  padding: 50px 40px;
}

.resource-box img {
  width: 40px;
  height: 40px;
}

.resource-box img:not(:first-child) {
  margin-left: -25px;
}

.resources-box .h5 {
  line-height: 34px;
}

/* ========================================================
                BLOGS SECTION SOC
======================================================== */
.blog-box {
  border-radius: 10px;
}

.blog-content {
  padding: 35px 35px 50px 35px;
}

.blogs-wrapper button.slick-prev.slick-arrow.slick-disabled,
.blogs-wrapper button.slick-next.slick-arrow.slick-disabled {
  background: var(--secondary-color);
}

.blogs-wrapper button.slick-prev.slick-arrow,
.resources-slider button.slick-prev.slick-arrow {
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto;
  right: unset;
}

.blogs-wrapper button.slick-next.slick-arrow,
.resources-slider button.slick-next.slick-arrow {
  top: 0;
  bottom: 0;
  right: -20px;
  margin: auto;
  left: unset;
}

/* ADD CSS KARAN 24-1-24 */
.blog-content .h4 {
  min-height: 101px;
}

/* ========================================================
                CATALYZE GROWTH SECTION SOC
======================================================== */
.growth-review-box {
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;
  padding: 26px 25px;
  text-align: center;
  height: 100%;
}

.review-brand {
  min-height: 30px;
  max-height: 30px;
  display: inline-block;
}

.growth-review-box-v2 {
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;

  text-align: center;
}

.growth-review-box-v2 .review-brand,
.growth-review-box-v2 .review-details {
  padding: 33px 25px;
}

.growth-review-box-v2 .review-brand {
  min-height: auto;
  max-height: unset;
  border-right: 1px solid var(--main-text-shade4);
}

/* TEXT CHANGING ANIMATION */

.typing-demo:after {
  content: "";
  animation: content 15s linear infinite;
}

.typing-demo {
  width: 0;
  transition: all 500ms ease;
  animation: typing 15s steps(30, end) infinite alternate-reverse,
    blinks 2s infinite alternate;

  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid var(--main-white);
  max-width: max-content;
}

@keyframes typing {
  0% {
    width: 0%;
  }

  16.66% {
    width: 100%;
  }

  33.33% {
    width: 0%;
  }

  50% {
    width: 100%;
  }

  66.66% {
    width: 0%;
  }

  83.33% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

@keyframes content {
  0% {
    content: "WEB APP";
  }

  30% {
    content: "WEB APP";
  }

  31% {
    content: "MOBILE APP";
  }

  60% {
    content: "MOBILE APP";
  }

  61% {
    content: "SOFTWARE";
  }

  100% {
    content: "SOFTWARE";
  }
}

@keyframes blinks {
  50% {
    border-color: transparent;
  }
}

/* ****************************************************************
                    PROJECT PORTFOLIO SECTION 
  ******************************************************************/
.project-content {
  padding: 45px;
}

.project-box {
  border-radius: 20px;
  height: 100%;
  display: block;
}

.project-content .h3 {
  font-size: 36px !important;
  line-height: 46px !important;
}

/* KARAN 29-2-24 ADD CSS */
.project-box {
  position: relative;
}

.project-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.project-box.active img {
  opacity: 0;
}

/* ********************* COMMITMENT SECTION SOC ****************** */
.card-steps-box {
  padding: 40px;
  height: 100%;
  border: 2px solid var(--secondary-color);
}

.card-steps-box:hover {
  border-color: var(--main-text-shade8);
}

.card-numbers {
  line-height: 90px;
}

.card-numbers-parrot {
  color: rgba(183, 234, 89, 1);
}

.card-numbers-purple {
  color: rgba(190, 108, 255, 1);
}

.card-numbers-pink {
  color: rgba(255, 85, 161, 1);
}

.card-numbers-blue {
  color: rgba(113, 201, 255, 1);
}

.card-numbers-orange {
  color: rgba(255, 143, 95, 1);
}

.card-numbers-green {
  color: rgba(129, 243, 147, 1);
}

.color-white {
  color: #fff;
}

.color-lamon {
  color: #ee9a02;
}

.color-grey {
  color: #999999;
}

.color-info {
  color: #48baff;
}

/* ****************** FAQ SECTION SOC ************************* */
.faq-box {
  padding: 50px;
}

/* ===================================================================================================================
                                             INQUIRY MODAL CSS START
====================================================================================================================== */
@media (min-width: 1200px) {
  .getQuoteModal.modal.show .modal-dialog.modal-xl {
    max-width: 1110px;
  }
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: absolute;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}

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

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

@keyframes blink {
  from {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wpcf7-spinner {
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  margin: unset;
  z-index: 1;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

/* ===================================================================================================================
                            FLOATING WHATSAPP and Back To Top CSS DATE : 29/1/24 Rutvi START
====================================================================================================================== */
/* FLOATING WHATSAPP CSS DATE : 29/1/24 Rutvi */
.floating-wpp {
  position: fixed;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  transition: bottom 0.2s;
}

.floating-wpp .floating-wpp-button {
  position: relative;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
  transition: box-shadow 0.2s;
  cursor: pointer;
  overflow: hidden;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
  position: absolute;
  width: 52px;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.floating-wpp:hover {
  bottom: 17px;
}

.floating-wpp:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.floating-wpp .floating-wpp-popup {
  border-radius: 6px;
  background-color: #e5ddd5;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
  width: 0;
  height: 0;
  bottom: 0;
  opacity: 0;
  transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
  transform-origin: bottom;
}

.floating-wpp .floating-wpp-popup.active {
  padding: 0 12px 12px;
  width: 260px;
  height: auto;
  bottom: 82px;
  opacity: 1;
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
  background-color: #fff;
  padding: 8px;
  border-radius: 0 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
  opacity: 1;
  transition-delay: 0.2s;
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
  text-align: right;
  color: #fff;
  margin: 0 -15px 10px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.floating-wpp .floating-wpp-input-message {
  background-color: #fff;
  margin: 10px -15px -15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.floating-wpp .floating-wpp-input-message textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  padding: 8px;
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  font-size: inherit;
  resize: none;
}

.floating-wpp .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}

.floating-wpp-head {
  padding-top: 0;
  padding-bottom: 0;
}

.floating-wpp-head span {
  font-size: 12px;
  font-weight: 700;
}

.floating-wpp-head .close {
  line-height: 1.6;
}

.floating-wpp-message {
  color: #212529;
  line-height: 1.2;
  font-weight: 500;
}

/*ADD CSS FOR LEFT BOTTOM ARROW DATE : 29/1/24 */
.back-to-top {
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ee9a02 url("./../images/angle-up-solid.svg") no-repeat center;
  background-size: 20px;
  line-height: 44px;
  display: inline-block;
  position: fixed;
  bottom: 0px;
  left: 0px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  display: none;
  font-size: 15px;
  margin: 25px;
  color: #fff;
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 35px;
    }
}
.back-to-top:hover {
  color: #fff;
}

.back-to-top i {
  font-weight: 700;
  font-size: 22px;
}

/* ===================================================================================================================
                            FLOATING WHATSAPP and Back To Top CSS DATE : 29/1/24 Rutvi END
====================================================================================================================== */

/* ===================================================================
              HIRE US / HIRE US DETAILS MODEL SECTION
=================================================================== */
/* HIRE MODEL STEPS SECTION */
.hire-model-steps-number {
  width: 115px;
  height: 115px;
  border-radius: 10px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hire-model-steps-wrapper {
  position: relative;
}

.hire-model-steps-number .h3 {
  transform: rotate(-45deg);
  display: inline-block;
}

.hire-phase-content-list>li:after {
  content: "";
  background-image: url("./../images/tick-symbol.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  width: 19px;
  height: 19px;
  top: 5px;
}

.hire-phase-content-list>li {
  padding-left: 35px;
}

.hire-phase-steps-wrapper {
  position: relative;
  padding-top: calc(290px - 120px);
}

/* =========================================================
               COMMON MODAL STYLING  
========================================================= */
/* / MODAL CSS 7-2-24 KARAN / / COMMAN MODAL CSS /  */
.modal-backdrop {
  background-color: var(--third-color);
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-close {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

/* / MODAL CSS 7-2-24 KARAN /  */
.getQuoteModal .modal-body {
  padding: 60px;
}

.calculator-container {
  border-right: 1px solid var(--main-text-shade7);
}

.calculator-container .calculator-title {
  padding-bottom: 40px;
}

.form-select2 .form-select {
  color: var(--main-yellow);
  padding-right: 50px !important;
}

.timing-btn-section {
  margin-top: 30px;
  max-height: 370px;
  overflow-y: auto;
}

.timing-btn-section .timing-btn-wrapper .btn {
  min-width: auto;
}

.timing-btn-section::-webkit-scrollbar {
  width: 6px;
}

.timing-btn-section::-webkit-scrollbar-track {
  background: var(--main-text-shade6);
  border-radius: 30px;
}

.timing-btn-section::-webkit-scrollbar-thumb {
  background: var(--main-text-shade8);
  border-radius: 30px;
}

.timing-btn-wrapper .btn-transparent {
  background-color: transparent;
  border-color: var(--main-text-shade7);
  color: var(--main-text-shade3);
}

.timing-btn-wrapper .btn-transparent:hover,
.timing-btn-wrapper .btn-transparent:focus {
  color: var(--main-white);
  border-color: var(--main-white);
}

/* / MODAL-2 CSS 8-2-24 KARAN /  */
.meeting-form-title {
  padding-bottom: 36px;
}

.meeting-form form .form-group {
  margin-bottom: 24px;
}

.meeting-form .form-label {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--main-white);
  margin-bottom: 8px !important;
  text-transform: capitalize;
}

.meeting-form .form-control,
.meeting-form .form-select {
  font-size: 18px;
  background-color: var(--primary-color);
  border-color: transparent;
  border-radius: 5px;
  padding: 18px 23px;
}

.meeting-form .form-select option {
  color: var(--main-white) !important;
}

.meeting-form .form-control:focus,
.meeting-form .form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  color: var(--main-white);
}

/** Placeholder CSS BOF **/
.meeting-form .form-control::placeholder,
.meeting-form .form-select::placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.meeting-form .form-control::-moz-placeholder,
.meeting-form .form-select::-moz-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.meeting-form .form-control:-ms-input-placeholder,
.meeting-form .form-select:-ms-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.meeting-form .form-control::-webkit-input-placeholder,
.meeting-form .form-select::-webkit-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.meeting-form .form-control::-o-input-placeholder,
.meeting-form .form-select::-o-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}

.meeting-form textarea.form-control {
  height: 100px;
}

/* NEW DATE PICKER DESIGN */

.datepicker td,
.datepicker th {
  text-align: center;
  width: calc(100% / 7);
  height: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
  color: var(--main-white);
  font-size: 18px;
}

.datepicker th {
  font-size: 20px;
  font-weight: 400;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: transparent;
  cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: var(--main-text-shade4);
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: var(--main-text-shade4);
  cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: var(--main-blue);
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: var(--main-yellow);
}

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: var(--main-yellow);
}

.datepicker table tr td.today.active:hover {
  color: var(--main-white);
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: var(--main-text-shade6);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: var(--main-yellow);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: var(--main-yellow);
}

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: var(--main-yellow);
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: var(--main-yellow);
  color: var(--main-white);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: var(--main-text-shade5);
}

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: var(--main-text-shade5);
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: var(--main-yellow);
  color: var(--main-white) !important;
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: var(--main-yellow);
}

/* comment 12-3-24 karan  datepicker-years first and last color issue*/
/* .datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: var(--main-text-shade6);
} */
.datepicker th.datepicker-switch {
  width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
  color: var(--main-white);
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: transparent;
}

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

.input-append.date .add-on i,
.input-prepend.date .add-on i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.input-daterange input {
  text-align: center;
}

.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 20px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 var(--main-white);
  vertical-align: middle;
  background-color: var(--main-text-shade4);
  margin-left: -5px;
  margin-right: -5px;
}

.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 12px 5px;
}

.datepicker .dow {
  color: var(--main-text-shade5);
  font-size: 16px;
}

.datepicker-months .prev,
.datapicker-months .next,
.datepicker-years .prev,
.datepicker-years .next {
  width: 58px;
}

.charset {
  box-shadow: 1px 1px 10px var(--main-black);
}

.app {
  width: 100%;
  height: auto;
}

.app:after {
  content: "";
  display: table;
  clear: both;
}

.app__side {
  background: var(--primary-color);
  width: 35%;
  height: 100%;
  padding: 40px;
  float: left;
  color: var(--main-yellow);
}

.app__main {
  background: transparent;
  width: 100%;
  height: 100%;
}

.calendar .datepicker {
  width: 100%;
}

.calendar .datepicker table {
  width: 100%;
}

/* CALENDAR MONTH AND YEAR CSS ADD 12-3-24 */
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: var(--main-yellow);
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: rgb(153, 153, 153);
  cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: var(--main-yellow);
}

.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: var(--main-yellow);
}

/* STYLING FOR CUSTOM COUNTRY CODE DROPDOWN  */

.select-menu {
  width: 100px;
}

.mobile-field .form-control {
  /* border-left: 0; */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  /* width: calc(100% - 100px); */
  width: 100%;
}

.select-menu .select-btn {
  display: flex;
  background: transparent;
  padding: 18px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--main-white);
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.select-menu .options {
  position: absolute;
  width: 100px;
  overflow-y: auto;
  max-height: 295px;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--main-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  align-items: center;
  background: var(--main-white);
}

.select-menu .options .option:hover {
  background: var(--main-text-shade8);
}

.select-menu .options .option .option-text {
  font-size: 16px;
  color: var(--primary-color);
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

.sBtn-text {
  /* color: var(--main-black); */
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

/* ********************* SERVICE SECTION SOC ****************** */
.technology-type-box {
  padding: 40px;
}

/* FORM CONTACT NUMBER FILLED KARAN - 8-3-24 */
.mobile-field>p {
  display: flex;
  align-items: baseline;
  width: 100%;
}

/*.mobile-field > p span.wpcf7-form-control-wrap:last-child {
  width: calc(100% - 100px);
}
.mobile-field > p span.wpcf7-form-control-wrap:first-child {
  width: 100px;
}*/
.mobile-field>p span.wpcf7-form-control-wrap .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  line-height: normal;
  width: 100px;
  padding: 19px 16px;
  height: 100%;
}

/* BLOG PAGE IMG HEIGHT ALIGN 11-3-24 KARAN START */
.blog-listing .blog-box .blog-box-img img,
.blogs-sec .blog-box .blog-box-img img {
  min-height: 265px;
  max-height: 265px;
}

.resource-box:not(:first-child) {
  margin-left: -25px !important;
}

a:hover {
  color: inherit;
}

.grecaptcha-badge {
  visibility: hidden;
}

.ecommerce-checkbox .wpcf7-list-item {
  width: calc(100% / 2);
  margin: 0px;
}

/* TYPEING ANIMATION WITH LIBRARY */
/* =============================================== */
.typed-cursor:after {
  content: "|";
  opacity: 1;
  display: block;
}

.typed-cursor {
  opacity: 1;
  font-weight: 100;
  display: inline-block;
}

@media (max-width: 1199px) {
  .typed-cursor {
    font-weight: 300;
  }
}

.typed-cursor.typed-cursor--blink:after {
  animation: 0.7s infinite typedjsBlink;
  -webkit-animation: 0.7s infinite typedjsBlink;
  animation: 0.7s infinite typedjsBlink;
}

@keyframes typedjsBlink {
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes typedjsBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}




/*  FOOTER FORM COUNTRY FIELD CSS KARAN 20/5/24 */
.mobile-field .form-control {
  width: 100%;
  border-radius: 0 10px 10px 0;
}

.mobile-field>p {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.mobile-field>p span.wpcf7-form-control-wrap .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  line-height: normal;
  width: 100px;
  padding: 19px 16px;
  height: 100%;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti__flag-box,
.iti__country-name {
  color: var(--main-black);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code,
.iti__flag-box,
.iti__country-name,
.iti__dial-code,
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  width: 100%;
  z-index: 9;
  padding: 0px;
}

.mobile-field .wpcf7-form-control-wrap:last-child {
  width: 100%;
}

.mobile-field .wpcf7-form-control-wrap .iti--allow-dropdown #mobile_code, .mobile-field .wpcf7-form-control-wrap .iti--allow-dropdown #mobile_code_newsletter {
  width: 0;
  border-radius: 10px 0 0px 10px;
  border-right: 0px;
  padding-left: 75px !important;
  position: relative;
  z-index: -1;
  visibility: hidden;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border: 1px solid var(--main-text-shade6);
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.iti--separate-dial-code .iti__selected-flag[aria-expanded="true"] {
  border-color: var(--main-yellow);
}

@media (max-width: 767px) {

  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code,
  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code,
  .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
  }

  .iti__country-list {
    min-width: 300px;
  }
}


/* ============================================
============================================
          AUGUST MONTH CHANGES
============================================
============================================ */


/* LOCATION SECTION --- AUG 8 , 2025 */
.location-sec {
  background-color: #171717;
}

.location-sec .location-wrapper .location-col {
  border: 1px solid #565656;
  border-radius: 20px;
  background-color: #1D1D1D;
  padding: 20px;
  height: 100%;
}

/* CONTACT INFOR MODAL --- AUG 11,2025 */
.contact-info-modal .modal-dialog {
  max-width: 550px;
}

.contact-info-modal .contact-info-list {
  max-width: 320px;
  margin: auto;
}

.contact-info-modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.contact-info-modal .contact-info-form {
  max-width: 500px;
  background-color: #fffcf8;
  border-radius: 10px;
  padding: 10px 30px 16px;
  margin: auto;
}

.contact-info-modal .contact-info-form input,
.contact-info-modal .contact-info-form textarea {
  border-bottom: 1px solid #212121 !important;
  border-radius: 0;
  border: none;
  color: #000;
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
}

.contact-info-modal .contact-info-form textarea {
  height: auto;
}

.contact-info-modal .contact-info-form input::placeholder,
.contact-info-modal .contact-info-form textarea::placeholder {
  color: #a1a1a1;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.contact-info-modal .contact-info-form .btn {
  padding: 10px 15px;
  min-width: 125px;
  font-size: 16px;
}

.contact-info-mobile .iti {
  width: 100%;
}

.contact-info-mobile .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border: transparent !important;
}

.contact-info-mobile .iti__selected-dial-code {
  color: #000;
  font-size: 14px;
  min-width: 35px !important;
}

.contact-info-mobile .iti__flag-container {
  width: 100px !important;
}

.contact-info-mobile .iti--allow-dropdown input {
  padding-left: 50px !important;
}

.contact-info-mobile .iti__selected-flag, .contact-info-mobile .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  padding: 0;
  background-color: transparent;
}

.contact-info-mobile .iti__country-list {
  width: 280px;
}

.contact-info-mobile span.iti__country-name {
  color: #000;
}

/* BANNER SECTION REVIEW CSS ---- START */
.hero-banner-reviews {
  background: rgb(255 255 255 / 14%);
  max-width: max-content;
  margin: auto;
  gap: 40px;
  border: 1px solid #9E9E9E;
  padding: 28px 40px;
  border-radius: 30px;
}




/* BANNER CONTACT INFO ANIMATION ---- START */

.contact-info .contact-info-links {
  background-color: #fff;
  border-radius: 100%;
  padding: 16px;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: fixed;
  /* top: 50%; */
  top: calc(50% + 60px);
  right: 0;
  /* transform: translate(0px,-70px); */
  transform: translate(-30px, -200px);
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  z-index: 9;
  transition: all 400ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.contact-info .contact-info-links.show {
  transform: translate(-40px, -230px);
  opacity: 1;
  visibility: visible;
}

.contact-info-btn {
  display: flex;
  align-items: center;
  position: fixed;
  margin: auto;
  background: #ff55a1;
  font-size: 16px;
  padding: 10px 9px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: -6px;
  word-spacing: -7px;
  color: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  height: 183px;
}


.contact-info .contact-info-links:nth-child(2) {
  transform: translate(-100px, -145px);
}

.contact-info .contact-info-links:nth-child(2).show {
  transform: translate(-110px, -145px);
}

.contact-info .contact-info-links:nth-child(3) {
  transform: translate(-100px, -40px);
}

.contact-info .contact-info-links:nth-child(3).show {
  transform: translate(-110px, -40px);
}

.contact-info .contact-info-links:nth-child(4) {
  transform: translate(-20px, 50px);
}

.contact-info .contact-info-links:nth-child(4).show {
  transform: translate(-30px, 50px);
}


/* CONTACT INQUIRY INFO MODAL STEPS CSS */
.form-step {
  display: none !important;
}

.form-step.active {
  display: flex !important;
}