/** Importing fonts **/
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Manrope:wght@200;300;400;500;600;700;800&family=Vampiro+One&display=swap"); */

/** Global CSS styles **/
:root {
  --color-primary: #2290f6;
  --color-secondary: #ff7b23;
  --color-text-dark: #222222;
  --color-text-light: #ffffff;
  --color-text-gray: #7e7e7e;
  --color-background-dark: #2d2d2d;
  --color-background-light: #ffffff;
  --color-background-accent: #ecf6ff;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Manrope", sans-serif;
  --font-display: "Vampiro One", cursive;
  --white: #fff;
  --black: #000;

  --button-hover: #0084ff;
  /* --color-primary: #03306f;
  --secondary-color: #0f5d9a;
  --tertiary-color: #fc0;
  --accent-color: #333;
  --neutral: #547bc0;
  --error: #bd250e;
  --white: #fff;
  --black: #000;
  --placeholder-color: #333;
  --text-color: #333;

  --primary-font: "Manrope", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --tertiary-font: "DM Sans", sans-serif;
  --accent-font: "Inter", sans-serif; */

  --line-height: 18px;

  --h1: 3rem;
  --h2: 2rem;
  --h3: 1.75rem;
  --h4: 1.4rem;
  --h5: 1.25rem;
  --h6: 1.1rem;

  --h1-mb: 1rem;
  --h2-mb: 0.875rem;
  --h3-mb: 0.7rem;
  --h4-mb: 0.6rem;
  --h5-mb: 0.5rem;
  --h6-mb: 0.3rem;

  --drop-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  --text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  --box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
  --box-shadow-hover: 0px 3px 7px rgba(0, 0, 0, 0.3);

  --border-radius-1: 10px;
  --border-radius-2: 14px;
  --border-radius-3: 16px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 600;

  @media (max-width: 767px) {
    --h1: 2rem;
    --h2: 1.7rem;
    --h3: 1.6rem;
    --h4: 1.5rem;
    --h5: 1.4rem;
    --h6: 1.2rem;

    --h1-mb: 1rem;
    --h2-mb: 1.8rem;
    --h3-mb: 0.875rem;
    --h4-mb: 0.75rem;
    --h5-mb: 0.625rem;
    --h6-mb: 0.5rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  margin: 0;
  color: var(--color-text-dark);

  font-size: var(--paragraph-fs);
  line-height: var(--line-height);
  color: var(--paragraph-color);
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}
.font-primary {
  font-family: var(--primary-font);
}
.font-secondary {
  font-family: var(--secondary-font);
}
.font-accent {
  font-family: var(--accent-font);
}
.color-primary {
  color: var(--color-primary) !important;
}
.color-secondary {
  color: var(--secondary-color) !important;
}
.color-accent {
  color: var(--accent-color) !important;
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.text-shadow {
  text-shadow: var(--text-shadow);
}
/** overlay **/
.overlay {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.overlay::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  user-select: none;
  pointer-events: none;
}
ul,
p {
  padding: 0;
  margin: 0;
}
p {
  margin-bottom: 15px;
  line-height: 1.5rem;
}
ul {
  list-style-position: inside;
}
ol li,
ul li {
  line-height: 1.5 !important;
}
a:hover {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  color: var(--black);
  line-height: 1.2;
  padding: 0;
  font-weight: var(--);
  transition: all 0.3s ease;
}
h1 {
  font-size: var(--h1);
  font-weight: 500;
  margin-bottom: var(--h1-mb);
}
h2 {
  font-size: var(--h2);
  margin-bottom: var(--h2-mb);
}
h3 {
  font-size: var(--h3);
  margin-bottom: var(--h3-mb);
}
h4 {
  font-size: var(--h4);
  margin-bottom: var(--h4-mb);
  color: var(--black);
}
h5 {
  font-size: var(--h5);
  margin-bottom: var(--h5-mb);
}
h6 {
  font-size: var(--h6);
  margin-bottom: var(--h6-mb);
}
a {
  text-decoration: none;
  color: var(--paragraph-color);
  transition: all 0.3s ease;
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 10px !important;
  align-items: center !important;
  text-wrap: nowrap;
}
a span,
li a span {
  text-wrap: nowrap;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-clamp: 3;
  box-orient: vertical;
  display: box;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-clamp: 2;
  box-orient: vertical;
  display: box;
}
.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-top-start {
  background-position: top left;
}
/**span hover**/
span.hover-underline,
p.hover-underline,
footer ul li a {
  position: relative;
  display: inline-block;
}
span.hover-underline::after,
p.hover-underline::after,
footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s ease, left 0.5s ease;
}
span.hover-underline:hover::after,
p.hover-underline:hover::after,
footer ul li a:hover::after {
  width: 100%;
  left: 0;
}
/**----------------------------------------------------------------- button variant --------------------- **/
button {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 7px;
  align-items: center;
  text-wrap: nowrap;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--color-primary);
  font-family: var(--accent-font);
  outline: none;
  border: none;
  color: var(--white);
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
button:hover {
  /* box-shadow: 0px 3px 7px rgba(147, 147, 147, 0.5); */
  background-color: var(--button-hover);
}

/** ---------------------------------- link variant -------------------  **/
.link {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px !important;
  align-items: center;
  text-wrap: nowrap;
  justify-content: center;
  font-family: var(--accent-font);
  outline: none;
  font-weight: 600;
  color: var(--black) !important;
  font-weight: 400 !important;
  gap: 0px !important;
  img {
    transform: translateX(0);
    transition: all 0.2s ease-in-out;
  }
  span {
    transition: all 0.2s ease-in-out;
  }
}
.link:hover span {
  color: var(--color-primary);
}

.link:hover img {
  transform: translateX(2px);
  filter: invert(43%) sepia(92%) saturate(4661%) hue-rotate(199deg)
    brightness(96%) contrast(96%);
}
.link-variant-2 {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px !important;
  align-items: center;
  text-wrap: nowrap;
  justify-content: center;
  font-family: var(--accent-font);
  outline: none;
  font-weight: 600;
  color: var(--white) !important;
}

.link-variant-2:hover {
  color: var(--tertiary-color) !important;
}

.link:hover {
  color: var(--secondary-color) !important;
}

button span {
  margin-top: -2px;
}

button i,
button img,
.link i,
.link img {
  height: 20px !important;
  width: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link iconify-icon {
  font-size: 17px;
  margin-top: -4px;
}

.link-variant-2 iconify-icon {
  font-size: 20px;
  margin-top: -4px;
}

.link-variant-2 i {
  font-size: 18px;
}

/** ++++++++++++++++++++++++++++  slick / Glightbox css starts here +++++++++ **/
.slick-track {
  margin: 0px;
}
/**glight-box css starts here**/
.glightbox-clean .gclose {
  border-radius: 50%;
  padding: 10px;
}
/** ++++++++++++++++++++++++++++  slick / Glightbox css starts here +++++++++ **/

/* Bottom-right tilt */
.tilt-bottom-right {
  --tilt-desktop: 90%;
  --tilt-mobile: 95%;

  clip-path: polygon(0 0, 100% 0, 100% var(--tilt-desktop), 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% var(--tilt-desktop), 0 100%);
  padding-bottom: 100px;

  @media (max-width: 767px) {
    clip-path: polygon(0 0, 100% 0, 100% var(--tilt-mobile), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% var(--tilt-mobile), 0 100%);
    padding-bottom: 80px;
  }
}

/* Bottom-left corner tilt */
.tilt-bottom-left {
  --tilt-desktop: 90%;
  --tilt-mobile: 95%;

  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-desktop));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-desktop));
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .tilt-bottom-left {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-mobile));
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--tilt-mobile));
    padding-bottom: 80px;
  }
}

/* Top-left tilt */
.tilt-top-left {
  --tilt-desktop: 10%;
  --tilt-mobile: 5%;

  clip-path: polygon(0 var(--tilt-desktop), 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 var(--tilt-desktop), 100% 0, 100% 100%, 0 100%);
  padding-top: 100px;

  @media (max-width: 767px) {
    clip-path: polygon(0 var(--tilt-mobile), 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 var(--tilt-mobile), 100% 0, 100% 100%, 0 100%);
    padding-top: 60px;
  }
}

/* Top-right tilt */
.tilt-top-right {
  --tilt-desktop: 10%;
  --tilt-mobile: 5%;

  clip-path: polygon(0 0, 100% var(--tilt-desktop), 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% var(--tilt-desktop), 100% 100%, 0 100%);
  padding-top: 100px;

  @media (max-width: 767px) {
    clip-path: polygon(0 0, 100% var(--tilt-mobile), 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% var(--tilt-mobile), 100% 100%, 0 100%);
    padding-top: 80px;
  }
}

/* Top-Right + Bottom-Left tilt */
.tilt-tl-br {
  --tilt-desktop: 3%;
  --tilt-mobile: 1%;

  clip-path: polygon(
    0 var(--tilt-desktop),
    100% 0,
    100% calc(100% - var(--tilt-desktop)),
    0 100%
  );
  -webkit-clip-path: polygon(
    0 var(--tilt-desktop),
    100% 0,
    100% calc(100% - var(--tilt-desktop)),
    0 100%
  );
  padding: 100px 0;
}

@media (max-width: 767px) {
  .tilt-tl-br {
    clip-path: polygon(
      0 var(--tilt-mobile),
      100% 0,
      100% calc(100% - var(--tilt-mobile)),
      0 100%
    );
    -webkit-clip-path: polygon(
      0 var(--tilt-mobile),
      100% 0,
      100% calc(100% - var(--tilt-mobile)),
      0 100%
    );
    padding: 60px 0px;
  }
}

/* Top-Left + Bottom-Right tilt */
.tilt-tr-bl {
  --tilt-desktop: 3%;
  --tilt-mobile: 1%;

  clip-path: polygon(
    0 0,
    100% var(--tilt-desktop),
    100% 100%,
    0 calc(100% - var(--tilt-desktop))
  );
  -webkit-clip-path: polygon(
    0 0,
    100% var(--tilt-desktop),
    100% 100%,
    0 calc(100% - var(--tilt-desktop))
  );
  padding: 100px 0;
}

@media (max-width: 767px) {
  .tilt-tr-bl {
    clip-path: polygon(
      0 0,
      100% var(--tilt-mobile),
      100% 100%,
      0 calc(100% - var(--tilt-mobile))
    );
    -webkit-clip-path: polygon(
      0 0,
      100% var(--tilt-mobile),
      100% 100%,
      0 calc(100% - var(--tilt-mobile))
    );
    padding: 60px 0px;
  }
}

/**----------------------------        body css starts here      -------------------------------**/
section,
footer {
  overflow-x: hidden;
  overflow-y: visible;
}
section,
footer {
  padding: 80px 0px;

  @media (max-width: 767px) {
    padding: 80px 0px;
  }
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #1a2a4a 0%,
    #2f4e79 20%,
    #3a6ea5 40%,
    #5b89c2 60%,
    #7da7d9 80%,
    #a8c6f0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/** ------------------------------------------- Form style ------------------------------------ **/
.form-select,
.form-control {
  border-radius: 8px;
  padding: 14px 20px;
  transition: all 0.3s ease;
  color: var(--placeholder);
  font-family: var(--accent-font);
  font-size: var(--paragraph-fs);
  font-weight: 500;
  line-height: 20px;
  border: 1.5px solid #b6b6b6;
}
.form-select-2,
.form-control-2 {
  padding: 7px 13px !important;
  width: fit-content;
}
textarea.form-control {
  border-radius: 8px;
}
.form-check-input {
  margin-top: 0px;
  border: 1px solid var(--input-border) !important;
}
.form-check {
  display: flex;
  align-items: center;
  padding: 10px 0px 0px 0px;
}
.form-check .form-check-input {
  margin-left: 0px;
}
.form-check-label {
  margin-left: 5px;
}
.option {
  color: #a5b1bf !important;
}
/** ------------------------------------------- Form style ------------------------------------ **/

/** ------------------------------------------- Table style ------------------------------------ **/

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  margin-bottom: 20px;
}

thead {
  background-color: var(--color-primary);
  color: var(--tertiary-color);
}

tr,
td,
th {
  border: 1px solid #000;
  padding: 16px 30px;

  @media (max-width: 767px) {
    padding: 7px 14px;
  }
}

/** ------------------------------------------- Table style ------------------------------------ **/

/** ------------------------------------------- Main ------------------------------------ **/

/**header css starts here **/
header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  /* background-color: transparent !important; */
  transition: all 0.5s ease !important;
}

/* header {
  z-index: 10;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent !important;
  transition: all 0.3s ease !important;
} */
header.sticky {
  position: fixed;
  background-color: var(--white) !important;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 3px 15px rgba(150, 150, 150, 0.2);

  @media (max-width: 767px) {
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  padding: 7px 0px;
}
.logo img {
  height: 70px;
  transition: height 0.5s ease;

  @media (max-width: 767px) {
    height: 70px;
  }
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li > a {
  color: var(--white);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  font-weight: 650;
  transition: all 0.3s ease;
}
nav ul li > a span {
  position: relative;
}
nav ul li:hover > a i {
  color: var(--white);
}
nav ul li > a span::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.dark-link {
  color: var(--black) !important;
}
.light-link {
  color: var(--white) !important;
  @media (max-width: 767px) {
    color: var(--black) !important;
  }
}

/* nav ul li:hover > a {
  color: #d3d3d3 !important;
} */
nav ul li:hover > a span::after {
  width: 100%;
}
.nav-list-item.active > a {
  color: var(--color-primary) !important;
}
.nav-list-item.active > a i {
  color: var(--color-primary);
}
nav ul li a i {
  font-size: 12px;
  transition: all 0.3s ease;
  color: var(--white);
}
/* nav ul li:hover a i {
  color: var(--color-primary);
} */
.nav-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.nav-list-item {
  padding: 14px 0px;
  position: relative;
}
.nav-child-list {
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  flex-direction: column;
  width: fit-content;
  box-shadow: 2px 3px 10px rgb(46 46 46 / 20%);
  background-color: var(--white);
  padding: 16px;
  gap: 0;
  transform: translate(3px, 3px);
  transition: all 0.3s ease-in-out;
  border-top: 1px solid var(--tertiary-color);
  /* border-radius: 0px 0px 7px 7px; */
  border-radius: 7px;
}
.nav-second-child-list {
  top: 100%;
  min-width: 100%;
  left: 0;
  z-index: 2;
  pointer-events: none;
  flex-direction: column;
  width: fit-content;
  padding: 0;
  padding-left: 24px;
  padding-bottom: 7px !important;
  gap: 0;
  transition: all 0.3s ease-in-out;
}
.nav-second-child-list li {
  border-bottom: 1px solid #f3f3f3;
}
.nav-second-child-list li:last-child {
  border-bottom: none;
}
.nav-second-child-list li a {
  padding: 3px 0px !important;
}
.nav-second-child-list li a span {
  text-wrap: wrap !important;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-child-list .nav-child-list-item {
  border-bottom: 1px dashed var(--grey);
}
.nav-child-list .nav-child-list-item a {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  color: var(--black) !important;
}
.nav-child-list .nav-child-list-item a iconify-icon {
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  @media (max-width: 767px) {
    font-size: 20px;
  }
}
.nav-child-list .nav-child-list-item:last-child {
  border-bottom: none;
}
.nav-child-list .nav-child-list-item,
.nav-child-list li:last-child {
  border-radius: 0px;
  margin: 0;
}
.nav-list-item:hover {
  cursor: pointer;
}
.nav-list-item:hover i,
.nav-child-list-item:hover i {
  transform: rotate(-180deg);
}
nav ul li ul li:hover {
  background-color: var(--light-grey);
}
.nav-child-list-item:hover a {
  color: var(--color-primary) !important;
}
nav ul li ul li a {
  text-wrap: nowrap;
  padding: 7px 10px;
}
nav ul li:hover ul li a {
  color: var(--black);
}
/**css for hamberger menu and navbar starts --mobile menu --**/
.hamberger-menu {
  padding: 6px 8px 6px 8px;
  border-radius: 7px;
  display: none;

  @media (max-width: 767px) {
    display: inline-flex;
    justify-content: center;
    align-content: center;
  }
}
.hamberger-menu:hover {
  cursor: pointer;
}
.hamberger-menu i {
  font-size: 24px;
}
.mobile-logo,
.nav-close-icon {
  display: none;
}
@media (max-width: 767px) {
  .nav-close-icon {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    display: block;
    background-color: var(--white);
    transform: translateX(100%);
    width: 70%;
    height: 100vh;
    padding: 30px;
    transition: transform 0.5s ease-in-out;
  }
  .menu-active {
    transform: translateX(0);
  }
  .nav-item-wrapper {
    max-height: calc(100vh - 136px);
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-item-wrapper::-webkit-scrollbar {
    display: none;
  }
  .mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 24px;
    top: 0;
    left: 0;
    background-color: var(--white);
  }
  .mobile-logo img {
    width: 210px;
  }
  .nav-list {
    flex-direction: column;
    align-items: start;
    gap: 7px;
    z-index: 5;
    padding: 60px 10px 100px 10px;
  }
  .nav-list-item {
    width: 100%;
    padding: 16px 0px;
  }
  .nav-list-item a {
    justify-content: space-between;
    padding: 13px 0px;
    color: black !important;
    display: flex !important;
  }
  .nav-list-item:last-child a {
    display: inline-flex;
  }
  .nav-list > .nav-list-item {
    padding: 0;
  }
  .nav-child-list {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0;
    box-shadow: none;
    background-color: #f8f8f8;
    border-radius: 0;
    gap: 0;
    border-radius: var(--border-radius-1);
    padding: 7px 18px;
  }
  .nav-list-item a i {
    margin-right: 10px;
  }
  .nav-child-list-item a {
    border-bottom: 1px solid var(--white);
    border-radius: 0 !important;
    padding: 10px 0px !important;
    width: 100%;
    color: var(--black) !important;
  }
  .nav-child-list-item {
    border-bottom: 1px solid var(--white);
    border-radius: 0 !important;
    padding: 0 !important;
  }
  .nav-child-list-item:hover {
    background-color: transparent;
  }
  .nav-child-list-item a:hover {
    color: #2253a5;
  }
  .nav-child-list li a {
    margin: 0;
    border-bottom: 0 !important;
  }
  .nav-close-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    padding: 5px 8px 3px 8px;
    border-radius: 7px;
    z-index: 999;
  }
  .nav-close-icon:hover {
    cursor: pointer;
  }
  .nav-close-icon i {
    font-size: 24px;
    color: var(--black);
  }
  .nav-list-item .nav-child-list {
    position: relative;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    transform: translateY(0);
    margin: 0;
    box-shadow: none;
    background-color: #f5f5f5;
    border-radius: var(--border-radius-1);
    gap: 0;
    padding: 5px 18px;
    max-height: 0;
    transition: max-height 0.5s ease;
    overflow: hidden;
  }
  .nav-list-item.active .nav-child-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-child-list-item a.active {
    color: var(--color-primary);
    font-weight: 600;
  }
  .nav-child-list-item a span {
    font-size: 15px;
  }
}

/**header css ends here **/

/**slider button **/
.scroll-btn {
  color: #444 !important;
}
.scroll-btn,
.scroll-btn-variant-2 {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  background: linear-gradient(118deg, #ececec 9.87%, #e5e3e3 101.65%);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: none;
  flex-shrink: 0;
  svg {
    display: none;
  }
}
.scroll-btn i {
  width: 28px;
  height: 28px;
  color: #444 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.scroll-btn-variant-2 iconify-icon {
  width: 28px;
  height: 28px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.scroll-btn iconify-icon,
.scroll-btn-variant-2 iconify-icon {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.scroll-btn iconify-icon,
.scroll-btn-variant-2 iconify-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.5px;
}
.scroll-btn:hover {
  background: var(--color-primary);
  box-shadow: none;
}
.scroll-btn-variant-2:hover {
  background: var(--tertiary-color) !important;
  box-shadow: none;
}
.scroll-btn:hover i,
.scroll-btn:hover iconify-icon {
  color: var(--white);
}
@media (max-width: 767px) {
  .bg-mobile-bottom-center {
    background-position: bottom center;
  }
}
/** -----------------------------         text quote wrapper for first and last word ---------------------- **/
.text-quote .first-word,
.text-quote .last-word {
  position: relative;
  display: inline-block;
}
.text-quote .first-word::before {
  position: absolute;
  content: url("../assets/icons/quote-start.svg");
  top: -2px;
  left: -18px;
  transform: scale(0.8);
}
.text-quote .last-word::before {
  position: absolute;
  content: url("../assets/icons/quote-end.svg");
  top: -2px;
  right: -18px;
  transform: scale(0.8);
}
/** -----------------------------         text quote wrapper for first and last word ---------------------- **/

/** -------------------------------        back to Top css -----------------------------------------------  **/

.back-to-top {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 60px;
  height: 36px;
  border-radius: 3px 3px 0 0;
  background-color: var(--tertiary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  background-color: #ee5f00;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 18px 10px 30px 10px;
  margin-bottom: -10px;
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-ring-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2px;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s;
}
.back-to-top:hover .arrow {
  border-color: var(--black);
}
.scroll-indicator {
  width: 100%;
  height: 1px;
  z-index: 1001;
  opacity: 0.8;
}
.scroll-progress {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.1s;
}
.back-to-top .arrow svg {
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.5));
}

/** -------------------------------        back to Top css -----------------------------------------------  **/

/** ----------------------------------  custom css --------------------------**/
/* CSS for section section:Hero */
.hero-section {
  /* background-image: url("images/hero-poster.png");
  background-size: cover;
  background-position: center; */
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
  min-height: 90vh;
  padding-bottom: 80px;
  overflow: visible;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-content {
  position: relative;

  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  @media (max-width: 767px) {
    gap: 24px;
    h1 {
      margin: 10px;
    }
  }
}
.hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-text-light);
  max-width: 1108px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
.hero-search-bar {
  background-color: var(--color-background-light);
  outline: 4px solid rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 662px;
  height: 51px;
  padding: 4px;
  box-sizing: border-box;
}
.search-category {
  background-color: #eaeaea;
  border-radius: 24px 1px 1px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 8px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  font-weight: 500;
}
.search-category:hover {
  background-color: #dfdfdf;
}

.category-dropdown-menu li a {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #ebebeb !important;
}
.category-dropdown-menu {
  max-height: 500px;
  overflow-y: auto;
  z-index: 999999 !important;
}
.category-dropdown-menu .dropdown-item.active,
.dropdown-item:active {
  color: var(--paragraph-color) !important;
}
.search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 16px;
  font-family: var(--font-primary);
  background: transparent;
}
.search-button {
  background-color: var(--color-primary);
  border: none;
  border-radius: 24px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 25px;
  margin: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.hero-popular-search {
  color: var(--color-text-light);
  font-size: 16px;
}
.popular-search-title {
  font-weight: 700;
}
.popular-search-tags {
  font-weight: 500;
}
.btn-group {
  height: 100%;
}
.category-search-button {
  height: 100%;
}
@media (max-width: 768px) {
  .btn-group {
    position: relative;
    width: 100%;
  }
  .category-dropdown-menu {
    width: 100% !important;
  }
  .hero-search-bar {
    outline: none;
  }
  .hero-section {
    padding: 150px 0 40px 0px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 32px;
  }
  .hero-search-bar {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    background: transparent;
    border: none;
    gap: 10px;
  }
  */ .service-input {
    background: #ffffff !important;
    padding: 16px 20px !important;
    width: 100%;
    border-radius: 24px;
  }

  .search-category,
  .search-input,
  .search-button {
    width: 100%;
    border-radius: 24px;
    box-sizing: border-box;
  }
  .search-category {
    justify-content: center;
    height: 50px;
  }
  .search-input {
    height: 50px;
    background: white;
    text-align: center;
  }
  .category-search-button {
    height: 50px;
    justify-content: center;
    /* position: absolute;
    bottom: 86px;
    right: 0; */
    width: 100%;
  }
}

/* CSS for section section:Jobs */
.jobs-section {
  padding: 60px 0;
  background-color: var(--color-background-light);
}
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
  @media (max-width: 767px) {
    margin-bottom: 18px;
  }
}
.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  color: #000;
}
.jobs-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.jobs-view-all img {
  transform: rotate(-90deg);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.job-card {
  background-color: var(--color-background-light);
  border-radius: 7px;
  /* box-shadow: 0px 3px 10px 0px rgba(146, 141, 141, 0.25); */
  box-shadow: 0px 2px 12px rgb(215 215 215);
  padding: 20px;
  display: flex !important;
  flex-direction: column !important;
}
.job-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px; /* 20-14 */
}
.job-company-logo {
  width: 50px;
  height: 50px;
}
.job-company-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.job-company-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.job-company-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.job-location {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-text-gray);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.job-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.job-tag {
  background-color: #d9edff;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 24px;
}
.job-description {
  font-size: 12px;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-top: -4px; /* 10-14 */
}
.job-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.job-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--color-text-dark);
}
.job-details li i {
  font-size: 14px;
  color: var(--paragraph-color);
}
.job-details li img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.job-card-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.job-card-footer a {
  flex-grow: 1;
}
.job-apply-btn {
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-outline {
  background-color: #f0f0f0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-outline:hover {
  background-color: #555;
  color: var(--white);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

/* CSS for section section:About */
.about-section .image-wrapper img {
  width: 100%;
}
.about-section {
  background-color: rgba(0, 0, 0, 0.79);
}

.about-subtitle {
  font-size: 18px;
  font-weight: 400;
}
.about-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  /* padding-left: 80px; */
  padding-left: 40px;
  @media (max-width: 767px) {
    gap: 0px;
    padding-left: 0px;
  }
}
.about-description {
  color: var(--white);
}

/* CSS for section section:Services */
.services-section {
  position: relative;
}
.deco-ellipse-1 {
  position: absolute;
  top: 10px;
  left: -99px;
  width: 209px;
  height: 209px;
  z-index: -1;
}
.deco-ellipse-2 {
  position: absolute;
  bottom: 0px;
  right: -66px;
  width: 166px;
  height: 166px;
  z-index: -1;
}
.services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  @media (max-width: 767px) {
    gap: 30px;
  }
}
.services-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.service-card {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
  padding: 50px 30px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  transform: scale(1);
  background-color: white;
  transition: all 0.2s ease-in-out;
}
.service-card:hover {
  transform: scale(1);
  box-shadow: 0px 0px 10px rgb(226 226 226);
  z-index: 1;
}
.service-card a {
  font-weight: 400 !important;
  gap: 0px !important;
  img {
    transform: translateX(0);
    transition: all 0.2s ease-in-out;
  }
  /* span {
    color: var(--color-primary);
  } */
}
/* .service-card a img {
  filter: invert(43%) sepia(92%) saturate(4661%) hue-rotate(199deg)
    brightness(96%) contrast(96%);
} */
.service-card a:hover img {
  transform: translateX(2px);
}
/* .service-card a {
  transform: translateY(10px);
  opacity: 0;
} */

/* .service-card:hover a {
  animation: fadeIn 0.3s forwards;
}

.service-card:not(:hover) a {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
} */

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
}
.services-grid .service-card:nth-child(4n) {
  border-right: none;
}
.services-grid .service-card:nth-child(n + 5) {
  border-bottom: none;
}
.service-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon-wrapper img {
  width: 26px;
  height: auto;
}
.service-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:nth-child(2n) {
    border-right: none;
  }
  .services-grid .service-card:nth-child(n + 7) {
    border-bottom: none;
  }
  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(4) {
    border-bottom: 1px solid #eeeeee;
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    border: none;
  }
  .service-card {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .services-grid .service-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .service-card {
    box-shadow: 1px 3px 24px rgb(129 128 128 / 16%);
    background-color: var(--white);
  }
  .services-container .section-title {
    margin: 0;
  }
}

/* CSS for section section:Achievements */
.achievements-section {
  background-image: url("images/ca7736d51a5ac9205b4327a00adfdf9772562422.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
  position: relative;
  padding: 125px 0px;
  @media (max-width: 767px) {
    padding: 60px 0px;
  }
}
.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.achievements-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.achievements-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
}
.achievements-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ffffff30;
  border-top: 1px solid #ffffff30;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .achievement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .achievement-grid > div {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .achievement-grid > div:nth-child(2n) {
    border-right: none;
  }

  .achievement-grid > div:nth-child(n + 3) {
    border-bottom: none;
  }
}
.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 20px 40px;
}
.achievement-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-light);
}
.achievement-divider {
  width: 64px;
  height: 3px;
  background-color: rgba(54, 190, 0, 0.3);
  margin-top: -8px; /* 16-24 */
}
.achievement-label {
  font-size: 20px;
  font-weight: 600;
  color: #dfdfdf;
}
@media (max-width: 992px) {
  .achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .achievements-title {
    font-size: 28px;
  }
  .achievement-number {
    font-size: 32px;
  }
  .achievement-label {
    font-size: 18px;
  }
}

/* CSS for section section:HowItWorks */

.how-it-works-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  @media (max-width: 767px) {
    gap: 40px;
  }
}
.how-it-works-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  max-width: 655px;
  line-height: 1.2;
}
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  @media (max-width: 767px) {
    gap: 40px;
  }
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;

  @media (max-width: 767px) {
    padding: 0px 40px;
  }
}
.process-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 11px;
}
.process-icon-wrapper.style-1 {
  background-color: var(--color-background-accent);
}
.process-icon-wrapper.style-2 {
  background-color: var(--color-primary);
}
.process-icon-wrapper img {
  width: 31px;
  height: 31px;
}
.process-title {
  font-size: 18px;
  font-weight: 500;
}
.process-description {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-dark);
}
.process-arrow {
  opacity: 0.4;
  flex-shrink: 0;
  position: absolute;
  top: -35px;
  right: -100px;
}
.process-arrow.arrow-up {
  transform: scaleY(1);
  top: 50px !important;
}
@media (max-width: 1200px) {
  .process-arrow {
    display: none;
  }
  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .process-step {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 28px;
  }
  .process-step {
    width: 100%;
  }
}

/* CSS for section section:Testimonials */
.testimonials-section {
  background-image: url("./assets/background/testimonial.png");
  background-size: cover;
  background-position: center;
}
.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  @media (max-width: 767px) {
    gap: 30px;
  }
}
.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.testimonials-slider {
  display: flex;
  gap: 23px;
  width: 100%;
  overflow-x: auto; /* for smaller screens */
  padding-bottom: 20px;
}
.testimonial-card {
  background-color: var(--color-background-light);
  border-radius: 7px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 15.5px;
  min-width: 364px;
  box-shadow: 0px 11.63px 77.55px 0px rgba(0, 44, 109, 0.05);
}
.rating {
  display: flex;
  gap: 2px;
}
.rating img {
  width: 27px;
  height: 27px;
}
.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  flex-grow: 1;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.customer-avatar {
  width: 47px;
  height: 47px;
  border-radius: 50%;
}
.customer-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.customer-details p {
  margin: 0;
}
.customer-name {
  font-size: 16px;
  font-weight: 600;
}
.customer-role {
  font-size: 14px;
  color: var(--color-text-gray);
}
.quote-icon {
  width: 35px;
  height: 35px;
}
.slider-tracker {
  display: flex;
  gap: 8px;
  margin-top: -10px; /* 30-20 */
}
.tracker-dot {
  width: 10px;
  height: 10px;
  background-color: #b8e2ff;
  border-radius: 50%;
}
.tracker-dot.active {
  background-color: #005cb2;
  width: 24px;
  border-radius: 32px;
}
@media (max-width: 1280px) {
  .testimonials-slider {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 28px;
  }
}
.swiper-pagination-bullet {
  background-color: #b8e2ff;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: none;
  background-color: #005cb2 !important;
  width: 24px !important;
  border-radius: 10px !important;
}
/* CSS for section section:Blogs */
.blogs-section {
  padding: 65px 0;
  background-color: var(--color-background-light);
}
.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.blogs-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  color: #000;
}
.blogs-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.blogs-view-all img {
  transform: rotate(-90deg);
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.blog-card {
  background-color: var(--color-background-light);
  border-radius: 7px;
  box-shadow: 0px 3px 7px rgb(36 36 36 / 25%);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
}
.blog-card:hover .blog-title {
  color: var(--button-hover);
}
.blog-card:hover {
  box-shadow: 0px 6px 15px 0px rgba(146, 141, 141, 0.35);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.blog-image {
  width: 100%;
  height: 214px;
  position: relative;
  z-index: 0;
}
.blog-image img {
  object-fit: cover;
}
.blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-image::after {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.blog-content {
  padding: 23px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 16px;
}
.blog-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  text-wrap: wrap !important;
}
.blog-title-wrapper img {
  margin-top: 4px;
  transition: all 0.2s ease-in-out;
}
.blog-card:hover .blog-title-wrapper img {
  filter: invert(43%) sepia(92%) saturate(4661%) hue-rotate(199deg)
    brightness(96%) contrast(96%);
  transform: translate(2px, -2px);
}
.blog-excerpt {
  font-size: 16px;
  line-height: 1.375;
  color: var(--color-text-dark);
  text-wrap: wrap !important;
}
.blog-date {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-gray);
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Footer */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section {
  background-color: var(--color-background-dark);
  color: #cecece;
  padding-top: 50px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 53px;
}
.footer-about {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 910px;
}
.footer-logo {
  width: 70px;
  height: 56px;
  flex-shrink: 0;
}
.footer-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-light);
  margin: 0;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 19px;
}
.footer-socials a img {
  transition: all 0.3s ease;
}
.footer-socials a:hover img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(91%) saturate(3200%)
    hue-rotate(10deg) brightness(102%) contrast(101%);
}
.footer-divider {
  border: none;
  height: 1px;
  background-color: #9f9f9f;
  margin: 0;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 52px 0;
  gap: 30px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-column:first-child {
  max-width: 280px;
}
.footer-column-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-light);
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-column ul li {
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}
.footer-bottom {
  padding: 50px 0;
  text-align: center;
  font-size: 14px;
  color: #cecece;
}
.contact-info li {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 7px;
}
footer ul li a:hover {
  color: var(--color-secondary);
}
@media (max-width: 1200px) {
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: start;
  }
  .footer-about {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .footer-links {
    /* grid-template-columns: 1fr 1fr; */
  }
  .footer-bottom {
    text-align: left;
    padding: 20px 10px;
    border-top: 1px solid #4d4d4d;
    p {
      margin: 0;
      line-height: 16px;
    }
  }
  /* .footer-column {
    align-items: center;
    text-align: center;
  } */
  .footer-column ul {
    align-items: start;
  }
  .contact-info li {
    flex-wrap: wrap;
  }
}

/**swiper css**/
.swiper {
  padding: 10px 0px;
}
.swiper-horizontal {
  .swiper-button-next,
  .swiper-button-prev,
  ~ .swiper-button-next,
  ~ .swiper-button-prev {
    top: 44% !important;
  }
}
.swiper-button-next,
.swiper-button-prev {
  padding: 10px;
  height: 40px;
  width: 30px;
  color: rgb(242, 242, 242);
  background-color: rgba(0, 0, 0, 0.16);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.2);
}
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}
#category-btn {
  transition: none !important;
}

#category-btn:focus,
#category-btn:focus-visible {
  outline: 2.5px solid var(--color-primary) !important;
  box-shadow: none !important;
  transition: none !important;
}
