/*-----------------------------------------------------------------
 
-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
-------------------------------------------------------------------

01.Mixins
02.Variables
03.Typography
04.Buttons 
05.Gutter 
06.Container 
07.Animation 
08.Helping 
09.MeanMenu 
10.Preloader
11.Title 
12.Common 
13.Header 
14.Footer 
15.Contact 
16.Service 
17.Intro
18.About
19.Causes 
20.Counter 
21.Testimonial 
22.Donation 
23.Team 
24.Faq 
25.Blog 
26.Blog Extra 
27.Sidebar
28.card
29.Feature 
30.Form
31.Index
32.Index2 
33.Index3 
34.Video
35.Faq
38.Text Slider
39.widget
40.blog page
41.Project page
42.services page
43.wcu page
44.building-plan page
45.git page
46.bento page

------------------------------------------------------------------*/
/* 01.Mixins */
/* 02.Variables */
/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #273f8f;
  --theme2: #FFE175;
  --header: #241442;
  --title: #131313;
  --orange: #F74F22;
  --gray1: #F6F8F0;
  --text: #525252;
  --border: #D0D0D0;
  --border-2: #D4DCED;
  --bg: #EAECF3;
  --bg2: #EBEDE2;
  --btn-text: #000000;
  --pra-text: #000000;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* Early responsive repair for the homepage industries grid. */
.fortech-industries-section .fortech-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1199px) {
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: 1fr;
  }
}

/* CNC Turning service page */
.fortech-cnc-turning-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}
.fortech-cnc-hero-card {
  /* display: grid; */
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(19, 19, 19, 0.08);
  margin-bottom: 30px;
}
.fortech-cnc-hero-image {
  position: relative;
  overflow: hidden;
  border: 2px solid #1c499c;
  border-radius: 8px;
  /* min-height: 430px; */
}
.fortech-cnc-hero-image::after {
  position: absolute;
  /* content: ""; */
  inset: auto 0 0;
  /* height: 38%; */
  /* background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, rgba(19, 19, 19, 0.55) 100%); */
}
.fortech-cnc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fortech-cnc-hero-card:hover .fortech-cnc-hero-image img {
  transform: scale(1.04);
}
.fortech-cnc-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 12px 10px;
}
.fortech-cnc-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  background: rgba(255, 194, 0, 0.16);
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fortech-cnc-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme);
}
.fortech-cnc-hero-copy h2 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.06;
  margin-bottom: 18px;
  color: var(--title);
}
.fortech-cnc-hero-copy p {
  max-width: 820px;
}
.fortech-cnc-hero-copy p,
.fortech-cnc-content p,
.fortech-cnc-process p,
.fortech-cnc-two-column li,
.fortech-cnc-sidebar p {
  color: #565969;
  font-size: 17px;
  line-height: 28px;
}
.fortech-cnc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.fortech-cnc-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f3f5f6;
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
}
.fortech-cnc-badges i {
  color: var(--theme);
}
.fortech-cnc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.fortech-cnc-stats div {
  min-height: 118px;
  padding: 22px;
  border-radius: 8px;
  background: var(--title);
  color: #ffffff;
}
.fortech-cnc-stats strong {
  display: block;
  color: var(--theme);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.fortech-cnc-stats span {
  display: block;
  font-size: 15px;
  line-height: 23px;
}
.fortech-cnc-content {
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 4px solid var(--theme);
  margin-bottom: 28px;
}
.fortech-cnc-content h3,
.fortech-cnc-process h3,
.fortech-cnc-two-column h3 {
  color: var(--title);
  font-size: 31px;
  line-height: 1.16;
  margin-bottom: 14px;
}
.fortech-cnc-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.fortech-cnc-capability-grid article {
  padding: 26px 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fortech-cnc-capability-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(19, 19, 19, 0.08);
}
.fortech-cnc-capability-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: var(--theme);
  color: var(--title);
  font-size: 22px;
  margin-bottom: 18px;
}
.fortech-cnc-capability-grid h3 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
}
.fortech-cnc-capability-grid p {
  color: #565969;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}
.fortech-cnc-process {
  padding: 34px;
  border-radius: 8px;
  background: #131313;
  margin-bottom: 32px;
}
.fortech-cnc-process h3 {
  color: #ffffff;
}
.fortech-cnc-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.fortech-cnc-process-list div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}
.fortech-cnc-process-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--title);
  font-size: 16px;
  margin-bottom: 14px;
}
.fortech-cnc-process-list h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}
.fortech-cnc-process-list p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}
.fortech-cnc-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fortech-cnc-two-column > div,
.fortech-cnc-side-note {
  padding: 30px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.08);
}
.fortech-cnc-two-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.fortech-cnc-two-column li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.fortech-cnc-two-column li:last-child {
  margin-bottom: 0;
}
.fortech-cnc-two-column i {
  color: var(--theme);
  margin-top: 5px;
}
.fortech-cnc-sidebar {
  position: sticky;
  top: 110px;
}
.fortech-cnc-sidebar .single-sidebar-widget {
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(19, 19, 19, 0.06);
}
.fortech-cnc-side-note {
  background: var(--title) !important;
}
.fortech-cnc-side-note span {
  display: inline-block;
  color: var(--theme);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fortech-cnc-side-note h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 14px;
}
.fortech-cnc-side-note p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}
.fortech-product-detail-section .fortech-product-hero-card {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}
.fortech-product-detail-section .fortech-cnc-hero-image {
  /* min-height: 490px; */
}
.fortech-spec-card,
.fortech-product-gallery {
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  margin-bottom: 32px;
}
.fortech-spec-head {
  margin-bottom: 22px;
}
.fortech-spec-head h3 {
  color: var(--title);
  font-size: 31px;
  line-height: 1.16;
  margin-bottom: 0;
}
.fortech-spec-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(19, 19, 19, 0.08);
}
.fortech-spec-table {
  width: 100%;
  /* min-width: 680px; */
  border-collapse: collapse;
}
.fortech-spec-table th,
.fortech-spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
  vertical-align: top;
  font-size: 15px;
  line-height: 24px;
}
.fortech-spec-table tr:last-child th,
.fortech-spec-table tr:last-child td {
  border-bottom: 0;
}
.fortech-spec-table th {
  width: 230px;
  color: var(--title);
  font-weight: 800;
  background: #f3f5f6;
}
.fortech-spec-table td {
  color: #565969;
  background: #ffffff;
}
.fortech-product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.fortech-product-gallery-grid figure {
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: #f3f5f6;
  border: 1px solid rgba(19, 19, 19, 0.08);
}
.fortech-product-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.fortech-product-gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--title);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}
.fortech-download-widget {
  background: linear-gradient(135deg, #132544 0%, #273f8f 100%) !important;
}
.fortech-download-widget .wid-title h3,
.fortech-download-widget p {
  color: #ffffff !important;
}
.fortech-download-widget p {
  opacity: 0.82;
}
.fortech-download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--title);
  font-size: 15px;
  font-weight: 800;
}
.fortech-download-link:hover {
  color: var(--theme);
}
.fortech-download-link i {
  color: #c81e1e;
  font-size: 24px;
}
@media (max-width: 991px) {
  .fortech-cnc-sidebar {
    position: static;
  }
}
@media (max-width: 1199px) {
  .fortech-product-detail-section .fortech-product-hero-card {
    grid-template-columns: 1fr;
  }
  .fortech-product-detail-section .fortech-cnc-hero-image {
    /* min-height: 430px; */
  }
}
@media (max-width: 991px) {
  .fortech-cnc-hero-card,
  .fortech-cnc-capability-grid,
  .fortech-cnc-two-column {
    grid-template-columns: 1fr;
  }
  .fortech-cnc-hero-copy h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .fortech-cnc-hero-card,
  .fortech-cnc-content,
  .fortech-cnc-process {
    padding: 18px;
  }
  .fortech-cnc-hero-image {
    /* min-height: 260px; */
  }
  .fortech-cnc-hero-copy {
    padding: 8px 0 4px;
  }
  .fortech-cnc-hero-copy h2 {
    font-size: 31px;
  }
  .fortech-cnc-stats,
  .fortech-cnc-process-list {
    grid-template-columns: 1fr;
  }
  .fortech-cnc-content h3,
  .fortech-cnc-process h3,
  .fortech-cnc-two-column h3,
  .fortech-spec-head h3 {
    font-size: 26px;
  }
  .fortech-spec-card,
  .fortech-product-gallery {
    padding: 18px;
  }
  .fortech-product-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* 03.Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input::placeholder {
  color: #767771;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 75px;
    line-height: 75px;
  }
}

h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  h2 {
    font-size: 34px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 45px;
    line-height: 48px;
  }
}
@media (max-width: 450px) {
  h2 {
    font-size: 22px !important;
    line-height: 24px !important;
  }
}

h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 29.9px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
}

h2 a {
  font-family: "DM Sans", sans-serif;
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  display: inline-block;
}
@media (max-width: 767px) {
  h2 a {
    font-size: 45px !important;
  }
}
@media (max-width: 575px) {
  h2 a {
    font-size: 28px !important;
  }
}

h3 a {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 29.9px;
  display: inline-block;
}
@media (max-width: 767px) {
  h3 a {
    font-size: 16px;
  }
}

h4 a {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
}

h5 a {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
}

h6 a {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: var(--theme) !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span a {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* 04.Buttons */
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.gt-btn.style1 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: var(--theme);
  padding: 12px 30px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn.style1 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style1 i {
  margin-left: 6px;
}
.gt-btn.style1:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style1:hover {
  color: var(--theme) !important;
  border: 1px solid var(--text);
}
.gt-btn.style1:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.gt-btn.style1:hover:before {
  top: -96%;
}
.gt-btn.style2 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--btn-text);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.gt-btn.style2 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style2 i {
  margin-left: 6px;
}
.gt-btn.style2:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style2:hover {
  color: var(--black) !important;
  border: 1px solid var(--text);
}
.gt-btn.style2:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.gt-btn.style2:hover:before {
  top: -96%;
}
.gt-btn.style3 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--btn-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: var(--theme2);
  padding: 12px 30px;
}
.gt-btn.style3 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style3 i {
  margin-left: 6px;
}
.gt-btn.style3:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style3:hover {
  color: var(--white) !important;
}
.gt-btn.style3:hover.gt-btn-icon-3::after {
  color: var(--white);
}
.gt-btn.style3:hover:before {
  top: -96%;
}
.gt-btn.style4 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: transparent;
  padding: 12px 30px;
  border: 1px solid #1D3353;
}
.gt-btn.style4 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style4 i {
  margin-left: 6px;
}
.gt-btn.style4:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style4:hover {
  color: var(--white) !important;
}
.gt-btn.style4:hover.gt-btn-icon-3::after {
  color: var(--white);
}
.gt-btn.style4:hover:before {
  top: -96%;
}
.gt-btn.style5 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: var(--theme);
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.gt-btn.style5 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style5 i {
  margin-left: 6px;
}
.gt-btn.style5:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style5:hover {
  color: var(--black) !important;
  border: 1px solid var(--text);
}
.gt-btn.style5:hover.gt-btn-icon-1::after {
  color: var(--black);
}
.gt-btn.style5:hover:before {
  top: -96%;
  background-color: var(--theme2);
}
.gt-btn.style6 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--btn-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: #EFEFEF;
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
}
.gt-btn.style6 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style6 i {
  margin-left: 6px;
}
.gt-btn.style6:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style6:hover {
  color: var(--black) !important;
}
.gt-btn.style6:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.gt-btn.style6:hover:before {
  top: -96%;
}
.gt-btn.style7 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  border-radius: 999px;
  background: var(--theme);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn.style7 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style7 i {
  margin-left: 6px;
}
.gt-btn.style7:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style7:hover {
  color: var(--white) !important;
  background: var(--theme2);
}
.gt-btn.style7:hover.gt-btn-icon-6::after {
  color: var(--black) !important;
}
.gt-btn.style7:hover:before {
  top: -96%;
}
.gt-btn.style8 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  border-radius: 999px;
  background: var(--white);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn.style8 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style8 i {
  margin-left: 6px;
}
.gt-btn.style8:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style8:hover {
  color: var(--theme) !important;
  border: 1px solid var(--text);
}
.gt-btn.style8:hover.gt-btn-icon-5::after {
  color: var(--white) !important;
}
.gt-btn.style8:hover:before {
  top: -96%;
}
.gt-btn.style9 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: transparent;
  padding: 12px 30px;
  border: 1px solid var(--theme);
}
.gt-btn.style9 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style9 i {
  margin-left: 6px;
}
.gt-btn.style9:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style9:hover {
  color: var(--black) !important;
  border: 1px solid var(--text);
}
.gt-btn.style9:hover.gt-btn-icon-1::after {
  color: var(--black);
}
.gt-btn.style9:hover:before {
  top: -96%;
  background-color: var(--theme);
}
.gt-btn.style10 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border-radius: 999px;
  background: transparent;
  padding: 12px 30px;
  border: 1px solid var(--white);
}
.gt-btn.style10 a {
  color: var(--white) !important;
  display: inline-block;
}
.gt-btn.style10 i {
  margin-left: 6px;
}
.gt-btn.style10:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.gt-btn.style10:hover {
  color: var(--black) !important;
  border: 1px solid transparent;
}
.gt-btn.style10:hover.gt-btn-icon-1::after {
  color: var(--black);
}
.gt-btn.style10:hover:before {
  top: -96%;
  background-color: var(--theme);
}
.gt-btn-icon-1::after {
  content: "\f061";
  position: relative;
  color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn-icon-2::after {
  content: "\f061";
  position: relative;
  color: var(--btn-text);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn-icon-3::after {
  content: "\f061";
  position: relative;
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn-icon-4::before {
  content: "\f061";
  position: relative;
  padding: 12px;
  text-align: center;
  border-radius: 50%;
  background: var(--theme2);
  display: inline-block;
  color: var(--title);
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn-icon-5::after {
  content: "\f061";
  position: relative;
  color: var(--btn-text);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.gt-btn-icon-6::after {
  content: "\f061";
  position: relative;
  color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

/* 05.Gutter */
/*----------------------------------------------
    # Gutter  style here
----------------------------------------------*/
@media (min-width: 1600px) {
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-64 {
    --bs-gutter-x: 64px;
  }
  .gx-47 {
    --bs-gutter-x: 47px;
  }
  .gx-74 {
    --bs-gutter-x: 74px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-97 {
    --bs-gutter-x: 97px;
  }
  .gx-120 {
    --bs-gutter-x: 120px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-140 {
    --bs-gutter-x: 140px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
}
.gx-0 {
  --bs-gutter-x: 0px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

/* 06.Container */
/*----------------------------------------------
    # Container  style here
----------------------------------------------*/
@media (min-width: 1400px) {
  .causes-wrapper.style1 .container {
    max-width: 1352px;
  }
}
@media (min-width: 1600px) {
  .footer-widgets-wrapper.style1 .container {
    max-width: 1338px;
  }
}
/* 07.Animation */
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.ripple-effect {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #F3E7E0;
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgb(255, 238, 211);
  box-shadow: 0 0 0 0 rgb(255, 217, 196);
  animation: rippleOne 2s infinite;
}
.ripple-effect .playerImg {
  width: 19px;
  height: 24px;
}

/*img-animation**********************/
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw3 {
  0% {
    stroke-dashoffset: 800;
    /* Hidden */
  }
  100% {
    stroke-dashoffset: 0;
    /* Fully visible */
  }
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drawPath {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.move-directions {
  -webkit-animation: move-directions 2s infinite;
  animation: move-directions 2s infinite;
}

@keyframes move-directions {
  0% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(10px);
  }
  66% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

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

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation,
.play-btn:after,
.play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.video-box-area .video-box .play-btn:after, .video-box-area .video-box .play-btn:before {
  animation-duration: var(--ripple-ani-duration, 3s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple2;
}

.wave-anim {
  width: 105px;
  height: 69px;
  background-repeat: repeat;
  background-size: auto;
  animation: wave 70s linear infinite;
}

@keyframes wave {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left -2000px;
  }
}
.fancy-animation {
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.movingCar {
  animation: movingCar 25s linear infinite;
}

@keyframes movingCar {
  0% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(calc(-100vw + 108%));
  }
  51% {
    transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving2 {
  animation: moving2 8s linear infinite;
}

@keyframes moving2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.moving3 {
  animation: moving3 8s linear infinite;
}

@keyframes moving3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.spin2 {
  animation: spin2 10s linear infinite;
}

@keyframes spin2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*animation bubble****************/
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.animation-bubble div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../img/shape/star.html) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .animation-bubble > :nth-child(even) {
    display: none;
  }
}
.bubble-1 {
  bottom: -5px;
  left: 68%;
  animation: bubble-animation 4.5s infinite ease-in -6.57s;
}

.bubble-2 {
  bottom: -71px;
  left: 97%;
  animation: bubble-animation 4.5s infinite ease-in -5.07s;
}

.bubble-3 {
  bottom: -71px;
  left: 43%;
  animation: bubble-animation 4.5s infinite ease-in -6.73s;
}

.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  animation: bubble-animation 4.5s infinite ease-in -4.04s;
}

.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  animation: bubble-animation 4.5s infinite ease-in -3.11s;
}

.bubble-6 {
  bottom: -71px;
  left: 41%;
  animation: bubble-animation 4.5s infinite ease-in -5.95s;
}

.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  animation: bubble-animation 4.5s infinite ease-in -3.68s;
}

.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  animation: bubble-animation 4.5s infinite ease-in -3.89s;
}

.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  animation: bubble-animation 4.5s infinite ease-in -1.09s;
}

.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  animation: bubble-animation 4.5s infinite ease-in -0.96s;
}

@keyframes bubble-animation {
  0% {
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-anim {
  0% {
    top: 26px;
    right: 90px;
  }
  25% {
    top: 86px;
    right: 110px;
  }
  100% {
    top: 26px;
    right: 90px;
  }
}
.img-shine {
  position: relative;
}

.img-shine:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-20deg);
}

.img-shine:hover:after {
  animation: imgShine 1s;
}

@keyframes imgShine {
  100% {
    left: 125%;
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

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

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.scalePause {
  animation-duration: 2.5s;
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.scalePause {
  --animation-name: scalePause;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes scalePause {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  75% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* 08.Helping */
/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(245, 255, 255, 0.3);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}

.page-nav-wrap ul li {
  display: inline-block;
  text-align: center;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid #E3E3E3;
  color: var(--header);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.box-shadow {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-110 {
  padding-top: 110px;
}
@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.margin-top-10 {
  margin-top: -10px;
}

.margin-top-5 {
  margin-top: -5px;
}

.margin-top-60 {
  margin-top: -65px;
}
@media (max-width: 1399px) {
  .margin-top-60 {
    margin-top: -25px;
  }
}
@media (max-width: 1199px) {
  .margin-top-60 {
    margin-top: -27px;
  }
}
@media (max-width: 991px) {
  .margin-top-60 {
    margin-top: -75px;
  }
}
@media (max-width: 767px) {
  .margin-top-60 {
    margin-top: -65px;
  }
}

.margin-top-8 {
  margin-top: -10px;
}

.mt-n30 {
  margin-top: -30px !important;
}

.mt-n50 {
  margin-top: -50px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-7 {
  margin-right: 7px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-44 {
  margin-right: 44px;
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: 25px;
  }
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-60 {
  margin-top: 55px;
}

.mb-40 {
  margin-bottom: 40px;
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-color2 {
  background-color: var(--bg2);
}

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

.text-dark2 {
  color: #838387 !important;
}

.text-bg-color2 {
  color: var(--bg2) !important;
}

.text-theme-color {
  color: var(--theme) !important;
}

.text-theme-color2 {
  color: var(--theme2) !important;
}

.text-orange-color {
  color: var(--orange) !important;
}

/* 09.MeanMenu */
/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* 10.Preloader */
/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "DM Sans", sans-serif, "DM Sans", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "DM Sans", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 0px;
  bottom: 66px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* 11.Title */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.title-section.style1 {
  /* margin-bottom: 60px; */
}
@media (max-width: 767px) {
  .title-section.style1 {
    margin-bottom: 30px;
  }
}
.title-section.style1 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style1 .title-content h2 {
  color: #243d81;
  /* text-transform: capitalize; */
}
@media (max-width: 767px) {
  .title-section.style1 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 767px) {
  .title-section.style2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .title-section.style2 {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }
}
.title-section.style2 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style2 .title-content h2 {
  max-width: 741px;
  color: var(--title);
}
@media (max-width: 991px) {
  .title-section.style2 .title-content h2 {
    max-width: 500px;
    font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .title-section.style2 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style2 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.title-section.style2 .highlight p {
  color: #565969;
}
.title-section.style3 {
  margin-bottom: 85px;
}
@media (max-width: 767px) {
  .title-section.style3 {
    padding-bottom: 40px;
  }
}
.title-section.style3 .title-content h2 {
  color: var(--white);
}
@media (max-width: 767px) {
  .title-section.style3 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style4 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .title-section.style4 {
    margin-bottom: 30px;
  }
}
.title-section.style4 .title-content .sub-title {
  color: var(--white);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style4 .title-content h2 {
  max-width: 741px;
  color: var(--white);
}
@media (max-width: 767px) {
  .title-section.style4 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style4 .title-content h2.text-title {
  color: var(--title);
}
.title-section.style5 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .title-section.style5 {
    margin-bottom: 30px;
  }
}
.title-section.style5 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style5 .title-content h2 {
  color: var(--title);
  max-width: 741px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .title-section.style5 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style6 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .title-section.style6 {
    margin-bottom: 30px;
  }
}
.title-section.style6 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style6 .title-content h2 {
  max-width: 741px;
  color: var(--title);
}
@media (max-width: 767px) {
  .title-section.style6 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style6 .highlight {
  margin-top: 20px;
}
.title-section.style6 .highlight p {
  color: #565969;
}
.title-section.style7 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 767px) {
  .title-section.style7 {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .title-section.style7 {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.title-section.style7 .title-content .sub-title {
  color: var(--theme);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style7 .title-content h2 {
  color: var(--white);
  max-width: 630px;
}
@media (max-width: 767px) {
  .title-section.style7 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style7 .title-content h2.text-title {
  color: var(--title);
}
.title-section.style7 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 471px;
}
.title-section.style7 .highlight p {
  color: #FFF;
}
.title-section.style8 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 767px) {
  .title-section.style8 {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .title-section.style8 {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.title-section.style8 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style8 .title-content h2 {
  max-width: 372px;
  color: var(--title);
}
@media (max-width: 767px) {
  .title-section.style8 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style8 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.title-section.style8 .highlight p {
  color: #565969;
  max-width: 469px;
}
.title-section.style9 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .title-section.style9 {
    margin-bottom: 30px;
  }
}
.title-section.style9 .title-content .sub-title {
  color: var(--theme);
  text-align: center;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style9 .title-content h2 {
  max-width: 741px;
  color: var(--title);
}
@media (max-width: 767px) {
  .title-section.style9 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style10 {
  display: flex;
  justify-content: end;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 1199px) {
  .title-section.style10 {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .title-section.style10 {
    margin-bottom: 30px;
  }
}
.title-section.style10 .title-content .sub-title {
  color: var(--theme);
  text-align: start;
  font-family: "$title-font";
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title-section.style10 .title-content h2 {
  color: var(--white);
  max-width: 630px;
}
@media (max-width: 767px) {
  .title-section.style10 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style10 .title-content h2.text-title {
  color: var(--title);
  margin-right: 69px;
}
@media (max-width: 1399px) {
  .title-section.style10 .title-content h2.text-title {
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .title-section.style10 .title-content h2.text-title {
    margin-right: 0;
  }
}
.title-section.style10 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 471px;
}
.title-section.style10 .highlight p {
  color: #FFF;
}
@media (max-width: 1199px) {
  .title-section.style11 {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .title-section.style11 {
    margin-bottom: 30px;
  }
}
.title-section.style11 .title-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .title-section.style11 .title-content h2 {
    font-size: 53px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .title-section.style11 .title-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style11 .title-content h2.text-title {
  color: var(--title);
  margin-right: 69px;
}
@media (max-width: 1399px) {
  .title-section.style11 .title-content h2.text-title {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .title-section.style11 .title-content h2.text-title {
    font-size: 36px;
    line-height: 40px;
  }
}
.title-section.style11 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.title-section.style11 .highlight p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* 12.Common */
/*----------------------------------------------
    # All Common style here
----------------------------------------------*/
.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.star ul li i {
  color: var(--orange);
}

.progress-wrap {
  margin-bottom: 15px;
}
.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.progress-wrap .progress-meta .title {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 500px) {
  .progress-wrap .progress-meta {
    gap: 210px;
  }
}
@media (max-width: 470px) {
  .progress-wrap .progress-meta {
    gap: 150px;
  }
}
.progress-wrap .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #D9DDFF !important;
  border-radius: 10px;
  overflow: visible;
}
.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 575px) {
  .progress-wrap .progress-container {
    width: 85%;
  }
}
.progress-wrap .progress-container:before, .progress-wrap .progress-container:after {
  position: absolute;
  top: -4px;
  content: "";
  width: 8px;
  height: 12px;
  background-color: var(--theme);
  z-index: 3;
  border-radius: 2px;
}
.progress-wrap .progress-container:before {
  left: 0;
}
.progress-wrap .progress-container:after {
  right: 30%;
}
.progress-wrap .progress-container.style2:before, .progress-wrap .progress-container.style2:after {
  background-color: var(--orange);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}
.arrow-button .arrow-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid var(--title);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme2);
  color: var(--title);
  border: 1px solid var(--theme2);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
  background-color: var(--title);
  color: var(--white);
  border: 1px solid var(--title);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--orange);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--orange);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--orange);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.fix-visible {
  overflow: visible;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
}

.section-padding1 {
  padding: 200px 0 110px;
}
@media (max-width: 1199px) {
  .section-padding1 {
    padding: 180px 0 90px;
  }
}
@media (max-width: 991px) {
  .section-padding1 {
    padding: 170px 0 80px;
  }
}

.section-padding2 {
  padding: 110px 0 270px;
}
@media (max-width: 1199px) {
  .section-padding2 {
    padding: 90px 0 240px;
  }
}
@media (max-width: 991px) {
  .section-padding2 {
    padding: 60px 0 230px;
  }
}
@media (max-width: 767px) {
  .section-padding2 {
    padding: 40px 0 190px;
  }
}

.section-padding-3 {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .section-padding-3 {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .section-padding-3 {
    padding: 40px 0;
  }
}

.padding-bottom120 {
  padding-bottom: 60px;
}
@media (max-width: 1199px) {
  .padding-bottom120 {
    padding-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .padding-bottom120 {
    padding-bottom: 50px;
  }
}
@media (max-width: 450px) {
  .padding-bottom120 {
    padding-bottom: 35px;
  }
}

.padding-bottom217 {
  padding-bottom: 217px;
}
@media (max-width: 1199px) {
  .padding-bottom217 {
    padding-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .padding-bottom217 {
    padding-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .padding-bottom217 {
    padding-bottom: 65px;
  }
}

.padding-bottom208 {
  padding-bottom: 208px;
}
@media (max-width: 1199px) {
  .padding-bottom208 {
    padding-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .padding-bottom208 {
    padding-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .padding-bottom208 {
    padding-bottom: 65px;
  }
}

.padding-bottom240 {
  padding-bottom: 240px;
}
@media (max-width: 1199px) {
  .padding-bottom240 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .padding-bottom240 {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .padding-bottom240 {
    padding-bottom: 40px;
  }
}

.pt-60 {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .pt-60 {
    padding-top: 30px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 30px;
  }
}

.br-20 {
  border-radius: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.section-py-120 {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-py-120 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-py-120 {
    padding: 50px 0;
  }
}
@media (max-width: 450px) {
  .section-py-120 {
    padding: 35px 0;
  }
}

.section-bg {
  background-color: #EFEFEF;
}

.section-bg2 {
  background: #131313;
}

.section-bg-white {
  background-color: var(--white);
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

.sec-title-animation .title-animation {
  text-transform: none !important;
}

.checklists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checklists li {
  display: flex;
  align-items: center;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.checklists li svg {
  margin-right: 20px;
}

.checklists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checklists li {
  display: flex;
  align-items: center;
  color: var(--pra-text);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.checklists li .icon {
  width: 16px;
  height: 16px;
  line-height: 14px;
  margin-right: 15px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.checklists li .icon i {
  font-size: 10px;
  color: var(--theme2);
}

.about-counter-box.style1 {
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 25px;
  margin-top: 15px;
  border-radius: 21.484px;
  background: linear-gradient(180deg, #F5F5F5 0%, #FFE175 100%);
  max-width: 265px;
}
.about-counter-box.style1 .content .counter {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 37.25px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.307px;
}
.about-counter-box.style1 .content .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* 13.Header */
/*----------------------------------------------
    # Header style here
----------------------------------------------*/
.header-section-1 {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 150;
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #d4dced;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #d4dced;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 {
  background-color: transparent;
}
.header-1.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-1 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 0 40px;
  background: var(--White, #FFF);
  box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-1 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-1 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-1 .header-right {
    gap: 5px !important;
  }
}
.header-1 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-right .header__canvas__hamburger .sidebar__toggle {
    display: none;
  }
}
.header-1 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-1 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}

.header-2 {
  background-color: transparent;
}
.header-2.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-2 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 120px;
}
@media (max-width: 470px) {
  .header-2 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 0px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 18px;
  }
}
@media (max-width: 1899px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-2 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-2 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-2 .header-right {
    gap: 5px !important;
  }
}
.header-2 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}
.header-2 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}

.header-3 {
  background-color: transparent;
}
.header-3.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-3 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
}
@media (max-width: 470px) {
  .header-3 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1199px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu {
    display: none;
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a i {
  color: var(--white);
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
    color: var(--white);
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
  color: var(--text);
}
@media (max-width: 1899px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-3 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-3 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-3 .header-right {
    gap: 5px !important;
  }
}
.header-3 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-3 .header-right .header-button {
    display: none;
  }
}
.header-3 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-3 .header-right .sidebar__toggle svg path {
    fill: var(--theme);
  }
}

.header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-right {
    gap: 5px;
  }
  .header-right .theme-btn {
    display: none;
  }
}
.header-right .search-icon {
  color: var(--title);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--title);
  font-size: 20px;
  font-weight: 900;
  border-right: 1px solid var(--title);
  padding-right: 25px;
}
.header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-right .header__cart:hover > a {
  color: var(--theme);
}
.header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-right .header__cart > a {
  font-size: 18px;
  color: var(--text);
  padding: 15px 0;
  position: relative;
}
.header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme);
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme);
  font-weight: 700;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme2);
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme2);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme2);
}

.sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  height: 90px;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 25px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  padding: 18px 0;
  text-align: left;
  position: relative;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 160% */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}
.header-main .main-menu ul li a i {
  color: var(--title);
  font-family: "Font Awesome 6 Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.header-main .main-menu ul li a:hover, .header-main .main-menu ul li a.active {
  color: var(--theme2) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  width: max-content;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  border-top: 6px solid var(--theme);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 999;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--title);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li a.active, .header-main .main-menu ul li .submenu li a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme2);
  color: var(--theme) !important;
  padding: 11px 35px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme2);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 565px;
  padding: 30px 24px 10px 24px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--title) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--title);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--title);
  font-size: 18px;
}
@media (max-width: 470px) {
  .header-main .header-right .search-icon {
    display: none;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.sticky-bg-dark {
  background-color: #161921;
}
.sticky.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.sticky.header-1 {
  padding: 0 10px;
}
.sticky.header-1 .logo {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a.active, .sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-1 {
    padding: 0;
  }
}
.sticky.header-1 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-2 {
  padding: 0 10px;
  background: var(--white);
}
.sticky.header-2 .logo {
  display: block;
}
.sticky.header-2 .header-main {
  padding-top: 0;
}
.sticky.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a.active, .sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-2 {
    padding: 0;
  }
}
.sticky.header-2 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-3 {
  padding: 0 10px;
  background-color: #b8643e;
}
.sticky.header-3 .logo {
  display: block;
}
.sticky.header-3 .header-main {
  padding: 8px 0;
}
.sticky.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}
.sticky.header-3 .header-main .main-menu ul li a.active, .sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-3 {
    padding: 0;
  }
}
.sticky.header-3 .theme-btn {
  background: var(--white);
  color: var(--title);
}

.offcanvas__info {
  background: var(--title) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  background-color: black;
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  color: var(--theme2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.header-top-area {
  background: var(--theme2);
}
.header-top-area .header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.header-top-area .header-top-wrapper .content ul {
  display: flex;
  gap: 69px;
  align-items: center;
}
.header-top-area .header-top-wrapper .content ul li {
  color: #737373;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.header-top-area .header-top-wrapper .content ul li i {
  color: var(--title);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.header-top-area .header-top-wrapper .social-content ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-top-area .header-top-wrapper .social-content ul li a {
  color: var(--title);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.search-form-wrapper {
  position: fixed;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.search-form-wrapper.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.search-form-wrapper .search-form-inner {
  width: 768px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.search-form-wrapper .search-form-inner .search-content-filed {
  display: flex;
  align-items: center;
  gap: 30px;
}
.search-form-wrapper .search-form-inner .search-content-filed .search-close {
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
}
.search-form-wrapper .search-form-inner .search-form {
  background: #FFFFFF;
  box-shadow: 0 30px 70px rgba(208, 225, 242, 0.3);
  padding: 15px 30px;
  border-radius: 15px;
  flex: 1;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input .theme-btn {
  display: inline-block;
  height: 100%;
  width: auto;
  padding: 12px 40px;
  background: var(--theme);
  border-radius: 10px;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input .search-icon {
  display: flex;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input button.submit-search-btn {
  padding: 15px 24px !important;
}
.search-form-wrapper .search-form-inner .search-form input[type=search] {
  margin-top: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 15px 12px !important;
  flex-grow: 1;
}

.breadcumb {
  background-color: #111;
  overflow: hidden;
}
.breadcumb .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.breadcumb .breadcumb-wrapper {
  min-height: 380px;
  position: relative;
  z-index: 99;
}
.breadcumb .breadcumb-wrapper::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.178);
}
.breadcumb .breadcumb-wrapper .breadcumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.breadcumb .breadcumb-wrapper .breadcumb-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .breadcumb .breadcumb-wrapper {
    min-height: 330px;
  }
  .breadcumb .breadcumb-wrapper .breadcumb-bg img {
    max-width: none;
    height: 100%;
  }
}
.breadcumb .breadcumb-wrapper .page-heading {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
  padding: 160px 0 80px 80px;
}
@media (max-width: 991px) {
  .breadcumb .breadcumb-wrapper .page-heading {
    padding: 165px 0 100px 0;
  }
}
.breadcumb .breadcumb-wrapper .page-heading h1 {
  color: #000000;
  /* margin-bottom: 14px; */
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 80px; */
}
@media (max-width: 1399px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    font-size: 45.25px;
  }
}
@media (max-width: 991px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    font-size: 54.25px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    font-size: 48.25px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    font-size: 39.25px;
    line-height: 43px;
  }
}
@media (max-width: 470px) {
  .breadcumb .breadcumb-wrapper .page-heading h1 {
    font-size: 34.25px;
    line-height: 40px;
  }
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 19px;
}
@media (max-width: 575px) {
  .breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li {
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-size: 23.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: -0.648px;
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li a {
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-size: 23.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: -0.648px;
  transition: all 0.4s ease-in-out;
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme2);
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--theme);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 19px;
}

/* 14.Footer */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer-section {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.footer-section .footer-shape {
  position: absolute;
  top: 0;
  left: 289px;
  right: 289px;
  z-index: 1;
}
.footer-section .footer-shape img {
  max-width: 100%;
  max-height: 100%;
}
.footer-section .footer-wrapper {
  position: relative;
  z-index: 99;
}
.footer-section .footer-wrapper.style2 {
  padding: 80px 0 69px 0;
}
.footer-section .footer-wrapper.style2 .footer-text-slider {
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .footer-section .footer-wrapper.style2 {
    padding: 40px 0 69px 0;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 47px;
  border-bottom: 1px solid #1D3353;
  margin-bottom: 60px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget .footer-top {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget .row .col-xl-2 .footer-single-wid {
  margin-left: 87px;
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper.style2 .footer-widget .row .col-xl-2 .footer-single-wid {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper.style2 .footer-widget .row .col-xl-2 .footer-single-wid {
    margin-left: 0px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .thumb {
  margin-bottom: 31px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .title {
  margin-bottom: 31px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .title h3 {
  color: var(--white);
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content {
  position: relative;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content p {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content h2 {
  color: var(--white);
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: -1.48px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .shape-1 {
  position: absolute;
  top: 69px;
  right: 166px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .shape-1 {
    top: 38px;
    right: 109px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .shape-2 {
  position: absolute;
  top: -3px;
  right: 161px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .shape-2 {
    top: -24px;
    right: 15px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul {
  margin-top: 30px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul li {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul li {
    font-size: 15px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul li a {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul li a {
    font-size: 15px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content ul li span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #2b2b2b;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .footer-menu li {
  margin-bottom: 21px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .footer-menu li:last-child {
  margin-bottom: 0px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .footer-menu li a {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .services-list li {
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .services-list li a {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content h5 {
  color: #FFF;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  opacity: 0.58;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content h5 {
    font-size: 17px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container {
  display: flex;
  align-items: center;
  background-color: var(--title);
  border: 2px solid #1D3353;
  border-radius: 999px;
  padding: 5px;
  width: 300px;
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container {
    width: 100%;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .email-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 10px 6px 10px 30px;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .email-input {
    padding: 18px 6px 18px 17px;
  }
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .email-input {
    padding: 10px 6px 10px 17px;
  }
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .email-input::placeholder {
  color: #888;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .send-button {
  background-color: #ff6a00;
  border: none;
  outline: none;
  width: 47px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .content .news-later .email-container .send-button i {
  color: #fff;
  font-size: 16px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item:last-child {
  margin-bottom: 0;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .icon i {
  margin-right: 15px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #1D3353;
  border-radius: 50%;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .content .titles {
  margin-bottom: 5px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .content .titles p {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .content h4 {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .content a {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 450px) {
  .footer-section .footer-wrapper.style2 .footer-widget.style1 .footer-single-wid .footer-contact-menu .contact-item .content a {
    font-size: 17px;
  }
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .footer-section .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
  }
}
.footer-section .footer-bottom .footer-bottom-wrapper P {
  color: var(--white);
}
@media (max-width: 991px) {
  .footer-section .footer-bottom .footer-bottom-wrapper P {
    padding-top: 15px;
  }
}
@media (max-width: 450px) {
  .footer-section .footer-bottom .footer-bottom-wrapper P {
    font-size: 16px;
  }
}
.footer-section .footer-bottom .footer-bottom-wrapper P a {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.footer-section .footer-bottom .footer-bottom-wrapper .footer-services {
  display: flex;
  gap: 18px;
  padding: 30px;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom .footer-bottom-wrapper .footer-services {
    padding: 15px;
  }
}
.footer-section .footer-bottom .footer-bottom-wrapper .footer-services li a {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 450px) {
  .footer-section .footer-bottom .footer-bottom-wrapper .footer-services li a {
    font-size: 12px;
  }
}

/* 15.Contact  */
.contact-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}
.contact-page-wrapper.style1 .contact-form {
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(19, 19, 19, 0.08);
}
.fortech-contact-map-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 620px;
  padding: 18px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 8px;
  background: #131313;
  box-shadow: 0 24px 60px rgba(19, 19, 19, 0.08);
}
.fortech-contact-map-header {
  padding: 20px 18px 18px;
}
.fortech-contact-map-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--theme2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.fortech-contact-map-header span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme2);
}
.fortech-contact-map-header h3 {
  color: #ffffff;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 10px;
}
.fortech-contact-map-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 27px;
}
.fortech-contact-map-panel iframe {
  flex: 1;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}
.fortech-contact-map-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 14px;
}
.fortech-contact-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--title);
  font-size: 15px;
  font-weight: 700;
}
.fortech-contact-map-actions a:hover {
  background: var(--theme2);
  color: var(--title) !important;
}
.contact-page-wrapper.style1 .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
.contact-page-wrapper.style1 .thumb-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.contact-page-wrapper.style1 .thumb-box .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
.contact-page-wrapper.style1 .contact-info .single-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(19, 19, 19, 0.06);
}
@media (max-width: 1399px) {
  .contact-page-wrapper.style1 .contact-info .single-item {
    gap: 15px;
    padding: 28px 10px 30px 18px;
  }
}
.contact-page-wrapper.style1 .contact-info .single-item .icon i {
  color: var(--title);
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 8px;
  background: var(--theme2);
  font-size: 25px;
  font-weight: 900;
}
.contact-page-wrapper.style1 .contact-info .single-item .content h3,
.contact-page-wrapper.style1 .contact-info .single-item .content h4 {
  color: var(--title);
  margin-bottom: 10px;
}
.contact-page-wrapper.style1 .contact-info .single-item .content p,
.contact-page-wrapper.style1 .contact-info .single-item .content a {
  color: #565969;
  display: block;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  overflow-wrap: anywhere;
}
@media (max-width: 450px) {
  .contact-page-wrapper.style1 .contact-form,
  .fortech-contact-map-panel {
    padding: 18px;
  }
  .fortech-contact-map-panel {
    min-height: 560px;
  }
  .fortech-contact-map-actions {
    grid-template-columns: 1fr;
  }
  .fortech-contact-map-header h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .contact-page-wrapper.style1 .contact-info .single-item .content p,
  .contact-page-wrapper.style1 .contact-info .single-item .content a {
    font-size: 16px;
  }
}

/* 17.Intro */
/*----------------------------------------------
    # Intro style here
----------------------------------------------*/
.intro-section .intro-wrapper.style1 {
  padding-top: 250px;
  position: relative;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 {
    padding-top: 150px;
  }
}
.intro-section .intro-wrapper.style1 .socail-icon {
  position: absolute;
  left: 145px;
  top: 370px;
}
@media (max-width: 1700px) {
  .intro-section .intro-wrapper.style1 .socail-icon {
    left: 100px;
    top: 300px;
  }
}
@media (max-width: 1600px) {
  .intro-section .intro-wrapper.style1 .socail-icon {
    left: 20px;
    top: 300px;
  }
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .socail-icon {
    left: 10px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .socail-icon {
    display: none;
  }
}
.intro-section .intro-wrapper.style1 .socail-icon ul li {
  margin-bottom: 20px;
}
.intro-section .intro-wrapper.style1 .socail-icon ul li a {
  width: 25.643px;
  height: 25.241px;
  line-height: 23.241px;
  text-align: center;
  background: #EFEFEF;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.intro-section .intro-wrapper.style1 .socail-icon ul li a i {
  color: var(--title);
  font-size: 10.966px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.intro-section .intro-wrapper.style1 .socail-icon ul li a:hover {
  background: var(--theme);
}
.intro-section .intro-wrapper.style1 .socail-icon ul li a:hover i {
  color: var(--white);
}
.intro-section .intro-wrapper.style1 .socail-icon ul li a:hover svg path {
  fill: var(--white);
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title .sub-title {
  margin-bottom: 10px;
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title .sub-title h6 {
  color: var(--title);
  font-size: 12px;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title .title {
  margin-bottom: 30px;
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title .title h1 {
  color: var(--title);
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title .title h1 span {
  color: var(--theme);
}
@media (max-width: 470px) {
  .intro-section .intro-wrapper.style1 .inner-left-part .section-title .title h1 {
    font-size: 65px;
    line-height: 72px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style1 .inner-left-part .section-title .title h1 {
    font-size: 49px;
    line-height: 52px;
  }
}
.intro-section .intro-wrapper.style1 .inner-left-part .section-title p {
  color: var(--title);
  margin-bottom: 30px;
}
.intro-section .intro-wrapper.style1 .inner-left-part .btn-content {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 500px) {
  .intro-section .intro-wrapper.style1 .inner-left-part .btn-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.intro-section .intro-wrapper.style1 .inner-left-part .btn-content .video-btn a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.intro-section .intro-wrapper.style1 .inner-left-part .btn-content .video-btn a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--title);
  text-align: center;
  color: var(--theme);
  display: inline-block;
  border-radius: 50%;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box {
  position: relative;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .main-thumb {
  position: relative;
  text-align: center;
  z-index: 99;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .main-thumb img {
  max-width: 100%;
  margin-top: 38px;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-1 {
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-1 img {
    height: 600px;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 {
  position: absolute;
  left: 158px;
  top: 10px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 {
    left: 115px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 {
    left: 75px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 {
    left: 158px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 {
    left: 75px;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 svg path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw3 3s linear infinite;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-2 img {
  max-width: 100%;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-3 {
  position: absolute;
  left: 33.44px;
  top: 80.65px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-3 {
    left: 0;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-3 {
    left: -30px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-3 {
    left: 33.44px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-3 {
    left: -28px;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-4 {
  position: absolute;
  right: 0;
  top: 180.91px;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-4 {
    right: -41px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-4 {
    right: -81px;
    top: 100.91px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-4 {
    right: 0;
    top: 180.91px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-4 {
    display: none;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-5 {
  position: absolute;
  right: 74.42px;
  bottom: 70.56px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-5 {
    right: 19px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-5 {
    bottom: 30.56px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-5 {
    right: 74.42px;
    bottom: 70.56px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-5 {
    display: none;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 {
  position: absolute;
  right: 74.42px;
  top: 87.56px;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 {
    right: 19px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 {
    top: 40.56px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 {
    right: 74.42px;
    top: 87.56px;
  }
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path {
  animation: fadeSlide 1.5s ease-in-out infinite;
  opacity: 0;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(1) {
  animation-delay: 0s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(2) {
  animation-delay: 0.2s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(3) {
  animation-delay: 0.4s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(4) {
  animation-delay: 0.6s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(5) {
  animation-delay: 0.8s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(6) {
  animation-delay: 1s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(7) {
  animation-delay: 1.2s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(8) {
  animation-delay: 1.4s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-6 svg path:nth-child(9) {
  animation-delay: 1.6s;
}
.intro-section .intro-wrapper.style1 .intro-right-part .thumb-box .thumb-shape-7 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.intro-section .intro-wrapper.style2 {
  padding-top: 198px;
  background: #EFEFEF;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style2 {
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style2 {
    padding-top: 100px;
  }
}
.intro-section .intro-wrapper.style2 .inner-left-part {
  margin-top: 77.48px;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style2 .inner-left-part {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style2 .inner-left-part {
    margin-top: 30px;
  }
}
.intro-section .intro-wrapper.style2 .inner-left-part .section-title .title {
  margin-bottom: 30px;
  margin-right: -79px;
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2 .inner-left-part .section-title .title {
    margin-right: 0;
  }
}
.intro-section .intro-wrapper.style2 .inner-left-part .section-title .title h1 {
  color: var(--900, #131313);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "DM Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style2 .inner-left-part .section-title .title h1 {
    font-size: 54px;
    line-height: 54px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2 .inner-left-part .section-title .title h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
.intro-section .intro-wrapper.style2 .inner-left-part .section-title .title h1 span {
  color: var(--theme);
}
.intro-section .intro-wrapper.style2 .inner-left-part .section-title p {
  color: var(--title);
  margin-bottom: 30px;
}
.intro-section .intro-wrapper.style2 .inner-left-part .db-content {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2 .inner-left-part .db-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.intro-section .intro-wrapper.style2 .inner-left-part .db-content .meta-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.intro-section .intro-wrapper.style2 .inner-left-part .db-content .meta-info p {
  color: var(--title);
  margin-bottom: 4px;
}
.intro-section .intro-wrapper.style2 .inner-left-part .db-content .meta-info a {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.intro-section .intro-wrapper.style2 .intro-right-part {
  overflow: hidden;
}
@media (max-width: 1600px) {
  .intro-section .intro-wrapper.style2 .intro-right-part {
    overflow: visible;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box {
  position: relative;
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .main-thumb {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .main-thumb {
    text-align: center;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .main-thumb img {
  max-width: 100%;
  max-height: 100vh;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-1 {
  position: absolute;
  left: 67px;
  top: 164px;
  z-index: 2;
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-1 {
    left: 122px;
    top: 114px;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-1 img {
  max-width: 100%;
  max-height: 100%;
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
  position: absolute;
  right: 10px;
  top: 35px;
  z-index: 1;
  max-width: 100%;
  max-height: 100vh;
}
@media (max-width: 1899px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: 24px;
    top: -16px;
  }
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -10px;
    top: 26px;
  }
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -10px;
    top: 23px;
  }
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -7px;
    top: 49px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -37px;
    top: 93px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -37px;
    top: 81px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 {
    right: -26px;
    top: 58px;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-shape-2 img {
    max-width: 86%;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content {
  position: absolute;
  right: -30px;
  bottom: 108px;
  z-index: 999;
  background-color: var(--white);
  padding: 24px 30px 20px 40px;
  width: 291px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content {
    right: 10px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content {
    padding: 15px;
    width: 200px;
    bottom: 20px;
  }
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content .metacloud {
  display: flex;
  align-items: center;
  gap: 24px;
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content .metacloud span {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 36.563px;
  font-weight: 700;
  line-height: 30px;
}
.intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content p {
  color: #565969;
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2 .intro-right-part .thumb-box .thumb-content p {
    font-size: 16px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero {
  padding: 175px 0 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(252, 90, 17, 0.08), transparent 20%),
    linear-gradient(180deg, #f8f7f3 0%, #f3f1ec 100%);
  animation: fortechHeroFade 0.9s ease-out both;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style2.fortech-hero {
    padding-top: 110px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style2.fortech-hero {
    padding-top: 105px;
    padding-bottom: 70px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(19, 37, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 37, 68, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
  animation: fortechGridDrift 18s linear infinite;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part {
  margin-top: 0;
  padding-right: 18px;
  position: relative;
  z-index: 3;
  animation: fortechRiseUp 0.85s ease-out 0.12s both;
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part {
    padding-right: 0;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: 0 14px 24px rgba(19, 19, 19, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .sub-title:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 30px rgba(19, 19, 19, 0.07);
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .sub-title span {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title {
  margin-right: 0;
  margin-bottom: 20px;
  max-width: 650px;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title h1 {
  /* font-size: clamp(46px, 5.2vw, 78px); */
  line-height: 0.98;
  /* letter-spacing: -0.05em; */
  /* max-width: 9ch; */
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title h1 {
    font-size: 40px;
    line-height: 1.02;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title p {
  max-width: 530px;
  margin-bottom: 0;
  color: #565c6e;
  font-size: 17px;
  line-height: 1.75;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: 0 14px 22px rgba(19, 19, 19, 0.04);
  color: #31384b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  animation: fortechRiseUp 0.75s ease-out both;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span:nth-child(1) {
  animation-delay: 0.24s;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span:nth-child(2) {
  animation-delay: 0.32s;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span:nth-child(3) {
  animation-delay: 0.4s;
}
.intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 30px rgba(19, 19, 19, 0.07);
}
.fortech-mini-cards-section {
  position: relative;
  margin-top: -10px;
  padding: 50px 0 50px;
  /* background:
    linear-gradient(180deg, #f3f1ec 0%, #ffffff 72%); */
}
.fortech-mini-cards-section .row {
  --bs-gutter-y: 24px;
}
.fortech-mini-cards-section .fortech-mini-card {
  position: relative;
  height: 100%;
  /* min-height: 255px; */
  padding: 18px 18px 0;
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 18px 32px rgba(23, 31, 70, 0.18);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  isolation: isolate;
}
.fortech-mini-cards-section .fortech-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 40, 0.58) 0%, rgba(8, 18, 40, 0.24) 42%, rgba(8, 18, 40, 0.08) 100%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 10px, transparent 11px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0.14) 6px, transparent 7px),
    radial-gradient(circle at 88% 44%, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 4px, transparent 5px);
  opacity: 0.9;
  pointer-events: none;
}
.fortech-mini-cards-section .fortech-mini-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 56px;
  width: 138px;
  height: 138px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(18deg);
  pointer-events: none;
}
.fortech-mini-cards-section .fortech-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(23, 31, 70, 0.24);
}
.fortech-mini-cards-section .fortech-mini-card > * {
  position: relative;
  z-index: 2;
}
.fortech-mini-cards-section .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.fortech-mini-cards-section .card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fortech-mini-cards-section .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 17px;
}
.fortech-mini-cards-section .fortech-mini-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.08;
  /* max-width: 9.2ch; */
}
.fortech-mini-cards-section .card-image-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0 !important;
  border-radius: inherit;
  overflow: hidden;
}
.fortech-mini-cards-section .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(8, 18, 40, 0.5) 0%, rgba(8, 18, 40, 0.18) 44%, transparent 100%);
}
.fortech-mini-cards-section .card-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: saturate(1.05) contrast(1.02);
  transform-origin: center;
  transition: transform 0.45s ease, opacity 0.35s ease;
}
.fortech-mini-cards-section .fortech-mini-card:hover .card-image-wrap img {
  transform: scale(1.06);
  opacity: 0.43;
}
.fortech-mini-cards-section .card-construction .card-image-wrap img {
  object-position: center;
}
.fortech-mini-cards-section .card-spm .card-image-wrap img {
  object-position: center;
}
.fortech-mini-cards-section .card-parking .card-image-wrap img {
  object-position: center;
}
.fortech-mini-cards-section .card-fabrication .card-image-wrap img {
  object-position: center;
}
.fortech-mini-cards-section .card-progress {
  width: 100%;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.fortech-mini-cards-section .card-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.55));
}
.fortech-mini-cards-section .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.fortech-mini-cards-section .card-meta span {
  color: rgba(255, 255, 255, 0.86);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.fortech-mini-cards-section .card-meta strong {
  color: rgba(255, 255, 255, 0.96);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fortech-mini-cards-section .card-construction {
  background: linear-gradient(135deg, #163567 0%, #245bb1 62%, #ff8f2f 100%);
}
.fortech-mini-cards-section .card-construction .card-progress span {
  width: 76%;
}
.fortech-mini-cards-section .card-spm {
  background: linear-gradient(135deg, #10294f 0%, #1d4d96 65%, #4f8fe8 100%);
}
.fortech-mini-cards-section .card-spm .card-progress span {
  width: 83%;
}
.fortech-mini-cards-section .card-parking {
  background: linear-gradient(135deg, #17315f 0%, #1f5ea5 58%, #31a7de 100%);
}
.fortech-mini-cards-section .card-parking .card-progress span {
  width: 71%;
}
.fortech-mini-cards-section .card-fabrication {
  background: linear-gradient(135deg, #20314c 0%, #365b89 55%, #ff8b24 100%);
}
.fortech-mini-cards-section .card-fabrication .card-progress span {
  width: 79%;
}
@media (max-width: 1199px) {
  .fortech-mini-cards-section {
    padding-bottom: 60px;
  }
  .fortech-mini-cards-section .fortech-mini-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .fortech-mini-cards-section {
    padding-bottom: 48px;
  }
  .fortech-mini-cards-section .fortech-mini-card {
    /* min-height: 235px; */
    padding: 16px 16px 0;
  }
  .fortech-mini-cards-section .fortech-mini-card h3 {
    font-size: 22px;
  }
  .fortech-mini-cards-section .card-image-wrap img {
    opacity: 0.3;
  }
}
.fortech-facts-section {
  position: relative;
  padding: 28px 0 50px;
  background: transparent;
}
.fortech-facts-section::before {
  content: none;
}
.fortech-facts-section::after {
  content: none;
}
.fortech-facts-section .container {
  position: relative;
  z-index: 1;
}
.fortech-facts-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.fortech-facts-head .facts-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--theme2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fortech-facts-head .facts-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--theme2);
  box-shadow: 0 0 0 4px rgba(255, 225, 117, 0.18);
}
.fortech-facts-head h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
}
.fortech-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.fortech-fact-card {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(39, 63, 143, 0.12);
  box-shadow: 0 14px 32px rgba(19, 37, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.fortech-fact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--theme);
}
.fortech-fact-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(39, 63, 143, 0.04);
  transform: rotate(10deg);
  pointer-events: none;
}
.fortech-fact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 63, 143, 0.24);
  box-shadow: 0 20px 42px rgba(19, 37, 68, 0.13);
}
.fortech-fact-card .fact-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--white);
  font-size: 21px;
  box-shadow: 0 12px 22px rgba(39, 63, 143, 0.2);
}
.fortech-fact-card .fact-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.fortech-fact-card .fact-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px;
  min-height: 36px;
  margin-bottom: 5px;
  color: var(--theme);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.fortech-fact-card .fact-value > span:first-child:not(.counters-item) {
  margin-right: 5px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.fortech-fact-card.fact-certified {
  background: linear-gradient(135deg, #fffdf2 0%, #ffffff 72%);
  border-color: rgba(255, 225, 117, 0.74);
}
.fortech-fact-card.fact-certified::before {
  background: var(--theme2);
}
.fortech-fact-card.fact-certified::after {
  border: 1px solid rgba(122, 82, 0, 0.12);
  background: rgba(255, 225, 117, 0.18);
}
.fortech-fact-card.fact-certified .fact-icon {
  background: #7a5200;
  color: var(--theme2);
  box-shadow: 0 12px 22px rgba(122, 82, 0, 0.18);
}
.fortech-fact-card.fact-certified .fact-iso-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #132544 0%, #273f8f 100%);
  color: var(--white);
  border: 3px solid var(--theme2);
}
.fortech-fact-card.fact-certified .fact-iso-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
}
.fortech-fact-card.fact-certified .fact-iso-icon span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}
.fortech-fact-card .fact-cert-badge {
  display: inline-grid;
  gap: 5px;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #132544;
  color: var(--white);
  box-shadow: 0 14px 26px rgba(19, 37, 68, 0.2);
}
.fortech-fact-card .fact-cert-badge span {
  color: var(--theme2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.18em;
}
.fortech-fact-card .fact-cert-badge strong {
  color: var(--white);
  font-size: clamp(26px, 2.3vw, 35px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.fortech-fact-card h3 {
  margin-bottom: 4px;
  color: #132544;
  font-size: 18px;
  line-height: 1.18;
}
.fortech-fact-card p {
  color: #5a6477;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.fortech-fact-card.fact-experience .fact-icon {
  background: var(--orange);
  box-shadow: 0 12px 22px rgba(247, 79, 34, 0.18);
}
.fortech-fact-card.fact-experience::before {
  background: var(--orange);
}
.fortech-fact-card.fact-experience::after {
  background: rgba(247, 79, 34, 0.07);
}
.fortech-fact-card.fact-clients .fact-icon {
  background: #245bb1;
  box-shadow: 0 12px 22px rgba(36, 91, 177, 0.18);
}
.fortech-fact-card.fact-clients::before {
  background: #245bb1;
}
.fortech-fact-card.fact-clients::after {
  background: rgba(36, 91, 177, 0.07);
}
.fortech-fact-card.fact-parts .fact-icon {
  background: #10835f;
  box-shadow: 0 12px 22px rgba(16, 131, 95, 0.18);
}
.fortech-fact-card.fact-parts::before {
  background: #10835f;
}
.fortech-fact-card.fact-parts::after {
  background: rgba(16, 131, 95, 0.07);
}
@media (max-width: 1199px) {
  .fortech-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .fortech-facts-section {
    padding: 28px 0 44px;
  }
  .fortech-facts-head {
    display: grid;
    align-items: start;
    margin-bottom: 26px;
  }
  .fortech-facts-head h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.06;
    text-align: left;
  }
  .fortech-facts-grid {
    grid-template-columns: 1fr;
  }
  .fortech-fact-card {
    min-height: 116px;
    padding: 16px;
  }
  .fortech-fact-card .fact-value {
    min-height: 34px;
    font-size: 34px;
  }
}
.fortech-about-section {
  position: relative;
  padding: 5px 0 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  overflow: hidden;
}
.fortech-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(39, 63, 143, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(39, 63, 143, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  pointer-events: none;
}
.fortech-about-section .container {
  position: relative;
  z-index: 1;
}
.fortech-about-media {
  position: relative;
  min-height: 430px;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #132544;
  box-shadow: 0 26px 56px rgba(19, 37, 68, 0.16);
}
.fortech-about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 37, 68, 0.08) 0%, rgba(19, 37, 68, 0.54) 100%),
    linear-gradient(90deg, rgba(39, 63, 143, 0.32), transparent 62%);
  pointer-events: none;
}
.fortech-about-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}
.fortech-about-media .about-cert-mark {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 164px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 5px solid var(--theme2);
  box-shadow: 0 18px 34px rgba(5, 12, 32, 0.22);
}
.fortech-about-media .about-cert-mark span {
  color: var(--theme);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
}
.fortech-about-media .about-cert-mark strong {
  color: #132544;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
.fortech-about-content {
  padding-left: 18px;
}
.fortech-about-content .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(39, 63, 143, 0.08);
  color: var(--theme);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fortech-about-content .about-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--theme2);
  box-shadow: 0 0 0 4px rgba(255, 225, 117, 0.32);
}
.fortech-about-content h2 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--theme);
  font-size: clamp(28px, 0vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}
.fortech-about-content p {
  max-width: 680px;
  margin-bottom: 16px;
  color: #525c70;
  font-size: 17px;
  line-height: 1.72;
}
.fortech-about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.fortech-about-points .about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(39, 63, 143, 0.12);
  box-shadow: 0 12px 28px rgba(19, 37, 68, 0.06);
}
.fortech-about-points .about-point i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--theme);
  color: var(--white);
  font-size: 17px;
}
.fortech-about-points .about-point span {
  color: #263247;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.fortech-about-content .about-action {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .fortech-about-section {
    padding: 10px 0 25px;
  }
  .fortech-about-media,
  .fortech-about-media img {
    min-height: 400px;
  }
  .fortech-about-content {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .fortech-about-media,
  .fortech-about-media img {
    min-height: 340px;
  }
}
@media (max-width: 767px) {
  .fortech-about-section {
    padding: 54px 0 62px;
  }
  .fortech-about-media,
  .fortech-about-media img {
    min-height: 280px;
  }
  .fortech-about-media .about-cert-mark {
    left: 16px;
    bottom: 16px;
    min-width: 142px;
    padding: 13px 14px;
  }
  .fortech-about-media .about-cert-mark strong {
    font-size: 23px;
  }
  .fortech-about-content h2 {
    font-size: 32px;
    line-height: 1.06;
  }
  .fortech-about-content p {
    font-size: 15px;
    line-height: 1.65;
  }
  .fortech-about-points {
    grid-template-columns: 1fr;
  }
}
.fortech-capabilities-section {
  position: relative;
  padding: 44px 0 88px;
  background:
    linear-gradient(90deg, rgba(39, 63, 143, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(39, 63, 143, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 58%, #ffffff 100%);
  background-size: 46px 46px, 46px 46px, auto;
  overflow: hidden;
}
.fortech-capabilities-section::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: 76px;
  width: 48vw;
  height: 70%;
  background: linear-gradient(135deg, rgba(39, 63, 143, 0.1), rgba(247, 79, 34, 0.07));
  transform: skewX(-14deg);
  pointer-events: none;
}
.fortech-capabilities-section .container {
  position: relative;
  z-index: 1;
}
.fortech-capabilities-section .row {
  --bs-gutter-y: 24px;
}
.fortech-capabilities-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  grid-template-areas:
    "kicker copy"
    "title copy";
  gap: 24px 42px;
  align-items: end;
  margin: 0 0 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(39, 63, 143, 0.14);
}
.fortech-capabilities-head .capabilities-kicker {
  grid-area: kicker;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(39, 63, 143, 0.08);
  color: var(--theme);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fortech-capabilities-head .capabilities-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--theme2);
  box-shadow: 0 0 0 4px rgba(255, 225, 117, 0.32);
}
.fortech-capabilities-head h2 {
  grid-area: title;
  margin-bottom: 0;
  color: var(--theme);
  font-size: clamp(34px, 1vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.fortech-capabilities-head p {
  grid-area: copy;
  max-width: 690px;
  justify-self: end;
  margin-bottom: 0;
  color: #525c70;
  font-size: 17px;
  line-height: 1.72;
}
.fortech-capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 276px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(39, 63, 143, 0.13);
  box-shadow: 0 20px 38px rgba(19, 37, 68, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.fortech-capability-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--theme) 0%, var(--theme2) 55%, var(--orange) 100%);
}
.fortech-capability-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -64px;
  width: 148px;
  height: 148px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(24, 190, 208, 0.11), rgba(255, 143, 47, 0.12));
  transform: rotate(18deg);
  transition: transform 0.32s ease;
}
.fortech-capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 63, 143, 0.28);
  box-shadow: 0 28px 50px rgba(19, 37, 68, 0.13);
}
.fortech-capability-card:hover::after {
  transform: rotate(24deg) scale(1.08);
}
.fortech-capability-card > * {
  position: relative;
  z-index: 1;
}
.capability-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--theme) 0%, #18bed0 100%);
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 16px 28px rgba(39, 63, 143, 0.2);
}
.capability-number {
  color: rgba(247, 79, 34, 0.34);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.fortech-capability-card h3 {
  /* min-height: 58px; */
  margin-bottom: 12px;
  color: var(--title);
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}
.fortech-capability-card h3 sub {
  font-size: 0.58em;
  line-height: 0;
}
.fortech-capability-card p {
  margin-bottom: 22px;
  color: #5c6678;
  font-size: 15px;
  line-height: 1.62;
}
.fortech-capability-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding: 11px 15px;
  border-radius: 8px;
  background: rgba(39, 63, 143, 0.08);
  color: var(--theme);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.fortech-capability-card a i {
  font-size: 12px;
  transition: transform 0.28s ease;
}
.fortech-capability-card a:hover {
  background: var(--theme);
  color: var(--white) !important;
}
.fortech-capability-card a:hover i {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  .fortech-capabilities-section {
    padding: 66px 0 72px;
  }
  .fortech-capabilities-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "copy";
    gap: 20px;
  }
  .fortech-capabilities-head p {
    max-width: 100%;
    justify-self: start;
    font-size: 16px;
    line-height: 1.65;
  }
}
@media (max-width: 575px) {
  .fortech-capabilities-section {
    width: 100vw;
    max-width: 100vw;
    padding: 52px 0 58px;
    overflow-x: hidden;
  }
  .fortech-capabilities-section .container {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 22px;
    padding-right: 22px;
  }
  .fortech-capabilities-head {
    max-width: calc(100vw - 44px);
    margin: 0 0 28px;
    padding-bottom: 22px;
  }
  .fortech-capabilities-head .capabilities-kicker {
    font-size: 11px;
    line-height: 1.35;
  }
  .fortech-capabilities-head h2 {
    font-size: 28px !important;
    line-height: 1.08;
  }
  .fortech-capabilities-head p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
  }
  .fortech-capability-card {
    min-height: auto;
    padding: 22px 20px 24px;
  }
  .capability-card-top {
    margin-bottom: 20px;
  }
  .capability-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 22px;
  }
  .capability-number {
    font-size: 38px;
  }
  .fortech-capability-card h3 {
    min-height: 0;
    font-size: 21px;
  }
  .fortech-capability-card a {
    width: 100%;
    justify-content: center;
  }
}
.fortech-why-section {
  position: relative;
  padding: 24px 0 110px;
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 91, 177, 0.08), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(255, 143, 47, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 58%, #fdfdfd 100%);
  overflow: hidden;
}
.fortech-why-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 160px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(36, 91, 177, 0.12);
  animation: fortechWhyOrbit 16s linear infinite;
}
.fortech-why-section::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 47, 0.12) 0%, rgba(255, 143, 47, 0) 72%);
  pointer-events: none;
  animation: fortechWhyPulse 8s ease-in-out infinite;
}
.fortech-why-section .container {
  position: relative;
  z-index: 1;
}
.fortech-why-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(36, 91, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 91, 177, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 86%);
  pointer-events: none;
}
.fortech-why-media {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fortechWhyRise 0.9s ease-out both;
}
.fortech-why-media .why-intro {
  max-width: 360px;
}
.fortech-why-media .why-mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(35, 92, 177, 0.08);
  color: #245bb1;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fortech-why-media .why-intro p {
  margin-bottom: 24px;
  color: #616a7b;
  font-size: 17px;
  line-height: 1.8;
}
.fortech-why-media .why-intro .gt-btn {
  box-shadow: 0 18px 28px rgba(36, 91, 177, 0.12);
}
.fortech-why-media .why-image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 34px 150px 34px 34px;
  background: linear-gradient(160deg, #dfe8f4 0%, #f4f7fb 100%);
  border: 1px solid rgba(36, 91, 177, 0.12);
  box-shadow: 0 28px 56px rgba(19, 37, 68, 0.12);
  transform: translateZ(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.fortech-why-media .why-image-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(36, 91, 177, 0.22), rgba(255, 143, 47, 0.16));
  transform: rotate(18deg);
  z-index: 1;
}
.fortech-why-media .why-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 37, 68, 0.04) 0%, rgba(19, 37, 68, 0.18) 100%),
    linear-gradient(90deg, rgba(19, 37, 68, 0.08) 0%, transparent 38%);
  z-index: 2;
}
.fortech-why-media .why-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.fortech-why-media .why-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 70px rgba(19, 37, 68, 0.16);
}
.fortech-why-media .why-image-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.fortech-why-content {
  padding-left: 22px;
  animation: fortechWhyRise 0.9s ease-out 0.12s both;
}
.fortech-why-content .title-section {
  margin-bottom: 20px;
}
.fortech-why-content .title-section .title-content {
  /* max-width: 640px; */
  position: relative;
  padding-top: 18px;
}
.fortech-why-content .title-section .sub-title {
  margin-bottom: 18px;
}
.fortech-why-content .title-section .title-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #245bb1 0%, #18bed0 50%, #ff8f2f 100%);
  box-shadow: 0 10px 18px rgba(36, 91, 177, 0.18);
}
.fortech-why-content .title-section h2 {
  font-size: clamp(40px, 2vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  /* max-width: 11ch; */
}
.fortech-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 1000px;
}
.fortech-why-grid .why-feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 140px;
  padding: 22px 20px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 253, 0.94) 100%);
  border: 1px solid rgba(19, 37, 68, 0.08);
  box-shadow: 0 20px 34px rgba(19, 37, 68, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  animation: fortechWhyRise 0.75s ease-out both;
}
.fortech-why-grid .why-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #245bb1 0%, #18bed0 55%, #ff8f2f 100%);
}
.fortech-why-grid .why-feature-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto 52%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 91, 177, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
  transform: scale(0.8);
}
.fortech-why-grid .why-feature-card:nth-child(1) {
  animation-delay: 0.08s;
}
.fortech-why-grid .why-feature-card:nth-child(2) {
  animation-delay: 0.16s;
}
.fortech-why-grid .why-feature-card:nth-child(3) {
  animation-delay: 0.24s;
}
.fortech-why-grid .why-feature-card:nth-child(4) {
  animation-delay: 0.32s;
}
.fortech-why-grid .why-feature-card:nth-child(5) {
  animation-delay: 0.4s;
}
.fortech-why-grid .why-feature-card:nth-child(6) {
  animation-delay: 0.48s;
}
.fortech-why-grid .why-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 91, 177, 0.16);
  box-shadow: 0 28px 46px rgba(19, 37, 68, 0.11);
}
.fortech-why-grid .why-feature-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.fortech-why-grid .why-feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  border-radius: 18px 18px 18px 30px;
  color: #132544;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #18bed0 0%, #5be7ef 100%);
  box-shadow: 0 16px 24px rgba(24, 190, 208, 0.18);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.fortech-why-grid .why-feature-card:nth-child(even) .why-feature-number {
  background: linear-gradient(135deg, #ff8d2b 0%, #ffbb62 100%);
  box-shadow: 0 16px 24px rgba(255, 141, 43, 0.22);
}
.fortech-why-grid .why-feature-card:nth-child(3n) .why-feature-number {
  background: linear-gradient(135deg, #245bb1 0%, #6ba2ff 100%);
  color: var(--white);
  box-shadow: 0 16px 24px rgba(36, 91, 177, 0.2);
}
.fortech-why-grid .why-feature-card:hover .why-feature-number {
  transform: translateY(-4px) scale(1.05) rotate(-4deg);
}
.fortech-why-grid .why-feature-text h3 {
  margin-bottom: 8px;
  color: var(--title);
  font-size: 22px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.fortech-why-grid .why-feature-text p {
  margin-bottom: 0;
  color: #636c7d;
  font-size: 16px;
  line-height: 1.65;
}
.fortech-why-grid .why-feature-card:hover .why-feature-text h3 {
  color: #245bb1;
}
@keyframes fortechWhyRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fortechWhyOrbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(18px);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}
@keyframes fortechWhyPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}
@media (max-width: 1199px) {
  .fortech-why-section {
    padding-bottom: 90px;
  }
  .fortech-why-media .why-image-card {
    min-height: 460px;
  }
  .fortech-why-content {
    padding-left: 0;
  }
  .fortech-why-content .title-section h2 {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .fortech-why-section {
    padding-top: 8px;
  }
  .fortech-why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .fortech-why-section {
    padding-bottom: 70px;
  }
  .fortech-why-media {
    gap: 24px;
  }
  .fortech-why-media .why-intro p {
    font-size: 15px;
  }
  .fortech-why-media .why-image-card {
    min-height: 360px;
    border-radius: 28px 90px 28px 28px;
  }
  .fortech-why-grid .why-feature-card {
    min-height: auto;
    padding: 20px 18px;
    gap: 14px;
  }
  .fortech-why-grid .why-feature-card::before {
    top: 18px;
    bottom: 18px;
  }
  .fortech-why-grid .why-feature-number {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
  .fortech-why-grid .why-feature-text h3 {
    font-size: 20px;
  }
  .fortech-why-grid .why-feature-text p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fortech-why-section::before,
  .fortech-why-section::after,
  .fortech-why-media,
  .fortech-why-content,
  .fortech-why-grid .why-feature-card {
    animation: none !important;
  }
  .fortech-why-media .why-image-card,
  .fortech-why-media .why-image-card img,
  .fortech-why-grid .why-feature-card,
  .fortech-why-grid .why-feature-number {
    transition: none !important;
  }
}
.service-wrapper.style5.fortech-product-slider {
  position: relative;
  padding-top: 45px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(36, 91, 177, 0.08), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 143, 47, 0.1), transparent 22%);
}
.service-wrapper.style5.fortech-product-slider .fortech-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.service-wrapper.style5.fortech-product-slider .title-section .title-content {
  max-width: 720px;
}
.service-wrapper.style5.fortech-product-slider .title-section .title-content p {
  max-width: 620px;
  margin-top: 18px;
  color: #60697a;
  font-size: 17px;
  line-height: 1.75;
}
.service-wrapper.style5.fortech-product-slider .fortech-slider-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.service-wrapper.style5.fortech-product-slider .fortech-slider-arrows .slider-arrow {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5fb 100%);
  color: var(--title);
  box-shadow: 0 18px 30px rgba(19, 37, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, background 0.28s ease;
}
.service-wrapper.style5.fortech-product-slider .fortech-slider-arrows .slider-arrow:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: linear-gradient(135deg, #245bb1 0%, #ff8f2f 100%);
  box-shadow: 0 24px 36px rgba(36, 91, 177, 0.16);
}
.service-wrapper.style5.fortech-product-slider .swiper-slide {
  height: auto;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(19, 37, 68, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  box-shadow: 0 24px 38px rgba(19, 37, 68, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide:hover {
  transform: translateY(-10px);
  border-color: rgba(36, 91, 177, 0.16);
  box-shadow: 0 32px 48px rgba(19, 37, 68, 0.12);
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .thumb {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 37, 68, 0.02) 0%, rgba(19, 37, 68, 0.18) 100%);
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .thumb a {
  display: block;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .thumb a img {
  width: 100%;
  /* height: 280px;
  object-fit: cover; */
  border-radius: 0;
  transition: transform 0.45s ease;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide:hover .thumb a img {
  transform: scale(1.07);
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .product-chip {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #245bb1;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(19, 37, 68, 0.12);
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content {
  padding: 24px 26px 28px;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .meta {
  gap: 16px;
  margin-bottom: 16px;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36, 91, 177, 0.08);
  color: #245bb1;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .meta span:first-child::after {
  display: none;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .title {
  margin-bottom: 14px;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .title h3 a {
  color: var(--title);
  font-size: 18px;
  line-height: 1.08;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content p {
  margin-bottom: 24px;
  color: #616a7b;
  font-size: 16px;
  line-height: 1.7;
}
.service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .btn-wrapper .gt-btn {
  box-shadow: 0 16px 26px rgba(36, 91, 177, 0.1);
}
@media (max-width: 991px) {
  .service-wrapper.style5.fortech-product-slider .fortech-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .service-wrapper.style5.fortech-product-slider .title-section .title-content p {
    font-size: 15px;
  }
  .service-wrapper.style5.fortech-product-slider .fortech-slider-arrows .slider-arrow {
    width: 50px;
    height: 50px;
  }
  .service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .thumb a img {
    height: 240px;
  }
  .service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content {
    padding: 22px 20px 24px;
  }
  .service-wrapper.style5.fortech-product-slider .service-card.style4.fortech-product-slide .content .title h3 a {
    font-size: 18px;
  }
}
.fortech-industries-section {
  position: relative;
  padding: 50px 0 50px;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 143, 47, 0.12), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(36, 91, 177, 0.12), transparent 24%),
    linear-gradient(135deg, #0f2041 0%, #17386e 42%, #102847 100%);
  overflow: hidden;
}
.fortech-industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  pointer-events: none;
}
.fortech-industries-section .container {
  position: relative;
  z-index: 1;
}
.fortech-industries-section .fortech-industries-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
.fortech-industries-section .fortech-industries-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fortech-industries-section .fortech-industries-title span {
  color: #8ceeff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}
.fortech-industries-section .fortech-industries-title h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.fortech-industries-section .fortech-industries-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) auto;
  grid-template-areas:
    "tag tag meta"
    "title text meta";
  gap: 18px 28px;
  align-items: start;
  padding: 30px 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.fortech-industries-section .fortech-industries-intro::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 143, 47, 0.22), rgba(24, 190, 208, 0.14));
  transform: rotate(18deg);
}
.fortech-industries-section .industry-label {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #8ceeff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fortech-industries-section .fortech-industries-intro h2 {
  grid-area: title;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}
.fortech-industries-section .fortech-industries-intro p {
  grid-area: text;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  max-width: 100%;
  align-self: end;
}
.fortech-industries-section .industry-intro-bar {
  grid-area: meta;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 230px;
  height: 100%;
  padding-top: 0;
  padding-left: 24px;
  border-top: none;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.fortech-industries-section .industry-intro-bar span {
  color: rgba(255, 255, 255, 0.62);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.fortech-industries-section .industry-intro-bar strong {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.fortech-industries-section .fortech-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.fortech-industries-section .industry-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px 24px 22px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 252, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 40px rgba(4, 12, 31, 0.16);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}
.fortech-industries-section .industry-item::before {
  content: "";
  position: absolute;
  inset: auto -30px -38px auto;
  width: 130px;
  height: 130px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(36, 91, 177, 0.12), rgba(255, 143, 47, 0.16));
  transform: rotate(18deg);
  transition: transform 0.34s ease;
}
.fortech-industries-section .industry-item:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 238, 255, 0.28);
  box-shadow: 0 30px 46px rgba(4, 12, 31, 0.24);
}
.fortech-industries-section .industry-item:hover::before {
  transform: rotate(26deg) scale(1.08);
}
.fortech-industries-section .industry-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.fortech-industries-section .industry-number {
  color: rgba(15, 142, 163, 0.38);
  font-family: "DM Sans", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.fortech-industries-section .industry-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f8ea3 0%, #18bed0 55%, #ff8f2f 100%);
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 20px 34px rgba(24, 190, 208, 0.18);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.fortech-industries-section .industry-item:hover .industry-icon {
  transform: scale(1.06) rotate(-6deg);
  box-shadow: 0 24px 38px rgba(24, 190, 208, 0.28);
}
.fortech-industries-section .industry-item h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--title);
  font-size: 26px;
  line-height: 1.1;
}
.fortech-industries-section .industry-item p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: #5f697a;
  font-size: 15px;
  line-height: 1.7;
}
 .fortech-industries-section .industry-auto,
 .fortech-industries-section .industry-food {
  transform: none;
}
@media (max-width: 1199px) {
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .fortech-industries-section .industry-item {
    min-height: 210px;
    padding: 22px 20px 20px;
  }

  .fortech-industries-section .industry-card-top {
    margin-bottom: 22px;
  }

  .fortech-industries-section .industry-number {
    font-size: 40px;
  }

  .fortech-industries-section .industry-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    font-size: 24px;
  }

  .fortech-industries-section .industry-item h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .fortech-industries-section .fortech-industries-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "tag meta"
      "title meta"
      "text meta";
  }
  .fortech-industries-section .fortech-industries-intro h2 {
    max-width: 100%;
  }
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .fortech-industries-section {
    padding-bottom: 80px;
  }
  .fortech-industries-section .fortech-industries-shell {
    gap: 22px;
  }
  .fortech-industries-section .fortech-industries-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "text"
      "meta";
    gap: 16px;
    padding: 28px 22px;
  }
  .fortech-industries-section .industry-intro-bar {
    min-width: 0;
    height: auto;
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fortech-industries-section .industry-item {
    min-height: 200px;
    padding: 22px 20px 20px;
  }
  .fortech-industries-section .industry-number {
    font-size: 40px;
  }
  .fortech-industries-section .industry-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    font-size: 24px;
  }
  .fortech-industries-section .industry-item h3 {
    font-size: 22px;
  }
}
.testimonial-section.padding-bottom240 {
  display: none;
}
.fortech-testimonial-section {
  position: relative;
  padding: 0 0 60px;
  background:
    radial-gradient(circle at 14% 18%, rgba(36, 91, 177, 0.04), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(255, 143, 47, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.fortech-testimonial-section .fortech-google-review-shell {
  padding: 22px 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(19, 37, 68, 0.08);
  box-shadow: 0 24px 42px rgba(19, 37, 68, 0.08);
  overflow: hidden;
}
.fortech-testimonial-section .fortech-google-review-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(19, 37, 68, 0.08);
}
.fortech-testimonial-section .review-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fortech-testimonial-section .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.fortech-testimonial-section .review-bar-title {
  color: #5f697a;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.fortech-testimonial-section .g-blue {
  color: #4285f4;
}
.fortech-testimonial-section .g-red {
  color: #ea4335;
}
.fortech-testimonial-section .g-yellow {
  color: #fbbc05;
}
.fortech-testimonial-section .g-green {
  color: #34a853;
}
.fortech-testimonial-section .review-bar-score {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fortech-testimonial-section .review-bar-score strong {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.fortech-testimonial-section .stars,
.fortech-testimonial-section .review-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fortech-testimonial-section .stars i,
.fortech-testimonial-section .review-stars i {
  color: #f6b51b;
  font-size: 13px;
}
.fortech-testimonial-section .review-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2f8cff 0%, #2b74ea 100%);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 16px 24px rgba(47, 140, 255, 0.22);
}
.fortech-testimonial-section .review-action:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.fortech-testimonial-section .swiper-slide {
  height: auto;
}
.fortech-testimonial-section .fortech-review-slide {
  position: relative;
  height: 100%;
  min-height: 290px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(19, 37, 68, 0.06);
  box-shadow: 0 16px 28px rgba(19, 37, 68, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.fortech-testimonial-section .fortech-review-slide:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 140, 255, 0.18);
  box-shadow: 0 22px 34px rgba(19, 37, 68, 0.09);
}
.fortech-testimonial-section .review-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.fortech-testimonial-section .review-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.fortech-testimonial-section .avatar-purple {
  background: linear-gradient(135deg, #b85ad7 0%, #8c4ec6 100%);
}
.fortech-testimonial-section .avatar-orange {
  background: linear-gradient(135deg, #ff9447 0%, #ff7a20 100%);
}
.fortech-testimonial-section .avatar-blue {
  background: linear-gradient(135deg, #3f84ff 0%, #245bb1 100%);
}
.fortech-testimonial-section .review-person-meta h3 {
  margin-bottom: 6px;
  color: var(--title);
  font-size: 16px;
  line-height: 1.2;
}
.fortech-testimonial-section .review-copy {
  margin-bottom: 18px;
  color: #30384a;
  font-size: 16px;
  line-height: 1.6;
}
.fortech-testimonial-section .review-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 37, 68, 0.08);
}
.fortech-testimonial-section .review-company span,
.fortech-testimonial-section .google-mini span {
  display: block;
  margin-bottom: 4px;
  color: #9aa3b3;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.fortech-testimonial-section .review-company p {
  margin-bottom: 0;
  color: #5f697a;
  font-size: 13px;
  line-height: 1.45;
}
.fortech-testimonial-section .google-mini {
  text-align: right;
}
.fortech-testimonial-section .google-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 991px) {
  .fortech-testimonial-section .fortech-google-review-bar {
    flex-wrap: wrap;
  }
  .fortech-testimonial-section .review-action {
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .fortech-testimonial-section {
    /* padding-bottom: 90px; */
  }
  .fortech-testimonial-section .fortech-google-review-shell {
    padding: 18px 16px 20px;
  }
  .fortech-testimonial-section .fortech-google-review-bar {
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .fortech-testimonial-section .review-bar-left {
    flex-wrap: wrap;
  }
  .fortech-testimonial-section .google-badge {
    font-size: 24px;
  }
  .fortech-testimonial-section .review-bar-title {
    font-size: 18px;
  }
  .fortech-testimonial-section .review-bar-score strong {
    font-size: 22px;
  }
  .fortech-testimonial-section .fortech-review-slide {
    min-height: 0;
    padding: 16px;
  }
  .fortech-testimonial-section .review-copy {
    font-size: 15px;
  }
  .fortech-testimonial-section .review-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .fortech-testimonial-section .google-mini {
    text-align: left;
  }
}
.fortech-client-section {
  position: relative;
  padding: 0 0 60px;
  background:
    radial-gradient(circle at 16% 14%, rgba(36, 91, 177, 0.06), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 143, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.fortech-client-section .fortech-client-head {
  margin-bottom: 28px;
}
.fortech-client-section .fortech-client-head .sub-title {
  margin-bottom: 14px;
}
.fortech-client-section .fortech-client-head h2 {
  margin-bottom: 0;
  text-align: center;
  color: #243e90;
  font-size: clamp(32px, 5vw, 42px);
  /* line-height: 1.02; */
  /* letter-spacing: -0.04em; */
  /* max-width: 12ch; */
}
.fortech-client-section .fortech-client-slider-wrap {
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid rgba(19, 37, 68, 0.08);
  box-shadow: 0 24px 42px rgba(19, 37, 68, 0.08);
  overflow: hidden;
}
.fortech-client-section .fortech-client-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.fortech-client-section .fortech-client-slider .swiper-slide {
  height: auto;
}
.fortech-client-section .fortech-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  px; */
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 37, 68, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.fortech-client-section .fortech-client-logo img {
  /* max-width: 100%; */
  /* max-height: 64px; */
  width: auto;
  height: auto;
  /* object-fit: contain; */
  /* filter: grayscale(1); */
  /* opacity: 0.82; */
  /* transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease; */
}
.fortech-client-section .fortech-client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}
@media (max-width: 575px) {
  .fortech-client-section {
    padding-bottom: 90px;
  }
  .fortech-client-section .fortech-client-slider-wrap {
    padding: 16px;
  }
  .fortech-client-section .fortech-client-logo {
    min-height: 100px;
    /* padding: 16px; */
  }
  .fortech-client-section .fortech-client-logo img {
    /* max-height: 52px; */
  }
}
#home,
#why-fortech,
#products,
#industries,
#reviews,
#testimonials,
#clients,
#footer-contact {
  scroll-margin-top: 120px;
}
.footer-section.fortech-footer {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(63, 132, 255, 0.16), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 143, 47, 0.16), transparent 24%),
    linear-gradient(180deg, #0b1d40 0%, #07142b 100%);
}
.footer-section.fortech-footer::before,
.footer-section.fortech-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer-section.fortech-footer::before {
  top: -90px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(63, 132, 255, 0.12);
  filter: blur(10px);
}
.footer-section.fortech-footer::after {
  right: -80px;
  bottom: 120px;
  width: 240px;
  height: 240px;
  background: rgba(255, 143, 47, 0.12);
  filter: blur(10px);
}
.footer-section.fortech-footer .container {
  position: relative;
  z-index: 1;
}
.footer-section.fortech-footer .footer-wrapper.style2 {
  padding-top: 0;
  background: transparent;
}
.footer-section.fortech-footer .fortech-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 36px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #184792 0%, #112c5c 54%, #0f244c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.2);
}
.footer-section.fortech-footer .fortech-footer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #9fc0ff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-section.fortech-footer .fortech-footer-cta-copy h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 13ch;
}
.footer-section.fortech-footer .fortech-footer-cta-copy p {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}
.footer-section.fortech-footer .fortech-footer-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 320px;
}
.footer-section.fortech-footer .fortech-footer-cta-action .gt-btn {
  min-height: 56px;
  padding-inline: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff932b 0%, #ff6b12 100%);
  box-shadow: 0 18px 26px rgba(255, 107, 18, 0.24);
}
.footer-section.fortech-footer .fortech-footer-cta-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell {
  margin-top: 28px;
  padding: 36px 36px 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.16);
}
.footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell .row {
  padding-bottom: 36px;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid {
  margin-right: 0;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget .row .col-xl-2 .footer-single-wid {
  margin-left: 0;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .title {
  margin-bottom: 20px;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .title h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content {
  max-width: none;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}
.footer-section.fortech-footer .fortech-footer-logo {
  display: block;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-section.fortech-footer .fortech-footer-logo img {
  width: 100%;
  height: auto;
}
.footer-section.fortech-footer .fortech-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer-section.fortech-footer .fortech-footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links li {
  margin-bottom: 12px;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links li:last-child {
  margin-bottom: 0;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links li a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f84ff 0%, #ff8f2f 100%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .content .footer-menu.fortech-footer-links li a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item .icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #3f84ff 0%, #245bb1 100%);
  box-shadow: 0 16px 24px rgba(63, 132, 255, 0.2);
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item .icon i {
  color: var(--white);
  font-size: 18px;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item .content .titles {
  margin-bottom: 8px;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item .content .titles p {
  margin-bottom: 0;
  color: #9cb5db;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-section.fortech-footer .footer-wrapper.style2 .footer-widget.style1.fortech-footer-shell .footer-single-wid .footer-contact-menu.fortech-footer-contact .contact-item .content h4 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}
.footer-section.fortech-footer .fortech-footer-address {
  padding: 22px 22px 18px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-section.fortech-footer .fortech-footer-address .address-label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.footer-section.fortech-footer .fortech-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-section.fortech-footer .fortech-footer-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.footer-section.fortech-footer .fortech-footer-social a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ff932b 0%, #ff6b12 100%);
  border-color: transparent;
  color: var(--white);
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom {
  padding: 26px 0 34px;
  margin-top: 16px;
  border-top: none;
  background: transparent;
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper {
  gap: 16px;
  padding-top: 0;
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper .footer-services.fortech-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper .footer-services.fortech-footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}
.footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper .footer-services.fortech-footer-bottom-links li a:hover {
  color: #ffb16a;
}
@media (max-width: 1199px) {
  .footer-section.fortech-footer .fortech-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section.fortech-footer .fortech-footer-cta-copy h2 {
    max-width: 100%;
  }
  .footer-section.fortech-footer .fortech-footer-cta-action {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell {
    padding: 30px 24px 0;
  }
  .footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell .row {
    padding-bottom: 30px;
  }
  .footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
@media (max-width: 575px) {
  .footer-section.fortech-footer {
    padding-top: 24px;
  }
  .footer-section.fortech-footer .fortech-footer-cta {
    padding: 26px 20px;
    gap: 24px;
    border-radius: 24px;
  }
  .footer-section.fortech-footer .fortech-footer-kicker {
    margin-bottom: 14px;
  }
  .footer-section.fortech-footer .fortech-footer-cta-copy h2 {
    font-size: 30px;
  }
  .footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell {
    padding: 26px 18px 0;
    border-radius: 24px;
  }
  .footer-section.fortech-footer .footer-widget.style1.fortech-footer-shell .row {
    padding-bottom: 26px;
  }
  .footer-section.fortech-footer .fortech-footer-logo {
    max-width: 230px;
  }
  .footer-section.fortech-footer .footer-bottom.fortech-footer-bottom .footer-bottom-wrapper .footer-services.fortech-footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}
.fortech-footer-legacy {
  display: none !important;
}
.footer-section.fortech-footer {
  /* padding: 34px 0 44px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.34), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #c9dad3 0%, #b7ccc4 100%); */
}
.footer-section.fortech-footer::before,
.footer-section.fortech-footer::after {
  display: none;
}
.footer-section.fortech-footer .container {
  position: relative;
  z-index: 1;
}
.footer-section.fortech-footer .fortech-footer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(248, 244, 236, 0.96);
  border: 1px solid rgba(8, 58, 55, 0.12);
  box-shadow: 0 12px 26px rgba(7, 58, 55, 0.1);
}
.footer-section.fortech-footer .fortech-footer-brand {
  display: inline-flex;
  align-items: center;
}
.footer-section.fortech-footer .fortech-footer-brand img {
  width: clamp(138px, 18vw, 186px);
  height: auto;
}
.footer-section.fortech-footer .fortech-footer-toplink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #0a3d39;
  background: rgba(211, 146, 42, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}
.footer-section.fortech-footer .fortech-footer-toplink:hover {
  transform: translateY(-2px);
  color: #0a3d39;
  background: rgba(211, 146, 42, 0.2);
}
.footer-section.fortech-footer .fortech-footer-card {
 position: relative;
  overflow: hidden;
  padding: 38px 38px 0;
  border-radius: 24px;
  /* background: linear-gradient(135deg, #0c4b46 0%, #083a38 100%); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: 0 28px 48px rgba(6, 42, 40, 0.2);
}
.footer-section.fortech-footer .fortech-footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(142deg, transparent 48%, rgba(158, 211, 198, 0.12) 48.4%, transparent 49%),
    linear-gradient(29deg, transparent 66%, rgba(158, 211, 198, 0.1) 66.3%, transparent 67%),
    linear-gradient(332deg, transparent 58%, rgba(158, 211, 198, 0.09) 58.3%, transparent 59%);
  pointer-events: none;
  opacity: 0.92;
}
.footer-section.fortech-footer .fortech-footer-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, #c78622 0%, #ebb24d 48%, #c78622 100%);
}
.footer-section.fortech-footer .fortech-footer-grid {
  position: relative;
  z-index: 1;
  padding-bottom: 34px;
}
.footer-section.fortech-footer .fortech-footer-intro,
.footer-section.fortech-footer .fortech-footer-column {
  height: 100%;
}
.footer-section.fortech-footer .fortech-footer-intro h2,
.footer-section.fortech-footer .fortech-footer-column h3,
.footer-section.fortech-footer .fortech-footer-enquiry-copy h3 {
  color: #f7f4eb;
}
.footer-section.fortech-footer .fortech-footer-eyebrow,
.footer-section.fortech-footer .fortech-footer-enquiry-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(247, 244, 235, 0.12);
  color: #d8c28b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-section.fortech-footer .fortech-footer-intro h2 {
  max-width: 14ch;
  margin-bottom: 16px;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.08;
}
.footer-section.fortech-footer .fortech-footer-intro p,
.footer-section.fortech-footer .fortech-footer-smallcopy,
.footer-section.fortech-footer .fortech-footer-enquiry-copy p,
.footer-section.fortech-footer .fortech-footer-strip p {
  color: rgba(247, 244, 235, 0.76);
}
.footer-section.fortech-footer .fortech-footer-intro p,
.footer-section.fortech-footer .fortech-footer-enquiry-copy p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
}
.footer-section.fortech-footer .fortech-footer-backtop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid rgba(247, 244, 235, 0.16);
  background: rgba(247, 244, 235, 0.06);
  color: #f7f4eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.footer-section.fortech-footer .fortech-footer-backtop:hover {
  transform: translateY(-3px);
  color: #f7f4eb;
  background: rgba(247, 244, 235, 0.12);
}
.footer-section.fortech-footer .fortech-footer-column h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.2;
}
.footer-section.fortech-footer .fortech-footer-list,
.footer-section.fortech-footer .fortech-footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-section.fortech-footer .fortech-footer-list li {
  margin-bottom: 12px;
}
.footer-section.fortech-footer .fortech-footer-list li:last-child,
.footer-section.fortech-footer .fortech-footer-contact-list li:last-child {
  margin-bottom: 0;
}
.footer-section.fortech-footer .fortech-footer-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 235, 0.82);
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.25s ease, color 0.25s ease;
}
.footer-section.fortech-footer .fortech-footer-list li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6a148;
  box-shadow: 0 0 0 5px rgba(214, 161, 72, 0.12);
}
.footer-section.fortech-footer .fortech-footer-list li a:hover {
  transform: translateX(4px);
  color: #f7f4eb;
}
.footer-section.fortech-footer .fortech-footer-contact-list li {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(247, 244, 235, 0.1);
}
.footer-section.fortech-footer .fortech-footer-contact-list li span {
  display: block;
  margin-bottom: 6px;
  color: #d8c28b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-section.fortech-footer .fortech-footer-contact-list li a,
.footer-section.fortech-footer .fortech-footer-contact-list li p {
  margin: 0;
  color: #f7f4eb;
  font-size: 15px;
  line-height: 1.7;
}
.footer-section.fortech-footer .fortech-footer-contact-list li a:hover {
  color: #f1cb80;
}
.footer-section.fortech-footer .fortech-footer-address {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(247, 244, 235, 0.08);
  border: 1px solid rgba(247, 244, 235, 0.1);
}
.footer-section.fortech-footer .fortech-footer-address-label {
  display: block;
  margin-bottom: 10px;
  color: #f7f4eb;
  font-size: 15px;
  font-weight: 700;
}
.footer-section.fortech-footer .fortech-footer-address address {
  margin: 0;
  color: rgba(247, 244, 235, 0.8);
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}
.footer-section.fortech-footer .fortech-footer-smallcopy {
  /* max-width: 24ch; */
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.75;
}
.footer-section.fortech-footer .fortech-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-section.fortech-footer .fortech-footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(247, 244, 235, 0.08);
  border: 1px solid rgba(247, 244, 235, 0.12);
  color: #f7f4eb;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.footer-section.fortech-footer .fortech-footer-social a:hover {
  transform: translateY(-4px);
  background: #d3922a;
  color: #0a3d39;
}
.footer-section.fortech-footer .fortech-footer-enquiry {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 26px;
  border-top: 1px solid rgba(247, 244, 235, 0.12);
}
.footer-section.fortech-footer .fortech-footer-enquiry-copy {
  max-width: 700px;
}
.footer-section.fortech-footer .fortech-footer-enquiry-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}
.footer-section.fortech-footer .fortech-footer-enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-width: 210px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efd08a 0%, #d3922a 100%);
  color: #0b3c39;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 26px rgba(211, 146, 42, 0.24);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-section.fortech-footer .fortech-footer-enquiry-btn:hover {
  transform: translateY(-3px);
  color: #0b3c39;
  filter: brightness(1.04);
}
.footer-section.fortech-footer .fortech-footer-strip {
  position: relative;
  z-index: 1;
  padding: 14px 0 24px;
}
.footer-section.fortech-footer .fortech-footer-strip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1399px) {
  .footer-section.fortech-footer .fortech-footer-card {
    padding: 30px 24px 0;
  }
  .footer-section.fortech-footer .fortech-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(120px, 0.68fr) minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 22px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 28px;
  }
  .footer-section.fortech-footer .fortech-footer-grid > [class*="col-"] {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-section.fortech-footer .fortech-footer-logo img {
    max-width: 170px;
  }
  .footer-section.fortech-footer .fortech-footer-smallcopy,
  .footer-section.fortech-footer .fortech-footer-list li a,
  .footer-section.fortech-footer .fortech-footer-contact-list li a,
  .footer-section.fortech-footer .fortech-footer-contact-list li p,
  .footer-section.fortech-footer .fortech-footer-address address {
    font-size: 13px;
    line-height: 1.55;
  }
  .footer-section.fortech-footer .fortech-footer-column h3 {
    margin-bottom: 14px;
    font-size: 16px;
  }
  .footer-section.fortech-footer .fortech-footer-address {
    padding: 14px;
  }
  .footer-section.fortech-footer .fortech-footer-address iframe {
    height: 120px;
  }
  .footer-section.fortech-footer .fortech-footer-strip .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-section.fortech-footer .fortech-footer-strip .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .footer-section.fortech-footer .fortech-footer-card {
    padding: 30px 24px 0;
  }
  .footer-section.fortech-footer .fortech-footer-grid {
    padding-bottom: 28px;
  }
  .footer-section.fortech-footer .fortech-footer-enquiry {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer-section.fortech-footer .fortech-footer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section.fortech-footer .fortech-footer-intro h2 {
    max-width: 100%;
  }
  .footer-section.fortech-footer .fortech-footer-smallcopy {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-section.fortech-footer {
    padding: 24px 0 34px;
  }
  .footer-section.fortech-footer .fortech-footer-topbar {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .footer-section.fortech-footer .fortech-footer-card {
    padding: 26px 18px 0;
    border-radius: 20px;
  }
  .footer-section.fortech-footer .fortech-footer-enquiry-btn {
    width: 100%;
    min-width: 0;
  }
  .footer-section.fortech-footer .fortech-footer-strip {
    padding: 12px 0 20px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content {
  gap: 18px;
  flex-wrap: wrap;
  animation: fortechRiseUp 0.8s ease-out 0.46s both;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .btn-wrapper .gt-btn {
  box-shadow: 0 18px 26px rgba(252, 90, 17, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  margin-top: 20px;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .btn-wrapper .gt-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 34px rgba(252, 90, 17, 0.22);
  filter: brightness(1.02);
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info {
  padding: 14px 18px 14px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: 0 16px 28px rgba(19, 19, 19, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(19, 19, 19, 0.08);
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff6a19 0%, #ff9447 100%);
  flex: 0 0 52px;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info .icon i {
  color: var(--white);
  font-size: 18px;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info p {
  margin-bottom: 5px;
  color: #7a8190;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content .meta-info h5 {
  margin: 0;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part {
  overflow: visible;
  position: relative;
  z-index: 2;
  animation: fortechVisualEnter 1s ease-out 0.2s both;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
  position: relative;
  min-height: 450px;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 520px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 420px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::before {
 content: "";
  position: absolute;
  inset: 43px 34px 34px 92px;
  border-radius: 86px;
  background: linear-gradient(135deg, #2052a1 0%, #1e4b9a17 100%);
  transform: rotate(11deg);
  box-shadow: 0 28px 46px rgba(252, 90, 17, 0.24);
  animation: fortechBlobFloat 7s ease-in-out infinite;
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::before {
    inset: 32px 0 26px 42px;
    border-radius: 58px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::after {
  /* content: "";
  position: absolute;
  left: 138px;
  top: 150px;
  width: 160px;
  height: 160px;
  border-left: 4px solid rgba(255, 255, 255, 0.94);
  border-bottom: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 32px;
  transform: rotate(45deg);
  z-index: 1; */
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::after {
    left: 76px;
    top: 108px;
    width: 114px;
    height: 114px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb {
  position: absolute;
  right: 12px;
  bottom: 60px;
  z-index: 3;
  width: min(100%, 620px);
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slider {
  width: 100%;
  overflow: visible;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
  min-height: 546px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 14px 0 18px;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 560px;
  border-radius: 28px;
  filter: drop-shadow(0px 24px 34px rgba(19, 37, 68, 0.2));
  transform-origin: center bottom;
  animation: fortechMachineFloat 5.5s ease-in-out infinite;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-pagination {
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(19, 37, 68, 0.22);
  opacity: 1;
  transition: width 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-pagination .swiper-pagination-bullet-active {
  width: 34px;
  background: #132544;
  transform: scale(1.02);
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0px 28px 42px rgba(19, 37, 68, 0.24));
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb {
    right: 0;
    width: 100%;
  }
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
    min-height: 500px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb {
    bottom: 44px;
  }
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
    min-height: 390px;
    padding: 0 8px;
  }
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img {
    max-height: 390px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-pagination {
    bottom: -4px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-shape-1,
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-shape-2 {
  display: none;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .hero-tag {
  position: absolute;
  left: 18px;
  top: 42px;
  z-index: 4;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .hero-tag span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #132544;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 28px rgba(19, 37, 68, 0.18);
  animation: fortechPulseSoft 3.2s ease-in-out infinite;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content {
  right: -8px;
  bottom: 24px;
  z-index: 4;
  width: 300px;
  padding: 22px 22px 18px;
  border-radius: 26px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 38px rgba(19, 19, 19, 0.08);
  animation: fortechCardFloat 6s ease-in-out infinite;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 44px rgba(19, 19, 19, 0.1);
}
@media (max-width: 991px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content {
    right: 0;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content {
    width: 220px;
    padding: 16px;
    bottom: 8px;
  }
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content .metacloud {
  gap: 14px;
  margin-bottom: 8px;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content .metacloud span {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content .metacloud span:last-child {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 196, 58, 0.2);
  color: #f3b316;
  font-size: 22px;
  flex: 0 0 48px;
  animation: fortechStarPulse 2.8s ease-in-out infinite;
}
.intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content p {
  margin-bottom: 0;
  color: #596173;
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content p {
    font-size: 13px;
  }
}
@keyframes fortechHeroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fortechRiseUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fortechVisualEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fortechGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 42px 0, 0 42px;
  }
}
@keyframes fortechBlobFloat {
  0%, 100% {
    transform: rotate(11deg) translateY(0px) scale(1);
  }
  50% {
    transform: rotate(13deg) translateY(-10px) scale(1.02);
  }
}
@keyframes fortechMachineFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fortechCardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes fortechPulseSoft {
  0%, 100% {
    box-shadow: 0 18px 28px rgba(19, 37, 68, 0.18);
  }
  50% {
    box-shadow: 0 22px 34px rgba(19, 37, 68, 0.28);
  }
}
@keyframes fortechStarPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-section .intro-wrapper.style2.fortech-hero,
  .intro-section .intro-wrapper.style2.fortech-hero::before,
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part,
  .intro-section .intro-wrapper.style2.fortech-hero .hero-feature-list span,
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .db-content,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::before,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .hero-tag span,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content .metacloud span:last-child {
    animation: none !important;
    transition: none !important;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.intro-section .intro-wrapper.style3 .intro-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(98deg, rgba(252, 90, 17, 0.7) 12.15%, rgba(252, 90, 17, 0.75) 38.95%, rgba(0, 0, 0, 0.8) 71.17%);
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content {
  padding-top: 126px;
  position: relative;
  z-index: 99;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part {
  margin-top: 92px;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part {
    margin-top: 0;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title {
    margin-bottom: 20px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 {
  color: var(--white);
  font-weight: 400;
}
@media (max-width: 500px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 {
    font-size: 48px;
    line-height: 50px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 span {
  color: var(--white);
  font-size: 100px;
  font-style: normal;
  font-weight: 800;
  line-height: 100px;
}
@media (max-width: 1399px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 span {
    font-size: 90px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 span {
    font-size: 79px;
  }
}
@media (max-width: 500px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 span {
    font-size: 70px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title .title h1 span {
    font-size: 48px;
    line-height: 48px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title p {
  max-width: 553px;
  color: var(--white);
  position: relative;
  padding-left: 43px;
}
@media (max-width: 470px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title p {
    font-size: 14px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title p::before {
  content: "";
  width: 10px;
  height: 80px;
  background: var(--white);
  position: absolute;
  left: 0;
  top: -10px;
  margin-right: 33px;
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .section-title p::before {
    top: 8px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .video-btn {
  margin-top: 55px;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .video-btn a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .video-btn a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--white);
  text-align: center;
  color: var(--theme);
  display: inline-block;
  border-radius: 50%;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .inner-left-part .video-btn a h4 {
  color: var(--white);
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box {
  position: relative;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .main-thumb {
  position: relative;
  text-align: center;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .main-thumb img {
  max-width: 100%;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape1 img {
  max-width: 100%;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape2 {
  position: absolute;
  bottom: 342px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape2 {
    bottom: 245px;
    right: 10px;
  }
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape2 {
    bottom: 320px;
    right: 30px;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape2 {
    bottom: 206px;
    right: 37px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .thumb-shape2 img {
  max-width: 100%;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter {
  display: inline-flex;
  text-align: center;
  gap: 20px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  bottom: 90px;
  left: -53px;
}
@media (max-width: 575px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter {
    left: 0;
  }
}
@media (max-width: 450px) {
  .intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter {
    bottom: 4px;
  }
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter .icon img {
  max-width: 100%;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter .content span {
  color: var(--900, #131313);
  font-family: "DM Sans";
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}
.intro-section .intro-wrapper.style3 .intro-bg .intro-content .intro-right-part .thumb-box .clint-counter .content p {
  color: var(--800, #565969);
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* 18.About*/
/*----------------------------------------------
    # About style here
----------------------------------------------*/
.about-wrapper.style1 {
  position: relative;
}
.about-wrapper.style1 .about-shape {
  position: absolute;
  left: 0;
  z-index: 1;
  opacity: 0.1;
}
.about-wrapper.style1 .content {
  margin: 29px 0 40px 0;
  position: relative;
  z-index: 99;
}
.about-wrapper.style1 .content ul {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  row-gap: 20px;
}
@media (max-width: 450px) {
  .about-wrapper.style1 .content ul {
    grid-template-columns: repeat(1, 2fr);
  }
}
.about-wrapper.style1 .content ul li {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 500px) {
  .about-wrapper.style1 .content ul li {
    font-size: 13px;
  }
}
.about-wrapper.style1 .content ul li::before {
  content: "\f101";
  color: var(--title);
  font-family: "Font Awesome 6 pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-right: 10px;
}
.about-wrapper.style1 .btn-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}
@media (max-width: 575px) {
  .about-wrapper.style1 .btn-content {
    flex-direction: column;
    gap: 20px;
  }
}
.about-wrapper.style1 .btn-content .contact-way {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 43px 20px 30px;
}
.about-wrapper.style1 .btn-content .contact-way .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--title);
  border-radius: 50%;
  color: var(--theme);
}
.about-wrapper.style1 .btn-content .contact-way .content {
  margin: 0;
}
.about-wrapper.style1 .btn-content .contact-way .content p {
  margin-bottom: 5px;
}
.about-wrapper.style1 .btn-content .contact-way .content a {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.about-wrapper.style1 .thumb-box {
  position: absolute;
  right: 0;
  z-index: 99;
}
@media (max-width: 1899px) {
  .about-wrapper.style1 .thumb-box {
    right: -91px;
  }
}
@media (max-width: 1800px) {
  .about-wrapper.style1 .thumb-box {
    right: -183px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style1 .thumb-box {
    right: -320px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style1 .thumb-box {
    position: relative;
    left: 0;
  }
}
.about-wrapper.style1 .thumb-box .thumb {
  position: relative;
}
.about-wrapper.style1 .thumb-box .thumb img {
  max-width: 100%;
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 1899px) {
  .about-wrapper.style1 .thumb-box .thumb img {
    max-width: 90%;
  }
}
@media (max-width: 1800px) {
  .about-wrapper.style1 .thumb-box .thumb img {
    max-width: 80%;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style1 .thumb-box .thumb img {
    max-width: 65%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style1 .thumb-box .thumb img {
    max-width: 100%;
    border-radius: 20px;
  }
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter {
  display: inline-flex;
  text-align: start;
  gap: 20px;
  background-color: var(--title);
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  bottom: 60px;
  right: 32px;
}
@media (max-width: 1899px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    right: 135px;
  }
}
@media (max-width: 1800px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    right: 265px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    right: 388px;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    right: 100px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    left: 0;
  }
}
@media (max-width: 450px) {
  .about-wrapper.style1 .thumb-box .thumb .clint-counter {
    display: none;
  }
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter .icon {
  width: 53px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter .icon img {
  max-width: 100%;
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter .content {
  margin: 0;
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter .content span {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}
.about-wrapper.style1 .thumb-box .thumb .clint-counter .content p {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.about-wrapper.style2 .thumb-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper.style2 .thumb-box {
    justify-content: center;
  }
}
.about-wrapper.style2 .thumb-box .thumb img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
}
.about-wrapper.style2 .thumb-box .thumb .thumb-content {
  margin-top: 20px;
  background: var(--theme);
  text-align: center;
  padding: 44px 20px;
  border-radius: 20px;
}
.about-wrapper.style2 .thumb-box .thumb .thumb-content span {
  color: var(--white);
  text-align: center;
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
}
.about-wrapper.style2 .thumb-box .thumb .thumb-content h4 {
  color: var(--white);
  width: 123px;
  margin: 0 auto;
}
.about-wrapper.style2 .content {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
}
@media (max-width: 450px) {
  .about-wrapper.style2 .content {
    grid-template-columns: repeat(1, 2fr);
  }
}
.about-wrapper.style2 .content .content-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 16px 20px 30px;
}
.about-wrapper.style2 .content .content-item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.about-wrapper.style2 .content .content-item h4 {
  color: var(--title);
}
.about-wrapper.style3 .about-left-content .thumb img {
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-left-content .thumb img {
    width: 100%;
  }
}
.about-wrapper.style3 .about-left-content .content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-left-content .content {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style3 .about-left-content .content {
    flex-direction: row;
  }
}
.about-wrapper.style3 .about-left-content .content .experiences {
  background: var(--title);
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  max-width: 300px;
}
.about-wrapper.style3 .about-left-content .content .experiences span {
  color: var(--white);
  text-align: center;
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
}
.about-wrapper.style3 .about-left-content .content .experiences h5 {
  color: var(--white);
  text-align: center;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  max-width: 123px;
  margin: 0 auto;
}
.about-wrapper.style3 .about-left-content .content .experiences p {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
}
.about-wrapper.style3 .about-left-content .content .thumb img {
  max-width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .about-wrapper.style3 .about-left-content .content .thumb img {
    display: none;
  }
}
.about-wrapper.style3 .about-right-content {
  margin-top: 60px;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .about-wrapper.style3 .about-right-content {
    margin-left: 0;
  }
}
.about-wrapper.style3 .about-right-content .title-section {
  margin-left: -285px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper.style3 .about-right-content .title-section {
    margin-left: -190px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-right-content .title-section {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-right-content .title-section .title-content {
    margin-bottom: 30px;
  }
}
.about-wrapper.style3 .about-right-content .title-section .title-content .sub-title {
  color: var(--title);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.about-wrapper.style3 .about-right-content .title-section .title-content h2 {
  color: var(--title);
  font-family: "DM Sans";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-right-content .title-section .title-content h2 {
    font-size: 59px;
    line-height: 59px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style3 .about-right-content .title-section .title-content h2 {
    font-size: 34px;
    line-height: 39px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style3 .about-right-content .title-section .title-content h2 {
    font-size: 45px;
    line-height: 48px;
  }
}
.about-wrapper.style3 .about-right-content .content p {
  color: #565969;
  margin-bottom: 20px;
}
.about-wrapper.style3 .about-right-content .content ul {
  margin-bottom: 20px;
}
.about-wrapper.style3 .about-right-content .content ul li {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
.about-wrapper.style3 .about-right-content .content ul li:last-child {
  margin-bottom: 0;
}
.about-wrapper.style3 .about-right-content .content ul li:before {
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  position: relative;
  margin-right: 15px;
}
.about-wrapper.style3 .about-right-content .content .contact-way {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 43px 20px 30px;
}
.about-wrapper.style3 .about-right-content .content .contact-way .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #EFEFEF;
  border-radius: 50%;
}
.about-wrapper.style3 .about-right-content .content .contact-way .content p {
  margin-bottom: 5px;
}
.about-wrapper.style3 .about-right-content .content .contact-way .content a {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

/* 21.Testimonial  */
/* 26.Blog Extra */
/* 27.Sidebar */
/*----------------------------------------------
    # Widget Sidebar style here
----------------------------------------------*/
.main-sidebar .single-sidebar-widget {
  padding: 20px;
  background-color: var(--bg2);
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
}
.main-sidebar .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .arrow-btn {
  display: inline-block;
  position: absolute;
  top: 7px;
  right: -32px;
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background: var(--theme2);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul {
  padding-left: 0;
  list-style-type: none;
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li {
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--title);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li a span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li:hover {
  background: var(--theme2);
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li:hover a {
  color: var(--title) !important;
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li:hover span {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li.active {
  background: var(--theme2);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li.active a {
  color: var(--title);
}
.main-sidebar .single-sidebar-widget .item-widget-categories ul li.active span {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 5px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background: var(--theme2);
  color: var(--title) !important;
}

.recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.recent-post-area .recent-items:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E5E5;
}
.recent-post-area .recent-items .recent-thumb img {
  width: 78px;
  height: 79px;
  object-fit: cover;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.recent-post-area .recent-items .recent-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.recent-post-area .recent-items .recent-content ul li {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  margin-bottom: 0;
}
.recent-post-area .recent-items .recent-content h6 a {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme) !important;
}

@media (max-width: 1199px) {
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}
@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}
/* 28.Card */
.wch-card-section.style1 .card-box {
  border-radius: 20px;
  border: 1px solid #1D3353;
  background: var(--900, #131313);
  padding: 30px 33px 30px 30px;
  display: inline-block;
  position: relative;
}
@media (max-width: 1399px) {
  .wch-card-section.style1 .card-box {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .wch-card-section.style1 .card-box {
    display: block;
  }
}
.wch-card-section.style1 .card-box .content span {
  color: var(--White, #FFF);
  font-family: "DM Sans", sans-serif;
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 5px;
  opacity: 0.1;
  display: flex;
  justify-content: end;
}
.wch-card-section.style1 .card-box .content h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.wch-card-section.style1 .card-box .content P {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 240px;
}
.wch-card-section.style1 .card-box .icon {
  position: absolute;
  top: -35px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #1D3353;
  text-align: center;
  border-radius: 50%;
}

.service-card.style1 {
  padding: 30px 30px 42px 30px;
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  border-bottom: 3px solid #D0D0D0;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.service-card.style1 .thumb-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}
.service-card.style1 .thumb-box img {
  border-radius: 20px;
  max-width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
@media (max-width: 991px) {
  .service-card.style1 .thumb-box img {
    width: 100%;
  }
}
.service-card.style1 .content h3 {
  color: var(--title);
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .service-card.style1 .content h3 a {
    font-size: 17px;
  }
}
.service-card.style1 .content p {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.service-card.style1:hover {
  border-radius: 20px;
  border-bottom: 3px solid var(--theme);
}
.service-card.style1:hover .thumb-box img {
  transform: scale(1.2);
}
.service-card.style2 {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #1D3353;
  background: var(--title);
}
.service-card.style2 .thumb {
  margin-bottom: 30px;
}
.service-card.style2 .thumb img {
  max-width: 100%;
  max-height: 100%;
}
.service-card.style2 .content {
  margin-bottom: 50px;
}
.service-card.style2 .content h3 {
  color: var(--white);
}
.service-card.style3 {
  border-radius: 20px;
  background: var(--white);
  padding: 40px;
  filter: drop-shadow(0px 0px 60px rgba(0, 0, 0, 0.05));
}
@media (max-width: 450px) {
  .service-card.style3 {
    padding: 25px;
  }
}
.service-card.style3 h3 {
  color: var(--title);
  margin-bottom: 36px;
}
@media (max-width: 1399px) {
  .service-card.style3 h3 {
    font-size: 25px;
  }
}
.service-card.style3 p {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}
.service-card.style3 ul {
  margin-bottom: 30px;
}
.service-card.style3 ul li {
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.service-card.style3 ul li:last-child {
  margin-bottom: 0;
}
.service-card.style3 ul li:before {
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  position: relative;
  margin-right: 15px;
}
.service-card.style4 {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
}
.service-card.style4 .thumb {
  margin-bottom: 20px;
  position: relative;
}
.service-card.style4 .thumb a img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1199px) {
  .service-card.style4 .thumb a img {
    width: 100%;
  }
}
.service-card.style4 .thumb .icon {
  position: absolute;
  left: 55px;
  bottom: -35px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #EFEFEF;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-card.style4 .thumb .icon svg path {
  fill: "DM Sans", sans-serif;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-card.style4 .content {
  padding: 20px 30px;
}
.service-card.style4 .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.service-card.style4 .content .meta span {
  color: #565969;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
}
.service-card.style4 .content .meta span:first-child::after {
  content: "";
  width: 0.5px;
  height: 10px;
  background: var(--theme);
  position: absolute;
  top: 4px;
  right: -10px;
}
.service-card.style4 .content .title {
  margin-bottom: 30px;
}
.service-card.style4 .content .title h3 a {
  color: var(--title);
}
.service-card.style4:hover .thumb .icon {
  background: var(--theme);
}
.service-card.style4:hover .thumb .icon svg path {
  fill: var(--white);
}

.project-card.style1 {
  margin-bottom: 30px;
}
.project-card.style1:last-child {
  margin-bottom: 0;
}
.project-card.style1 .thumb-box {
  position: relative;
}
.project-card.style1 .thumb-box .thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.project-card.style1 .thumb-box .thumb img {
  border-radius: 20px;
  max-width: 100%;
  max-height: auto;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
.project-card.style1 .thumb-box .thumb-content {
  border-radius: 20px;
  background: var(--white);
  padding: 20px 65px 18px 18px;
  border-bottom: 3px solid var(--theme);
  position: absolute;
  bottom: 20px;
  left: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .project-card.style1 .thumb-box .thumb-content {
    padding: 20px 20px 18px 20px;
  }
}
.project-card.style1 .thumb-box .thumb-content h5 a {
  color: var(--title);
}
.project-card.style1 .thumb-box .thumb-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #565969;
}
.project-card.style1:hover .thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.project-card.style1:hover .thumb-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1.1);
  -ms-transform: scaleY(1.1);
  transform: scaleY(1.1);
  bottom: 30px;
}
.project-card.style3 .thumb-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.project-card.style3 .thumb-box .thumb {
  position: relative;
  z-index: 9;
}
.project-card.style3 .thumb-box .thumb img {
  border-radius: 20px;
  max-width: 100%;
  max-height: 100%;
}
.project-card.style3 .thumb-box .thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 19, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
}
.project-card.style3 .thumb-box .thumb-content {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.project-card.style3 .thumb-box .thumb-content p {
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .project-card.style3 .thumb-box .thumb-content p {
    font-size: 14px;
  }
}
.project-card.style3 .thumb-box .thumb-content h3 {
  color: var(--white);
}
.project-card.style3 .thumb-box:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.project-card.style3 .thumb-box:hover .thumb-content {
  visibility: visible;
  opacity: 1;
}
.project-card.style4 {
  margin-bottom: 30px;
}
.project-card.style4:last-child {
  margin-bottom: 0;
}
.project-card.style4 .thumb-box {
  position: relative;
}
.project-card.style4 .thumb-box .thumb {
  position: relative;
}
.project-card.style4 .thumb-box .thumb img {
  border-radius: 20px;
  max-width: 100%;
  max-height: auto;
}
.project-card.style4 .thumb-box .thumb-content {
  border-radius: 20px;
  background: var(--theme);
  padding: 20px 65px 18px 18px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .project-card.style4 .thumb-box .thumb-content {
    padding: 20px 45px 18px 18px;
    left: 10px;
  }
}
.project-card.style4 .thumb-box .thumb-content h5 a {
  color: var(--white);
}
.project-card.style4 .thumb-box .thumb-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}
.project-card.style4:hover .thumb-content {
  visibility: visible;
  opacity: 1;
}

.counter-card.style1 {
  padding: 75px 66px 80px 66px;
  border-radius: 999px;
  border: 2px solid var(--theme);
  background: var(--white);
}
@media (max-width: 1399px) {
  .counter-card.style1 {
    padding: 50px 40px 50px 40px;
  }
}
.counter-card.style1 .main-counter {
  text-align: center;
}
.counter-card.style1 .main-counter span {
  color: var(--title);
  text-align: center;
  font-family: "DM Sans";
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 9px;
}
.counter-card.style1 .main-counter p {
  color: #565969;
  margin-bottom: 45px;
}
.counter-card.style1 .icon-box {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
  margin: auto;
}
.counter-card.style2 .counter-box {
  border-radius: 20px;
  border-top: 3px solid var(--theme);
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 77px 20px;
  text-align: center;
}
.counter-card.style2 .counter-box span {
  color: var(--title);
  text-align: center;
  font-family: "DM Sans";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
.counter-card.style2 .counter-box p {
  color: #565969;
  margin-top: 10px;
}
.counter-card.style3 .counter-box {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
}
.counter-card.style3 .counter-box span {
  color: var(--title);
  text-align: center;
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 20px;
  display: inline-block;
}
.counter-card.style3 .counter-box h5 {
  color: #565969;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
}
.counter-card.style4 {
  border-radius: 999px;
  border: 2px solid var(--theme);
  background: #EFEFEF;
  width: 250px;
  height: 250px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 575px) {
  .counter-card.style4 {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 450px) {
  .counter-card.style4 {
    width: 150px;
    height: 150px;
  }
}
.counter-card.style4 .main-counter {
  text-align: center;
}
.counter-card.style4 .main-counter span {
  color: var(--title);
  text-align: center;
  font-family: "DM Sans";
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
@media (max-width: 450px) {
  .counter-card.style4 .main-counter span {
    font-size: 45.766px;
  }
}
.counter-card.style4 .main-counter p {
  color: #565969;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 450px) {
  .counter-card.style4 .main-counter p {
    font-size: 14px;
  }
}

.team-card.style1 .thumb-box {
  position: relative;
}
.team-card.style1 .thumb-box .thumb img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .team-card.style1 .thumb-box .thumb img {
    width: 100%;
  }
}
.team-card.style1 .thumb-box .thumb-content {
  max-width: 330px;
  margin: -65px auto auto auto;
}
@media (max-width: 767px) {
  .team-card.style1 .thumb-box .thumb-content {
    max-width: 267px;
  }
}
.team-card.style1 .thumb-box .thumb-content .man-info {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  border: 1px solid transparent;
  padding: 30px 63px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 999;
  display: inline-block;
  z-index: 99;
  position: relative;
}
.team-card.style1 .thumb-box .thumb-content .man-info h3 {
  color: var(--black);
  margin-bottom: 5px;
}
.team-card.style1 .thumb-box .thumb-content .man-info p {
  color: #565969;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.team-card.style1 .thumb-box:hover .thumb-content .man-info {
  border: 1px solid var(--theme);
}
.team-card.style2 {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  padding: 24px 30px;
}
@media (max-width: 1199px) {
  .team-card.style2 {
    padding: 0;
  }
}
.team-card.style2 .team-box {
  border-radius: 20px;
  border: 2px solid #D0D0D0;
  background: var(--white);
}
.team-card.style2 .team-box .thumb {
  text-align: center;
  padding-top: 36px;
}
.team-card.style2 .team-box .thumb img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}
.team-card.style2 .team-box .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 28px 36px 30px;
}
.team-card.style2 .team-box .content .person-info p {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 11px;
}
.team-card.style2 .team-box .content .person-info h4 {
  color: var(--title);
}
.team-card.style3 .thumb-box {
  border-radius: 999px 999px 20px 20px;
  border: 1px solid #D0D0D0;
  padding: 20px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-card.style3 .thumb-box .thumb {
  border-radius: 999px 999px 20px 20px;
  background: #EFEFEF;
  text-align: center;
  position: relative;
}
.team-card.style3 .thumb-box .thumb img {
  max-width: 100%;
}
.team-card.style3 .thumb-content {
  max-width: 330px;
  margin: -65px auto auto auto;
  position: relative;
}
@media (max-width: 767px) {
  .team-card.style3 .thumb-content {
    max-width: 267px;
  }
}
.team-card.style3 .thumb-content .man-info {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  border: 1px solid transparent;
  padding: 30px 63px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 999;
  display: inline-block;
  z-index: 99;
  position: relative;
}
.team-card.style3 .thumb-content .man-info h3 {
  color: var(--black);
  margin-bottom: 5px;
}
.team-card.style3 .thumb-content .man-info p {
  color: #565969;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.team-card.style3:hover .thumb-content .man-info {
  border: 1px solid var(--theme);
}
.team-card.style3:hover .thumb-box {
  border: 1px solid var(--theme);
}

.blog-card.style1 {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
}
.blog-card.style1 .thumb {
  margin-bottom: 20px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.blog-card.style1 .thumb a img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px 20px 0 0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (max-width: 1199px) {
  .blog-card.style1 .thumb a img {
    width: 100%;
  }
}
.blog-card.style1 .content {
  padding: 20px 30px;
}
.blog-card.style1 .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-card.style1 .content .meta span {
  color: #565969;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
}
.blog-card.style1 .content .meta span:first-child::after {
  content: "";
  width: 0.5px;
  height: 10px;
  background: var(--theme);
  position: absolute;
  top: 4px;
  right: -10px;
}
.blog-card.style1 .content .title {
  margin-bottom: 30px;
}
.blog-card.style1 .content .title h3 a {
  color: var(--title);
}
@media (max-width: 1199px) {
  .blog-card.style1 .content .title h3 a {
    font-size: 18px;
  }
}
.blog-card.style1:hover .thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-card.style2 {
  border-radius: 20px;
  background: var(--white);
}
.blog-card.style2 .thumb-box {
  position: relative;
}
.blog-card.style2 .thumb-box .thumb {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.blog-card.style2 .thumb-box .thumb a img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (max-width: 1199px) {
  .blog-card.style2 .thumb-box .thumb a img {
    width: 100%;
  }
}
.blog-card.style2 .thumb-box .content {
  padding: 30px 24px 30px 30px;
  position: absolute;
  right: 40px;
  bottom: -88px;
  border-radius: 0px 20px 20px 20px;
  background: #EFEFEF;
  backdrop-filter: blur(20px);
}
@media (max-width: 1199px) {
  .blog-card.style2 .thumb-box .content {
    bottom: 0px;
  }
}
@media (max-width: 1199px) {
  .blog-card.style2 .thumb-box .content {
    bottom: 0px;
    left: 0;
  }
}
.blog-card.style2 .thumb-box .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-card.style2 .thumb-box .content .meta span {
  color: #565969;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
}
.blog-card.style2 .thumb-box .content .meta span:first-child::after {
  content: "";
  width: 0.5px;
  height: 10px;
  background: #D0D0D0;
  position: absolute;
  top: 4px;
  right: -10px;
}
.blog-card.style2 .thumb-box .content .title {
  margin-bottom: 30px;
}
.blog-card.style2 .thumb-box .content .title h3 a {
  color: var(--title);
}
@media (max-width: 1199px) {
  .blog-card.style2 .thumb-box .content .title h3 a {
    font-size: 18px;
  }
}
.blog-card.style2:hover .thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-card.style3 {
  border-radius: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #EFEFEF;
  padding: 10px;
  position: relative;
}
.blog-card.style3 .thumb a img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 767px) {
  .blog-card.style3 .thumb a img {
    width: 100%;
  }
}
.blog-card.style3 .content {
  padding: 30px 50px 30px 20px;
}
.blog-card.style3 .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-card.style3 .content .meta span {
  color: #565969;
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
}
.blog-card.style3 .content .meta span:first-child::after {
  content: "";
  width: 0.5px;
  height: 10px;
  background: var(--theme);
  position: absolute;
  top: 4px;
  right: -10px;
}
.blog-card.style3 .content .title {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .blog-card.style3 .content .title h3 {
    font-size: 16px;
  }
}
.blog-card.style3 .content .title h3 a {
  color: var(--title);
}
@media (max-width: 1199px) {
  .blog-card.style3 .content .title h3 a {
    font-size: 16px;
  }
}
.blog-card.style3 .publish-date {
  background: var(--P, #FC5A11);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding: 10px 15px;
  display: inline-flex;
  position: absolute;
  right: -43px;
  bottom: 205px;
  z-index: 999;
  gap: 10px;
}
.blog-card.style3 .publish-date span {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.blog-card.style4 {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 60px;
}
.blog-card.style4:last-child {
  margin-bottom: 0;
}
.blog-card.style4 .thumb a img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1199px) {
  .blog-card.style4 .thumb a img {
    width: 100%;
  }
}
.blog-card.style4 .content {
  padding: 30px 40px 40px 40px;
}
@media (max-width: 450px) {
  .blog-card.style4 .content {
    padding: 20px;
  }
}
.blog-card.style4 .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .blog-card.style4 .content .meta {
    margin-bottom: 15px;
  }
}
.blog-card.style4 .content .meta span {
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blog-card.style4 .content .meta span:first-child::after {
  content: "";
  width: 0.5px;
  height: 10px;
  background: var(--theme);
  position: absolute;
  top: 4px;
  right: -10px;
}
.blog-card.style4 .content .title {
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .blog-card.style4 .content .title {
    margin-bottom: 10px;
  }
}
.blog-card.style4 .content .title h3 a {
  color: var(--title);
}
.blog-card.style4 .content p {
  color: #565969;
  margin-bottom: 46px;
}
@media (max-width: 450px) {
  .blog-card.style4 .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.testimonial-card.style2 {
  background: var(--theme);
  padding: 60px 33px 0px 60px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .testimonial-card.style2 {
    padding: 60px 33px 0px 33px;
  }
}
.testimonial-card.style2 .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.testimonial-card.style2 .meta ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card.style2 .meta ul li {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.testimonial-card.style2 .person-data {
  padding-bottom: 60px;
}
.testimonial-card.style2 .person-data h3 {
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-card.style2 .person-data h5 {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .testimonial-card.style2 .person-data h5 {
    margin-bottom: 10px;
  }
}
.testimonial-card.style2 .person-data p {
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 1399px) {
  .testimonial-card.style2 .person-data p {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .testimonial-card.style2 .person-data p {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .testimonial-card.style2 .person-data p {
    font-size: 16px;
    line-height: 20px;
  }
}
.testimonial-card.style2 .thumb-box {
  position: relative;
}
.testimonial-card.style2 .thumb-box .thumb {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .testimonial-card.style2 .thumb-box .thumb {
    text-align: center;
  }
}
.testimonial-card.style2 .thumb-box .thumb img {
  max-width: 100%;
  max-height: 100%;
}
.testimonial-card.style2 .thumb-box .thumb-shape {
  position: absolute;
  top: 39px;
  left: -10px;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1199px) {
  .testimonial-card.style2 .thumb-box .thumb-shape {
    left: -28px;
    top: 49px;
  }
}
@media (max-width: 991px) {
  .testimonial-card.style2 .thumb-box .thumb-shape {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .testimonial-card.style2 .thumb-box .thumb-shape {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .testimonial-card.style2 .thumb-box .thumb-shape img {
    max-width: 290px;
  }
}
.testimonial-card.style2 .thumb-box .blur-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 407px;
  opacity: 0.1;
  background: var(--white);
  filter: blur(50px);
  top: 39px;
  left: -10px;
  animation: pulse 3s ease-in-out infinite;
}
.testimonial-card.style3 {
  padding: 0 60px 0 45px;
}
@media (max-width: 1399px) {
  .testimonial-card.style3 {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .testimonial-card.style3 .icon {
    text-align: center;
  }
}
.testimonial-card.style3 .rating {
  margin: 30px 0;
}
.testimonial-card.style3 .rating ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .testimonial-card.style3 .rating ul {
    justify-content: center;
  }
}
.testimonial-card.style3 .rating ul li i {
  color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.testimonial-card.style3 .rating ul li:last-child i {
  color: #a1a1a1;
}
.testimonial-card.style3 .content p {
  color: var(--white);
  color: var(--White, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "DM Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
@media (max-width: 1399px) {
  .testimonial-card.style3 .content p {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .testimonial-card.style3 .content p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .testimonial-card.style3 .content p {
    padding-left: 15px;
  }
}
@media (max-width: 470px) {
  .testimonial-card.style3 .content p {
    font-size: 14px;
    line-height: 25px;
  }
}

/* 29.Feature */
/* 30.Form */
.contact-form.style2 {
  width: 630px;
  height: 593px;
  padding: 60px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
}
@media (max-width: 767px) {
  .contact-form.style2 {
    display: none;
  }
}
.contact-form.style2 form {
  display: flex;
  flex-direction: column;
}
.contact-form.style2 form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .contact-form.style2 form .form-row {
    flex-direction: column;
  }
}
.contact-form.style2 form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form.style2 form .form-row .form-group label {
  color: #131313;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}
.contact-form.style2 form .form-row .form-group .input-field,
.contact-form.style2 form .form-row .form-group .textarea-field {
  max-width: 240px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #d0d0d0;
  padding: 19px 30px;
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
}
.contact-form.style2 form .form-row .form-group .input-field::placeholder,
.contact-form.style2 form .form-row .form-group .textarea-field::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.contact-form.style2 form .form-row .form-group .textarea-field {
  border-radius: 20px;
  height: 110px;
  padding: 11px 20px;
  max-width: 100%;
}
.contact-form.style2 form .form-row .form-group.select-field {
  position: relative;
}
.contact-form.style2 form .form-row .form-group.select-field select.input-field {
  width: 100%;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form.style2 form .form-row .form-group.select-field .icon {
  position: absolute;
  top: 72%;
  right: 20px;
  transform: translateY(-72%);
  pointer-events: none;
}
.contact-form.style2 form .form-row .form-group.select-field .icon i {
  color: var(--theme);
  font-size: 16px;
}
.contact-form.style2 form .form-row .full-width {
  width: 100%;
}
.contact-form.style2 .btn-wrapper .gt-btn.style4 {
  display: inline;
}
.contact-form.style3 {
  width: 629px;
  border-radius: 20px;
  background: var(--title);
}
@media (max-width: 1399px) {
  .contact-form.style3 {
    width: 585px;
  }
}
@media (max-width: 1199px) {
  .contact-form.style3 {
    width: 640px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-form.style3 {
    width: 100%;
  }
}
.contact-form.style3 form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact-form.style3 form {
    margin: 0 15px;
  }
}
.contact-form.style3 form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-form.style3 form .form-row {
    row-gap: 30px;
  }
}
@media (max-width: 500px) {
  .contact-form.style3 form .form-row {
    flex-direction: column;
  }
}
.contact-form.style3 form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form.style3 form .form-row .form-group .input-field,
.contact-form.style3 form .form-row .form-group .textarea-field {
  max-width: 100%;
  border-radius: 999px;
  background: var(--title);
  border: 2px solid rgba(208, 208, 208, 0.2);
  padding: 15px 30px;
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
}
@media (max-width: 1399px) {
  .contact-form.style3 form .form-row .form-group .input-field,
  .contact-form.style3 form .form-row .form-group .textarea-field {
    max-width: 95%;
  }
}
.contact-form.style3 form .form-row .form-group .input-field::placeholder,
.contact-form.style3 form .form-row .form-group .textarea-field::placeholder {
  color: var(--white);
}
.contact-form.style3 form .form-row .form-group .textarea-field {
  border-radius: 20px;
  height: 140px;
  padding: 11px 20px;
  max-width: 100%;
}
.contact-form.style3 form .form-row .form-group.select-field {
  position: relative;
}
.contact-form.style3 form .form-row .form-group.select-field select.input-field {
  width: 100%;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form.style3 form .form-row .form-group.select-field .icon {
  position: absolute;
  top: 60%;
  right: 20px;
  transform: translateY(-60%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .contact-form.style3 form .form-row .form-group.select-field .icon {
    right: 40px;
  }
}
.contact-form.style3 form .form-row .form-group.select-field .icon i {
  color: var(--theme);
  font-size: 16px;
}
.contact-form.style3 form .form-row .full-width {
  width: 100%;
}
.contact-form.style3 .btn-wrapper .gt-btn.style4 {
  display: inline;
}

.blog-details-wrapper .contact-form h3 {
  color: #131313;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.9px;
  margin-bottom: 42px;
}
.blog-details-wrapper .contact-form form .input-field {
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: #FFF;
  outline: none;
  transition: all 0.3s ease;
}
.blog-details-wrapper .contact-form form .select-field {
  position: relative;
}
.blog-details-wrapper .contact-form form .select-field select {
  width: 100%;
  border: 1px solid #D0D0D0;
  background: var(--white);
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 999px;
  appearance: none;
  outline: none;
  transition: all 0.3s ease;
}
.blog-details-wrapper .contact-form form .select-field select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.blog-details-wrapper .contact-form form .select-field .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}
.blog-details-wrapper .contact-form form .select-field .icon i {
  font-size: 16px;
  color: #666;
}
.blog-details-wrapper .contact-form form .form-row {
  margin-bottom: 20px;
}
.blog-details-wrapper .contact-form form .form-row .textarea-field {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  border: 1px solid #D0D0D0;
  border-radius: 20px;
  min-height: 120px;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.git-wrapper.style1 .contact-form {
  background: #404040;
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .git-wrapper.style1 .contact-form {
    padding: 20px;
  }
}
.git-wrapper.style1 .contact-form h3 {
  color: var(--white);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.9px;
  margin-bottom: 40px;
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 {
  width: 50%;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .git-wrapper.style1 .contact-form form .row .col-xl-6:nth-child(2) {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .git-wrapper.style1 .contact-form form .row .col-xl-6 {
    width: 100%;
  }
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .input-field {
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  border-radius: 999px;
  border: 2px solid #D0D0D0;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .git-wrapper.style1 .contact-form form .row .col-xl-6 .input-field {
    margin-bottom: 0;
  }
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .input-field::placeholder {
  color: var(--white);
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .select-field {
  position: relative;
  color: var(--white);
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .select-field select {
  width: 100%;
  border-radius: 999px;
  border: 2px solid #D0D0D0;
  background: transparent;
  font-size: 16px;
  border-radius: 999px;
  appearance: none;
  outline: none;
  transition: all 0.3s ease;
  color: var(--white);
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .select-field select option {
  color: var(--title);
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .select-field .icon {
  position: absolute;
  top: 34%;
  right: 15px;
  -webkit-transform: translateY(-34%);
  -ms-transform: translateY(-34%);
  transform: translateY(-34%);
  pointer-events: none;
}
.git-wrapper.style1 .contact-form form .row .col-xl-6 .select-field .icon i {
  font-size: 16px;
  color: var(--white);
}
.git-wrapper.style1 .contact-form form .form-row {
  margin-bottom: 30px;
}
.git-wrapper.style1 .contact-form form .form-row .textarea-field {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 20px;
  border: 2px solid #D0D0D0;
  background: transparent;
  min-height: 120px;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.contact-page-wrapper .contact-form .title-section {
  margin-bottom: 40px;
}
.contact-page-wrapper .contact-form form .row .col-xl-6 {
  width: 50%;
  padding: 0 10px;
}
.contact-page-wrapper .contact-form form .row .col-xl-6 .input-field {
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: #FFF;
  outline: none;
  transition: all 0.3s ease;
}
.contact-page-wrapper .contact-form form .form-row {
  margin-bottom: 20px;
}
.contact-page-wrapper .contact-form form .form-row .textarea-field {
  width: 100%;
  height: 200px;
  padding: 15px 30px;
  font-size: 16px;
  border: 1px solid #D0D0D0;
  border-radius: 20px;
  min-height: 120px;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

/* 31.Index */
/*----------------------------------------------
    # Services style here
----------------------------------------------*/
.service-wrapper.style1 .title-section {
  max-width: 520px;
  margin: 0 auto 60px auto;
}
.service-wrapper.style1 .category {
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: var(--white);
}
.service-wrapper.style1 .category .title {
  border-radius: 20px 20px 0px 0px;
  background: var(--theme);
  padding: 10px 20px;
  margin-bottom: 30px;
}
.service-wrapper.style1 .category .title h4 {
  color: var(--white);
  text-align: center;
}
.service-wrapper.style1 .category .category-wid {
  padding: 0 15px 30px 15px;
}
.service-wrapper.style1 .category .category-wid .single-category {
  border-radius: 20px;
  background: #EFEFEF;
  margin-bottom: 25px;
}
.service-wrapper.style1 .category .category-wid .single-category:last-child {
  margin-bottom: 0;
}
.service-wrapper.style1 .category .category-wid .single-category a {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
}
.service-wrapper.style2 .title-section {
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.service-wrapper.style2 .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .service-wrapper.style2 .thumb img {
    width: 100%;
  }
}

/*----------------------------------------------
    # Project style here
----------------------------------------------*/
@media (max-width: 991px) {
  .project-wrapper.style1 .title-section.style2 {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 991px) {
  .project-wrapper.style1 .title-section.style2 h2 {
    max-width: 100%;
  }
}
.project-wrapper.style1 .title-section.style2 .highlight {
  max-width: 475px;
}
@media (max-width: 1199px) {
  .project-wrapper.style1 .title-section.style2 .highlight {
    max-width: 415px;
  }
}
@media (max-width: 991px) {
  .project-wrapper.style1 .title-section.style2 .highlight {
    max-width: 100%;
  }
}

/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
@media (max-width: 991px) {
  .faq-wrapper.style1 .title-section.style2 {
    flex-direction: column;
    row-gap: 20px;
    align-items: start;
  }
}
.faq-wrapper.style1 .title-section.style2 .title-content {
  max-width: 400px;
}
@media (max-width: 991px) {
  .faq-wrapper.style1 .title-section.style2 .title-content {
    max-width: 100%;
    text-align: start;
  }
}
@media (max-width: 991px) {
  .faq-wrapper.style1 .title-section.style2 .title-content h2 {
    max-width: 100%;
  }
}
.faq-wrapper.style1 .title-section.style2 .highlight {
  max-width: 550px;
}
@media (max-width: 991px) {
  .faq-wrapper.style1 .title-section.style2 .highlight {
    max-width: 100%;
  }
}

/*----------------------------------------------
    # Wcu style here
----------------------------------------------*/
.wcu-wrapper.style1 {
  padding: 120px 0 642px 0;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style1 {
    padding: 100px 0 642px 0;
  }
}
@media (max-width: 991px) {
  .wcu-wrapper.style1 {
    padding: 80px 0 542px 0;
  }
}
.wcu-wrapper.style1 .wcu-left-part {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  align-items: center;
  row-gap: 65px;
  column-gap: 23px;
}
@media (max-width: 450px) {
  .wcu-wrapper.style1 .wcu-left-part {
    grid-template-columns: repeat(1, 2fr);
  }
}
.wcu-wrapper.style1 .wcu-right-part .thumb-box {
  position: relative;
  margin-top: -25px;
}
.wcu-wrapper.style1 .wcu-right-part .thumb-box .thumb {
  position: relative;
  text-align: center;
}
.wcu-wrapper.style1 .wcu-right-part .thumb-box .thumb img {
  text-align: center;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style1 .wcu-right-part .thumb-box .thumb img {
    width: 100%;
  }
}
.wcu-wrapper.style1 .wcu-right-part .thumb-box .thumb-content {
  position: absolute;
  bottom: 7px;
  right: 40px;
}

/*----------------------------------------------
    # Team style here
----------------------------------------------*/
.team-wrapper.style1 {
  margin-top: -520px;
}

/*----------------------------------------------
    # Testimonial style here
----------------------------------------------*/
.testimonial-wrapper.style1 {
  position: relative;
  padding-bottom: 155px;
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 {
    padding-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .testimonial-wrapper.style1 {
    padding-bottom: 30px;
  }
}
.testimonial-wrapper.style1 .title-section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 .title-section {
    margin-bottom: 30px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider {
  width: 740px;
  height: 504px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-wrapper.style1 .testimonial-slider {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .testimonial-wrapper.style1 .testimonial-slider {
    height: 395px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 80px;
  position: relative;
  z-index: 9999;
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial {
    padding: 60px;
  }
}
@media (max-width: 450px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial {
    padding: 10px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner {
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 40px 30px 140px 40px;
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 500px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner {
    padding: 10px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner .content h3 {
  color: var(--title);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.9px;
  margin-bottom: 5px;
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner .content p {
  color: #565969;
  margin-bottom: 20px;
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .testimonial-inner .content h6 {
  color: #565969;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-1 {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100%;
}
@media (max-width: 500px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-1 {
    width: 70px;
    height: 70px;
    line-height: 70px;
    top: 20px;
    left: 9px;
  }
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-1 svg {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 450px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-1 {
    display: none;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-2 {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100%;
}
@media (max-width: 500px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-2 {
    width: 70px;
    height: 70px;
    line-height: 70px;
    bottom: 20px;
    right: 33px;
  }
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-2 svg {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 450px) {
  .testimonial-wrapper.style1 .testimonial-slider .main-testimonial .icon-shape-2 {
    top: -8px;
    right: -3px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .swiper-horizontal > .swiper-pagination-bullets,
.testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-horizontal,
.testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-fraction {
  left: -196px;
  bottom: 85px;
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 .testimonial-slider .swiper-horizontal > .swiper-pagination-bullets,
  .testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-horizontal,
  .testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-fraction {
    left: 0;
    bottom: 40px;
  }
}
.testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: inline-block;
  background-color: #D0D0D0;
  transition: background-color 0.3s;
  margin: 0 8px;
  border-radius: 100px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-bullet-active {
  background-color: var(--theme);
  position: relative;
}
.testimonial-wrapper.style1 .testimonial-slider .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  background: transparent;
  width: 12px;
  height: 12px;
  padding: 8px;
  border-radius: 100%;
  border: 1px solid var(--theme);
  display: block;
}
.testimonial-wrapper.style1 .thumb {
  position: absolute;
  right: 308px;
  top: 170px;
}
@media (max-width: 1700px) {
  .testimonial-wrapper.style1 .thumb {
    right: 204px;
  }
}
@media (max-width: 1600px) {
  .testimonial-wrapper.style1 .thumb {
    right: 154px;
  }
}
@media (max-width: 1399px) {
  .testimonial-wrapper.style1 .thumb {
    right: 49px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper.style1 .thumb {
    display: none;
  }
}
.testimonial-wrapper.style1 .thumb img {
  border-radius: 20px;
  max-width: 100%;
}

/* 32.Index2 */
/*----------------------------------------------
    # Features style here
----------------------------------------------*/
@media (max-width: 991px) {
  .featured-wrapper.style2 .title-section.style8 .title-content h2 {
    max-width: 656px;
  }
}

/*----------------------------------------------
    # Message Section style here
----------------------------------------------*/
.message-section {
  padding-top: 120px;
  margin-bottom: -229px;
  position: relative;
  z-index: 999;
}
.message-section .message-left-part .contact-form {
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 66px 58px 62px;
}
.message-section .message-left-part .contact-form h3 {
  color: var(--title);
  margin-bottom: 36px;
}
.message-section .message-left-part .contact-form form input[type=text] {
  width: 100%;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid #E9E9E9;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.message-section .message-left-part .contact-form form input[type=email] {
  width: 100%;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid #E9E9E9;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.message-section .message-left-part .contact-form form textarea {
  margin: 30px 0;
  padding: 15px 0 0 30px;
  width: 100%;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 30px;
  border: 1px solid #E9E9E9;
  outline: none;
  resize: none;
  min-height: 133px;
}
.message-section .message-right-part {
  margin-top: -125px;
}
.message-section .message-right-part .thumb img {
  max-width: 100%;
  max-height: 100%;
}

/*----------------------------------------------
    # Counter style here
----------------------------------------------*/
.counter-wrapper.style2 .container {
  position: relative;
}
.counter-wrapper.style2 .container .counter-bg {
  position: absolute;
  bottom: 46px;
  right: 53px;
  left: 80px;
  z-index: -1;
}
.counter-wrapper.style2 .container .counter-bg svg {
  max-width: 1000px;
}
@media (max-width: 1199px) {
  .counter-wrapper.style2 .container .counter-bg {
    right: 38px;
    left: 3px;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper.style2 .container .counter-bg {
    top: 256px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper.style2 .container .counter-bg {
    display: none;
  }
}
@media (max-width: 991px) {
  .counter-wrapper.style2 .container .counter-bg svg {
    max-width: 631px;
  }
}
.counter-wrapper.style2 .container .counter-bg .animated-path {
  stroke-dasharray: 10 10;
  stroke-dashoffset: 1000;
  animation: drawPath 51s linear infinite;
}

/*----------------------------------------------
    # Project style here
----------------------------------------------*/
.project-wrapper.style2 .title-section {
  margin-bottom: 40px;
}
.project-wrapper.style2 .title-section.style1 .title-content {
  margin-bottom: 60px;
  max-width: 741px;
  margin: 0 auto;
}
.project-wrapper.style2 .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.project-wrapper.style2 .thumb img {
  width: 100%;
  height: 385px;
  border-radius: 20px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (max-width: 991px) {
  .project-wrapper.style2 .thumb img {
    height: 315px;
  }
}
.project-wrapper.style2 .thumb .thumb-content {
  border-radius: 20px;
  background: var(--white);
  padding: 15px 28px 21px 28px;
  position: absolute;
  left: 75px;
  bottom: -30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
@media (max-width: 1199px) {
  .project-wrapper.style2 .thumb .thumb-content {
    left: 16px;
  }
}
@media (max-width: 991px) {
  .project-wrapper.style2 .thumb .thumb-content {
    left: 6px;
  }
}
@media (max-width: 767px) {
  .project-wrapper.style2 .thumb .thumb-content {
    left: 40px;
  }
}
.project-wrapper.style2 .thumb .thumb-content h4 {
  color: var(--title);
  margin-bottom: 5px;
  text-align: center;
}
.project-wrapper.style2 .thumb .thumb-content p {
  color: #565969;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.project-wrapper.style2 .thumb:hover img {
  transform: scale(1.2);
}
.project-wrapper.style2 .thumb:hover .thumb-content {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
  z-index: 999;
  -webkit-transform: scaleY(1.1);
  -ms-transform: scaleY(1.1);
  transform: scaleY(1.1);
}
.project-wrapper.style2 .filter-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .project-wrapper.style2 .filter-buttons {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.project-wrapper.style2 .filter-buttons button {
  margin: 0 10px;
  padding: 10px 15px;
  background-color: var(--theme);
  color: var(--title);
  border: none;
  border-radius: 20px;
  background: #EFEFEF;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 575px) {
  .project-wrapper.style2 .filter-buttons button {
    margin: 0 5px;
    padding: 10px 8px;
  }
}
.project-wrapper.style2 .filter-buttons button:hover, .project-wrapper.style2 .filter-buttons button.active {
  background-color: var(--theme);
  color: #fff;
}

/*----------------------------------------------
    # Video style here
----------------------------------------------*/
.service-wrapper.style3 {
  padding: 120px 0 371px;
}
@media (max-width: 575px) {
  .service-wrapper.style3 {
    padding: 35px 0 35px;
  }
}

/*----------------------------------------------
    # Services style here
----------------------------------------------*/
.video-wrapper.style1 {
  margin-top: -251px;
}
@media (max-width: 991px) {
  .video-wrapper.style1 {
    margin-top: -275px;
  }
}
@media (max-width: 575px) {
  .video-wrapper.style1 {
    margin-top: 35px;
  }
}

/*----------------------------------------------
    # Featured style here
----------------------------------------------*/
@media (max-width: 1199px) {
  .featured-wrapper.style2 .video-box-area {
    display: none;
  }
}
.featured-wrapper.style2 .featured-category {
  margin-left: 32px;
}
@media (max-width: 1199px) {
  .featured-wrapper.style2 .featured-category {
    margin-left: 0;
  }
}
.featured-wrapper.style2 .featured-category .single-category {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: var(--white);
  padding: 32px 40px 28px 40px;
  cursor: pointer;
}
.featured-wrapper.style2 .featured-category .single-category:last-child {
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .featured-wrapper.style2 .featured-category .single-category {
    padding: 20px 40px 20px 40px;
  }
}
@media (max-width: 450px) {
  .featured-wrapper.style2 .featured-category .single-category {
    padding: 20px;
  }
}
.featured-wrapper.style2 .featured-category .single-category .thumb {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .featured-wrapper.style2 .featured-category .single-category .thumb {
    gap: 15px;
  }
}
.featured-wrapper.style2 .featured-category .single-category .thumb img {
  max-width: 100%;
}
@media (max-width: 450px) {
  .featured-wrapper.style2 .featured-category .single-category .thumb img {
    display: none;
  }
}
.featured-wrapper.style2 .featured-category .single-category .thumb .title h4 {
  max-width: 268px;
}
.featured-wrapper.style2 .featured-category .single-category .thumb .title h4 a {
  color: var(--title);
}
@media (max-width: 450px) {
  .featured-wrapper.style2 .featured-category .single-category .thumb .title h4 a {
    font-size: 14px;
  }
}
.featured-wrapper.style2 .featured-category .single-category p {
  max-width: 229px;
  color: #565969;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
@media (max-width: 767px) {
  .featured-wrapper.style2 .featured-category .single-category p {
    display: none;
  }
}
.featured-wrapper.style2 .featured-category .single-category .icon a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #EFEFEF;
  border-radius: 50%;
  display: inline-block;
}
.featured-wrapper.style2 .featured-category .single-category:hover .icon a {
  background: var(--theme);
}

/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq-wrapper.style2 .title-section.style2 {
  margin-bottom: 30px;
  display: inline-block;
}
.faq-wrapper.style2 .title-section.style2 .title-content {
  margin-bottom: 30px;
}
.faq-wrapper.style2 .title-section.style2 .title-content .sub-title {
  color: var(--title);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-wrapper.style2 .title-section.style2 .title-content h2 {
  color: var(--title);
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .faq-wrapper.style2 .title-section.style2 .title-content h2 {
    font-size: 55px;
  }
}
.faq-wrapper.style2 .title-section.style2 p {
  color: #565969;
  max-width: 590px;
}

/*----------------------------------------------
    # Team style here
----------------------------------------------*/
.team-wrapper.style2 .title-section.style5 .title-content {
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .team-wrapper.style2 .title-section.style5 .title-content h2 {
    font-size: 32px !important;
  }
}

/*----------------------------------------------
    # Testimonial style here
----------------------------------------------*/
.testimonial-wrapper.style2 .title-section.style4 .title-content {
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .testimonial-wrapper.style2 .title-section.style4 .title-content h2 {
    font-size: 32px !important;
  }
}

/* 33.Index3 */
/*----------------------------------------------
    # Service style here
----------------------------------------------*/
.service-wrapper.style4 .title-section .title-content {
  max-width: 630px;
  margin: 0 auto;
}

/*----------------------------------------------
    # Project style here
----------------------------------------------*/
.project-wrapper.style3 .title-section.style1 .title-content {
  margin-bottom: 60px;
  max-width: 741px;
  margin: 0 auto;
}

/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq-wrapper.style3 .thumb img {
  max-width: 100%;
}
@media (max-width: 1199px) {
  .faq-wrapper.style3 .thumb img {
    width: 100%;
  }
}

/*----------------------------------------------
    # Cta style here
----------------------------------------------*/
.cta-wrapper.style1 {
  margin-top: -110px;
  position: relative;
}
.cta-wrapper.style1 .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 60px;
}
@media (max-width: 991px) {
  .cta-wrapper.style1 .cta-box {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 450px) {
  .cta-wrapper.style1 .cta-box {
    padding: 30px;
  }
}
.cta-wrapper.style1 .cta-box h2 {
  color: var(--title);
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  max-width: 463px;
}
@media (max-width: 991px) {
  .cta-wrapper.style1 .cta-box h2 {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .cta-wrapper.style1 .cta-box h2 {
    font-size: 40px;
  }
}
.cta-wrapper.style1 .cta-box .icon img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .cta-wrapper.style1 .cta-box .contact-content {
    text-align: center;
  }
}
.cta-wrapper.style1 .cta-box .contact-content p {
  color: var(--title);
  margin-bottom: 20px;
}
.cta-wrapper.style1 .cta-box .contact-content h2 {
  color: var(--title);
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

/*----------------------------------------------
    # testimonial style here
----------------------------------------------*/
.testimonial-wrapper.style3 {
  position: relative;
}
.testimonial-wrapper.style3 .main-testimonial {
  background: var(--title);
  padding: 60px 0;
  position: relative;
  border-radius: 20px;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style3 .main-testimonial {
    padding-right: 20px;
  }
}
.testimonial-wrapper.style3 .client-info {
  text-align: center;
  margin-top: -244px;
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style3 .client-info {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper.style3 .client-info {
    margin-left: 20px;
  }
}
.testimonial-wrapper.style3 .client-info .thumb {
  margin-bottom: 30px;
}
.testimonial-wrapper.style3 .client-info .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
.testimonial-wrapper.style3 .client-info .content {
  text-align: center;
}
.testimonial-wrapper.style3 .client-info .content h3 {
  text-align: center;
  color: var(--white);
  margin-bottom: 5px;
}
.testimonial-wrapper.style3 .client-info .content p {
  text-align: center;
  color: var(--white);
}

/* 34.Video */
.video-box-area {
  position: relative;
  z-index: 3;
}
.video-box-area .section-bg {
  z-index: 4;
}
.video-box-area .video-box {
  position: relative;
  z-index: 5;
}
.video-box-area .video-box .video-thumb img {
  border-radius: 20px;
  max-width: 100%;
}
.video-box-area .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.video-box-area .video-box .play-btn > i {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 95px;
  text-align: center;
  border: 5px solid #8e898d;
  background: var(--theme);
  color: var(--white);
  font-size: 40px;
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
@media (max-width: 767px) {
  .video-box-area .video-box .play-btn > i {
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 25px;
  }
}
.video-box-area .video-box .play-btn:after, .video-box-area .video-box .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(246, 248, 240);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.video-box-area .video-box .play-btn:after {
  animation-delay: 2s;
}
.video-box-area .video-box .play-btn:hover i {
  background-color: var(--theme);
  color: var(--white);
}
.video-box-area .video-box .play-btn:hover:after, .video-box-area .video-box .play-btn:hover:before {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 35.Faq */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq-accordion.style2 .faq-item {
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 30px;
}
.faq-accordion.style2 .faq-item:last-child {
  border-bottom: none;
}
.faq-accordion.style2 .faq-item.active {
  border: 1px solid red;
  border-radius: 30px;
}
.faq-accordion.style2 .faq-item.active .faq-question {
  padding: 30px 30px 10px 30px;
}
@media (max-width: 1399px) {
  .faq-accordion.style2 .faq-item.active .faq-question {
    padding: 30px 10px 10px 10px;
  }
}
.faq-accordion.style2 .faq-item.active .icon {
  background: var(--theme);
  color: var(--white);
}
.faq-accordion.style2 .faq-item.active .faq-answer {
  padding: 0 85px 30px 85px;
}
@media (max-width: 575px) {
  .faq-accordion.style2 .faq-item.active .faq-answer {
    padding: 0 35px 30px 35px;
  }
}
.faq-accordion.style2 .faq-question {
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  outline: none;
}
.faq-accordion.style2 .faq-question h4 {
  color: var(--title);
}
@media (max-width: 1399px) {
  .faq-accordion.style2 .faq-question h4 {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .faq-accordion.style2 .faq-question h4 {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .faq-accordion.style2 .faq-question h4 {
    font-size: 13px;
    max-width: 200px;
  }
}
@media (max-width: 450px) {
  .faq-accordion.style2 .faq-question h4 {
    font-size: 14px;
    max-width: 287px;
    text-align: start;
  }
}
.faq-accordion.style2 .faq-question h4 span {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .faq-accordion.style2 .faq-question h4 span {
    margin-right: 5px;
  }
}
.faq-accordion.style2 .faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  -o-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  background: transparent;
  border-radius: 30px;
}
.faq-accordion.style2 .faq-answer p {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 575px) {
  .faq-accordion.style2 .faq-answer p {
    font-size: 14px;
  }
}
.faq-accordion.style2 .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--theme);
  border-radius: 999px;
  background: #EFEFEF;
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.proj-accordion.style1 .proj-accordion-item {
  background: var(--white);
  border: none;
  margin-bottom: 21px;
  border-radius: 20px;
  overflow: hidden;
  transition: border 0.3s ease;
}
.proj-accordion.style1 .proj-accordion-item:last-child {
  margin-bottom: 0;
}
.proj-accordion.style1 .proj-accordion-item.proj-active {
  border: 1px solid var(--theme);
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .proj-accordion.style1 .proj-accordion-item .proj-accordion-header {
    padding: 17px 30px;
  }
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-header .proj-accordion-number {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-right: 20px;
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-header .proj-accordion-question {
  flex: 1;
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 575px) {
  .proj-accordion.style1 .proj-accordion-item .proj-accordion-header .proj-accordion-question {
    font-size: 14px;
  }
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-header .proj-accordion-arrow {
  color: #ff6600;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-header .proj-accordion-arrow i {
  color: var(--title);
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-body {
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}
.proj-accordion.style1 .proj-accordion-item .proj-accordion-body p {
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .proj-accordion.style1 .proj-accordion-item .proj-accordion-body p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .proj-accordion.style1 .proj-accordion-item .proj-accordion-body p {
    font-size: 12px;
  }
}
.proj-accordion.style1 .proj-accordion-item.proj-active .proj-accordion-body {
  height: 65px;
  padding: 0 77px 20px 77px;
}
@media (max-width: 575px) {
  .proj-accordion.style1 .proj-accordion-item.proj-active .proj-accordion-body {
    height: 83px;
    padding: 0 15px 20px 77px;
  }
}
.proj-accordion.style1 .proj-accordion-item.proj-active .proj-accordion-arrow svg path {
  fill: var(--theme);
}
.proj-accordion.style1 .proj-accordion-item.proj-active .proj-accordion-arrow i {
  color: var(--theme);
  transform: rotate(90deg);
}
.proj-accordion.style2 .proj-accordion-item {
  background: var(--white);
  border: none;
  margin-bottom: 21px;
  border-radius: 20px;
  overflow: hidden;
  transition: border 0.3s ease;
}
.proj-accordion.style2 .proj-accordion-item:last-child {
  margin-bottom: 0;
}
.proj-accordion.style2 .proj-accordion-item.proj-active {
  border: 1px solid var(--theme);
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
}
@media (max-width: 1399px) {
  .proj-accordion.style2 .proj-accordion-item .proj-accordion-header {
    padding: 17px 30px;
  }
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-header .proj-accordion-number {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-right: 20px;
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-header .proj-accordion-question {
  flex: 1;
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 575px) {
  .proj-accordion.style2 .proj-accordion-item .proj-accordion-header .proj-accordion-question {
    font-size: 14px;
  }
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-header .proj-accordion-arrow {
  color: #ff6600;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-header .proj-accordion-arrow i {
  color: var(--title);
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-body {
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}
.proj-accordion.style2 .proj-accordion-item .proj-accordion-body p {
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .proj-accordion.style2 .proj-accordion-item .proj-accordion-body p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .proj-accordion.style2 .proj-accordion-item .proj-accordion-body p {
    font-size: 11px;
  }
}
@media (max-width: 575px) {
  .proj-accordion.style2 .proj-accordion-item .proj-accordion-body p {
    font-size: 12px;
  }
}
.proj-accordion.style2 .proj-accordion-item.proj-active {
  background: var(--theme);
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-body {
  height: 65px;
  padding: 0 77px 20px 77px;
}
@media (max-width: 575px) {
  .proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-body {
    height: 83px;
    padding: 0 15px 20px 77px;
  }
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-body p {
  color: var(--white);
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-header .proj-accordion-number {
  color: var(--white);
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-question {
  color: var(--white);
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-arrow svg path {
  fill: var(--theme);
}
.proj-accordion.style2 .proj-accordion-item.proj-active .proj-accordion-arrow i {
  color: var(--theme);
  transform: rotate(90deg);
}

/* 36.simple section */
.accordion.style1 .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: transparent;
}
.accordion.style1 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion.style1 .accordion-item button {
  gap: 20px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #D0D0D0;
  background: transparent;
}
.accordion.style1 .accordion-item button span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--900, #131313);
  font-family: "DM Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
.accordion.style1 .accordion-item button span svg path {
  fill: var(--title);
}
.accordion.style1 .accordion-item button:after {
  display: none;
}
.accordion.style1 .accordion-item button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.accordion.style1 .accordion-item button:not(.collapsed) .icon-box {
  background-color: var(--theme);
}
.accordion.style1 .accordion-item button .accordion-button.collapsed {
  background: var(--white);
}
.accordion.style1 .accordion-item button .accordion-button.collapsed:after {
  display: none;
}
.accordion.style1 .accordion-item .accordion-collapse .accordion-body {
  padding-top: 20px !important;
}
.accordion.style1 .accordion-item .accordion-collapse .accordion-body p {
  margin-left: 57px;
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.accordion.style2 .accordion-item {
  border: none;
  margin-bottom: 25px;
}
.accordion.style2 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion.style2 .accordion-item button {
  gap: 20px;
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
.accordion.style2 .accordion-item button .icon-box {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--900, #131313);
  font-family: "DM Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
.accordion.style2 .accordion-item button .icon-box svg path {
  fill: var(--title);
}
.accordion.style2 .accordion-item button:after {
  display: none;
}
.accordion.style2 .accordion-item button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.accordion.style2 .accordion-item button:not(.collapsed) .icon-box {
  background-color: var(--theme);
}
.accordion.style2 .accordion-item button .accordion-button.collapsed {
  background: var(--white);
}
.accordion.style2 .accordion-item button .accordion-button.collapsed:after {
  display: none;
}
.accordion.style2 .accordion-item .accordion-collapse .accordion-body {
  padding-top: 20px !important;
}
.accordion.style2 .accordion-item .accordion-collapse .accordion-body p {
  margin-left: 57px;
  color: #565969;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.icon.style1 {
  position: relative;
  z-index: 999;
}
.icon.style1 .share {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.icon.style1 .share i {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.icon.style1 .socail-icon {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 999px;
  background: #EFEFEF;
  padding: 15px 8px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.icon.style1:hover .socail-icon {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.icon.style2 {
  position: relative;
  z-index: 999;
}
.icon.style2 .share {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
}
.icon.style2 .share i {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.icon.style2 .socail-icon {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 999px;
  background: #EFEFEF;
  padding: 15px 8px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.icon.style2:hover .socail-icon {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

.social-icon.style1 {
  margin-top: 30px;
}
.social-icon.style1 ul {
  display: flex;
  gap: 17px;
  align-items: center;
}
.social-icon.style1 ul li a {
  width: 37.414px;
  height: 36.827px;
  line-height: 36.827px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.102);
  -webkit-transition: background-color all 0.5s ease;
  -o-transition: background-color all 0.5s ease;
  transition: background-color all 0.5s ease;
}
.social-icon.style1 ul li a i {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.social-icon.style1 ul li:hover a {
  background: var(--theme);
}

.page-pagination {
  display: flex;
  justify-content: center;
}
.page-pagination span {
  margin-inline-end: 10px;
}
.page-pagination span a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--title);
  background: transparent;
  border: 1px solid #D0D0D0;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-pagination span a i {
  color: var(--theme);
}
.page-pagination span a:hover {
  background: var(--theme);
  color: var(--white) !important;
}
.page-pagination span a:hover i {
  color: var(--white) !important;
}

/*37.slider */
.arrow-btn.style1 {
  position: absolute;
  top: 94px;
  right: 308px;
}
@media (max-width: 1199px) {
  .arrow-btn.style1 {
    right: 100px;
  }
}
@media (max-width: 767px) {
  .arrow-btn.style1 {
    display: none;
  }
}
.arrow-btn.style1 .slider-prev,
.arrow-btn.style1 .slider-next {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  background: rgba(252, 90, 17, 0.1);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  color: var(--white);
  margin-right: 15px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style1 .slider-prev:last-child,
.arrow-btn.style1 .slider-next:last-child {
  margin-right: 0;
}
.arrow-btn.style1 .slider-prev:hover,
.arrow-btn.style1 .slider-next:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style2 {
  position: relative;
}
.arrow-btn.style2 .slider-prev {
  position: absolute;
  left: -108px;
  bottom: 215px;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: var(--theme2);
  color: var(--theme);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style2 .slider-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style2 .slider-next {
  position: absolute;
  right: -108px;
  bottom: 215px;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style2 .slider-next:hover {
  background: var(--theme2);
  color: var(--white);
}
.arrow-btn.style3 {
  position: absolute;
  left: 614px;
  bottom: 100px;
}
.arrow-btn.style3 .slider-prev,
.arrow-btn.style3 .slider-next {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: #F5F5F5;
  color: #CCCCCC;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style3 .slider-prev:hover,
.arrow-btn.style3 .slider-next:hover {
  background: #E5E5E5;
  color: #111111;
}
.arrow-btn.style4 .slider-prev {
  position: absolute;
  left: -25px;
  top: 70%;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  transition: all 0.4s;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style4 .slider-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style4 .slider-next {
  position: absolute;
  right: -25px;
  top: 70%;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  transform: translateY(-70%);
  transition: all 0.4s;
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style4 .slider-next:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style5 .slider-prev {
  position: absolute;
  right: 98px;
  bottom: -60px;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: var(--white);
  color: var(--theme);
  border: 1px solid var(--theme);
  transition: all 0.4s;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style5 .slider-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style5 .slider-next {
  position: absolute;
  right: 30px;
  bottom: -60px;
  z-index: 9;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 24px;
  background: var(--white);
  color: var(--theme);
  border: 1px solid var(--theme);
  transform: translateY(-70%);
  transition: all 0.4s;
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style5 .slider-next:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style6 {
  position: absolute;
  top: 94px;
  left: 76.6%;
}
@media (max-width: 767px) {
  .arrow-btn.style6 {
    display: none;
  }
}
.arrow-btn.style6 .slider-prev,
.arrow-btn.style6 .slider-next {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  background: rgba(252, 90, 17, 0.1);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  color: var(--black);
  margin-right: 15px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.arrow-btn.style6 .slider-prev:last-child,
.arrow-btn.style6 .slider-next:last-child {
  margin-right: 0;
}
.arrow-btn.style6 .slider-prev:hover,
.arrow-btn.style6 .slider-next:hover {
  background: var(--theme);
  color: var(--white);
}
.arrow-btn.style7 {
  position: relative;
  z-index: 9999;
}
@media (max-width: 500px) {
  .arrow-btn.style7 {
    display: none;
  }
}
.arrow-btn.style7 .slider-prev {
  position: absolute;
  left: 0;
  bottom: -120px;
  z-index: 9;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #fad1cb;
  color: var(--title);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1199px) {
  .arrow-btn.style7 .slider-prev {
    bottom: -85px;
  }
}
@media (max-width: 991px) {
  .arrow-btn.style7 .slider-prev {
    bottom: -54px;
  }
}
@media (max-width: 991px) {
  .arrow-btn.style7 .slider-prev {
    bottom: -80px;
  }
}
.arrow-btn.style7 .slider-prev::after {
  content: "";
  width: 1175px;
  height: 1px;
  border: 1px dashed #D0D0D0;
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .arrow-btn.style7 .slider-prev::after {
    width: 994px;
  }
}
@media (max-width: 1199px) {
  .arrow-btn.style7 .slider-prev::after {
    width: 816px;
  }
}
@media (max-width: 991px) {
  .arrow-btn.style7 .slider-prev::after {
    width: 574px;
  }
}
@media (max-width: 767px) {
  .arrow-btn.style7 .slider-prev::after {
    width: 396px;
  }
}
.arrow-btn.style7 .slider-prev:hover {
  background: var(--theme);
  color: var(--black);
}
.arrow-btn.style7 .slider-next {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: 9;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fad1cb;
  color: var(--title);
  filter: drop-shadow(0px 6px 50px rgba(37, 37, 37, 0.05));
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1199px) {
  .arrow-btn.style7 .slider-next {
    bottom: -85px;
  }
}
@media (max-width: 991px) {
  .arrow-btn.style7 .slider-next {
    bottom: -54px;
  }
}
@media (max-width: 991px) {
  .arrow-btn.style7 .slider-next {
    bottom: -80px;
  }
}
.arrow-btn.style7 .slider-next:hover {
  background: var(--theme);
  color: var(--white);
}

/*38.Text Slider */
.scrolling-wrap.style1 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background-color: var(--theme);
  padding: 26px 0;
  position: relative;
  z-index: -1;
}
.scrolling-wrap.style1 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 40px;
  cursor: pointer;
}
.scrolling-wrap.style1 .comm .cmn-textslide-1 {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 59.766px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .scrolling-wrap.style1 .comm .cmn-textslide-1 {
    font-size: 34px;
    line-height: 34px;
  }
}
.scrolling-wrap.style1 .comm .cmn-textslide-2 {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 59.766px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .scrolling-wrap.style1 .comm .cmn-textslide-2 {
    font-size: 34px;
    line-height: 34px;
  }
}
.scrolling-wrap.style1:hover .comm {
  animation-play-state: paused;
}
.scrolling-wrap.style3 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background-color: transparent;
  position: relative;
  z-index: 999;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 {
    padding-bottom: 40px;
  }
}
.scrolling-wrap.style3 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 40px;
  cursor: pointer;
}
.scrolling-wrap.style3 .comm .cmn-textslide-1 {
  color: var(--white);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 8px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 .comm .cmn-textslide-1 {
    font-size: 40px;
  }
}
.scrolling-wrap.style3 .comm .cmn-textslide-1:nth-child(2n) {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  background: transparent;
}
.scrolling-wrap.style3:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
/*39.widget */
.widget.style1 {
  border-radius: 20px;
  background: var(--White, #FFF);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 40px;
}
.widget.style1 .single-widget .wid-title {
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 19px 30px;
  text-align: center;
  margin-bottom: 20px;
}
.widget.style1 .single-widget .wid-title h4 {
  color: var(--title);
}
.widget.style1 .single-widget .widget-categories {
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  margin-bottom: 20px;
}
.widget.style1 .single-widget .widget-categories:last-child {
  margin-bottom: 0;
}
.widget.style1 .single-widget .widget-categories ul li a {
  color: var(--title);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 30px;
}
@media (max-width: 1199px) {
  .widget.style1 .single-widget .widget-categories ul li a {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .widget.style1 .single-widget .widget-categories ul li a {
    padding: 19px 17px;
  }
}
.widget.style1 .single-widget .widget-categories ul li a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: rgba(252, 90, 17, 0.1);
  border-radius: 50%;
  color: var(--theme);
}

.sidebar-widget .single-widget {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  border: var(--white);
  padding: 20px 40px;
  margin-bottom: 40px;
  border-radius: 20px;
}
.sidebar-widget .single-widget:nth-child(2) {
  padding: 20px 30px;
}
.sidebar-widget .single-widget:nth-child(3) {
  padding: 20px 20px;
}
.sidebar-widget .single-widget:nth-child(4) {
  padding: 20px 22px 20px 40px;
}
.sidebar-widget .single-widget .title {
  margin-bottom: 30px;
}
.sidebar-widget .single-widget .title h3 {
  text-transform: capitalize;
  color: var(--title);
}
.sidebar-widget .single-widget .search-container .search-box {
  position: relative;
  display: inline-block;
}
.sidebar-widget .single-widget .search-container .search-box input {
  width: 330px;
  height: 57px;
  border-radius: 999px;
  background: #EFEFEF;
  border: none;
  padding: 18px 30px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .sidebar-widget .single-widget .search-container .search-box input {
    width: 275px;
  }
}
.sidebar-widget .single-widget .search-container .search-box input::placeholder {
  color: rgba(0, 0, 0, 0.7);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.6px;
}
.sidebar-widget .single-widget .search-container .search-box input:focus {
  outline: none;
}
.sidebar-widget .single-widget .search-container .search-box .search-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--theme);
  cursor: pointer;
}
.sidebar-widget .single-widget .search-container .search-box .search-icon i {
  pointer-events: none;
}
@media (max-width: 1199px) {
  .sidebar-widget .single-widget .recent-post {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
  }
}
.sidebar-widget .single-widget .recent-post .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 20px;
  background: #EFEFEF;
  padding: 20px 20px 20px 10px;
  gap: 20px;
}
.sidebar-widget .single-widget .recent-post .post-item:last-child {
  margin-bottom: 0;
}
.sidebar-widget .single-widget .recent-post .post-item .thumb {
  width: 140px;
  margin: 0;
}
.sidebar-widget .single-widget .recent-post .post-item .thumb img {
  width: 80px;
  height: 94px;
  border-radius: 10px;
}
.sidebar-widget .single-widget .recent-post .post-item .content .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.sidebar-widget .single-widget .recent-post .post-item .content .meta i {
  color: var(--theme);
}
.sidebar-widget .single-widget .recent-post .post-item .content h4 a {
  color: var(--title);
}
@media (max-width: 1399px) {
  .sidebar-widget .single-widget .recent-post .post-item .content h4 a {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .sidebar-widget .single-widget .recent-post .post-item .content h4 a {
    font-size: 16px;
  }
}
.sidebar-widget .single-widget .tagcloud {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-row-gap: 20px;
  column-gap: 14px;
  -webkit-column-gap: 14px;
}
.sidebar-widget .single-widget .tagcloud .tagcloud-item {
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  padding: 5px 10px;
}
.sidebar-widget .single-widget .tagcloud .tagcloud-item a {
  color: rgba(0, 0, 0, 0.7);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.6px;
}
.sidebar-widget .contact-bar {
  border-radius: 20px;
  background: #EFEFEF;
  padding: 60px 0;
  margin-bottom: 40px;
}
.sidebar-widget .contact-bar .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.sidebar-widget .contact-bar .icon i {
  width: 96px;
  height: 96px;
  line-height: 96px;
  background: var(--theme);
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 36px;
}
.sidebar-widget .contact-bar .title {
  margin-bottom: 20px;
}
.sidebar-widget .contact-bar .title h3 {
  text-align: center;
  color: var(--black);
  margin-bottom: 20px;
}
.sidebar-widget .contact-bar .title p {
  color: #565969;
  text-align: center;
}
.sidebar-widget .contact-bar .contact-no h3 {
  text-align: center;
}
.sidebar-widget .contact-bar .contact-no h3 a {
  color: var(--title);
}

/*40.blog page */
.blog-details-wrapper .thumb {
  margin-bottom: 30px;
}
.blog-details-wrapper .thumb img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .blog-details-wrapper .thumb img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-details-wrapper .thumb img {
    flex-direction: column;
  }
}
.blog-details-wrapper .content .content-text h2 {
  color: #000;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
  margin-bottom: 20px;
}
.blog-details-wrapper .content .content-text h3 {
  color: #000;
  margin-bottom: 20px;
}
.blog-details-wrapper .content .content-text p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .content .content-text p {
    font-size: 16px;
  }
}
.blog-details-wrapper .content .content-text p span {
  margin-top: 30px;
  display: inline-block;
}
@media (max-width: 450px) {
  .blog-details-wrapper .content .content-text p span {
    font-size: 16px;
  }
}
.blog-details-wrapper .list-cloud {
  margin-bottom: 30px;
}
.blog-details-wrapper .list-cloud ul li {
  margin-bottom: 15px;
}
.blog-details-wrapper .list-cloud ul li:last-child {
  margin-bottom: 0px;
}
.blog-details-wrapper .testimonial {
  background: #EFEFEF;
  padding: 30px 30px 33px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .testimonial {
    padding: 20px 10px;
  }
}
.blog-details-wrapper .testimonial .testimonial-inner {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .testimonial .testimonial-inner .icon {
    display: none;
  }
}
.blog-details-wrapper .testimonial .testimonial-inner .icon i {
  color: #FC5A11;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.blog-details-wrapper .testimonial .testimonial-inner .content-box p {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.blog-details-wrapper .testimonial .testimonial-inner .content-box h4 {
  color: var(--title);
}
.blog-details-wrapper .tag-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .blog-details-wrapper .tag-content {
    flex-direction: column;
    row-gap: 20px;
  }
}
.blog-details-wrapper .tag-content .tag-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.blog-details-wrapper .tag-content .tag-list h3 {
  color: var(--title);
}
.blog-details-wrapper .tag-content .tag-list ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-details-wrapper .tag-content .tag-list ul li a {
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: transparent;
  padding: 5px 10px;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #565969;
}
@media (max-width: 450px) {
  .blog-details-wrapper .tag-content .tag-list ul li a {
    font-size: 9px;
  }
}
.blog-details-wrapper .tag-content .socail-icon ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.blog-details-wrapper .tag-content .socail-icon ul li a {
  background: #EFEFEF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}
.blog-details-wrapper .tag-content .socail-icon ul li a i {
  color: #131313;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.blog-details-wrapper .side-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  border-radius: 20px;
  border: 1px solid #E1E1E1;
  margin-top: 30px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .side-pagination {
    padding: 10px;
  }
}
.blog-details-wrapper .side-pagination .slide-btn {
  display: flex;
  align-items: center;
  gap: 19px;
}
.blog-details-wrapper .side-pagination .slide-btn .icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 999px;
  background: #FAF8F3;
  -webkit-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.blog-details-wrapper .side-pagination .slide-btn .icon:hover {
  background: var(--theme);
}
.blog-details-wrapper .side-pagination .slide-btn .icon:hover i {
  color: var(--white);
}
.blog-details-wrapper .side-pagination .slide-btn h4 {
  color: var(--title);
  max-width: 110px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .side-pagination .slide-btn h4 {
    display: none;
  }
}
.blog-details-wrapper .comment-content {
  margin-top: 60px;
}
.blog-details-wrapper .comment-content h3 {
  color: var(--title);
  margin-bottom: 30px;
}
.blog-details-wrapper .comment-content .comment-content-wrap {
  background: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 40px 30px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.blog-details-wrapper .comment-content .comment-content-wrap:last-child {
  margin-bottom: 60px;
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .thumb {
  margin-bottom: 0;
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .thumb img {
  border-radius: 999px;
  max-width: 100%;
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .profile-info h3 {
  color: var(--title);
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .profile-info h3 {
    font-size: 14px;
    line-height: 22px;
  }
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .profile-info p {
  color: var(--title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.6px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .content .profile-info p {
    display: none;
  }
}
.blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .reply-btn a {
  color: #131313;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: #FFF;
  display: inline-block;
  padding: 5px 30px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .comment-content .comment-content-wrap .comment-inner .reply-btn a {
    padding: 5px 10px;
  }
}
.blog-details-wrapper .comment-content .comment-content-wrap .highlite {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-left: 90px;
}
@media (max-width: 450px) {
  .blog-details-wrapper .comment-content .comment-content-wrap .highlite {
    margin-left: 0;
  }
}

/*41.Project page */
.project-details-wrapper .project-details-info .thumb {
  margin-bottom: 40px;
}
.project-details-wrapper .project-details-info .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
.project-details-wrapper .project-details-info .content {
  margin-bottom: 60px;
}
.project-details-wrapper .project-details-info .content h2 {
  color: var(--title);
  margin-bottom: 30px;
}
.project-details-wrapper .project-details-info .content p {
  color: #565969;
}
.project-details-wrapper .project-details-info .content p span {
  margin: 20px 0;
  display: inline-block;
}
.project-details-wrapper .project-details-info .project-details-card {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .project-details-wrapper .project-details-info .project-details-card {
    flex-direction: column;
    row-gap: 30px;
  }
}
.project-details-wrapper .project-details-info .project-details-card .project-item .thumb {
  margin-bottom: 30px;
}
.project-details-wrapper .project-details-info .project-details-card .project-item .thumb img {
  max-width: 100%;
  border-radius: 20px;
}
.project-details-wrapper .project-details-info .project-details-card .project-item .content {
  margin-bottom: 30px;
}
.project-details-wrapper .project-details-info .project-details-card .project-item .content h3 {
  color: #131313;
  font-family: "DM Sans";
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-details-info .project-details-card .project-item ul li {
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-info .slider-btn {
  background: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  margin-top: 40px;
  padding: 20px 40px;
}
.project-details-wrapper .project-details-info .slider-btn .left-btn a {
  color: var(--title);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 450px) {
  .project-details-wrapper .project-details-info .slider-btn .left-btn a {
    font-size: 13px;
  }
}
.project-details-wrapper .project-details-info .slider-btn .left-btn a i {
  margin-right: 14px;
}
.project-details-wrapper .project-details-info .slider-btn .right-btn a {
  color: var(--title);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 450px) {
  .project-details-wrapper .project-details-info .slider-btn .right-btn a {
    font-size: 13px;
  }
}
.project-details-wrapper .project-details-info .slider-btn .right-btn a i {
  margin-left: 14px;
}

/*42.services page */
.service-details-wrapper .contact-bar {
  border-radius: 20px;
  background: #EFEFEF;
  padding: 60px 0;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .service-details-wrapper .contact-bar {
    padding: 36px;
  }
}
.service-details-wrapper .contact-bar .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .service-details-wrapper .contact-bar .icon {
    margin-bottom: 20px;
  }
}
.service-details-wrapper .contact-bar .icon i {
  width: 96px;
  height: 96px;
  line-height: 96px;
  background: var(--theme);
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 36px;
}
.service-details-wrapper .contact-bar .title {
  margin-bottom: 20px;
}
.service-details-wrapper .contact-bar .title h3 {
  text-align: center;
  color: var(--black);
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .service-details-wrapper .contact-bar .title h3 {
    margin-bottom: 10px;
  }
}
.service-details-wrapper .contact-bar .title p {
  color: #565969;
  text-align: center;
}
.service-details-wrapper .contact-bar .contact-no h3 {
  text-align: center;
}
.service-details-wrapper .contact-bar .contact-no h3 a {
  color: var(--title);
}
.service-details-wrapper .service-details .content {
  margin-bottom: 30px;
}
.service-details-wrapper .service-details .content h2 {
  color: var(--title);
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details .content h3 {
  color: var(--title);
  font-size: 30.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details .content p {
  color: #565969;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.service-details-wrapper .service-details .content p p {
  color: #565969;
}
.service-details-wrapper .service-details .thumb img {
  border-radius: 20px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details .thumb img {
    width: 100%;
  }
}
.service-details-wrapper .service-details .highlight {
  margin: 20px 0;
}
.service-details-wrapper .service-details .highlight p {
  color: #565969;
}
.service-details-wrapper .service-details .service-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details .service-list {
    flex-direction: column;
    row-gap: 30px;
  }
}
.service-details-wrapper .service-details .service-list ul li {
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
}
.service-details-wrapper .service-details .service-list ul li:last-child {
  margin-bottom: 0;
}
.service-details-wrapper .service-details .builder-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details .builder-info {
    flex-direction: column;
    row-gap: 30px;
  }
}
.service-details-wrapper .service-details .builder-info .builder-info-items {
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: #FFF;
  padding: 40px;
}
.service-details-wrapper .service-details .builder-info .builder-info-items .contents h3 {
  color: #131313;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.9px;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details .builder-info .builder-info-items .contents p {
  color: #565969;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details .builder-info .builder-info-items ul li {
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}
.service-details-wrapper .service-details .builder-info .builder-info-items ul li i {
  margin-right: 10px;
  color: #131313;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.service-details-wrapper .service-details .services-faq {
  margin-top: 60px;
}
.service-details-wrapper .service-details .services-faq .title {
  margin-bottom: 30px;
}
.service-details-wrapper .service-details .services-faq .title h3 {
  color: var(--title);
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

/*44.building-plan page */
.building-plan-wrapper.style1 {
  position: relative;
}
.building-plan-wrapper.style1 .arrow-svg1 {
  position: absolute;
  top: 257px;
  left: 450px;
}
@media (max-width: 1700px) {
  .building-plan-wrapper.style1 .arrow-svg1 {
    left: 333px;
  }
}
@media (max-width: 1600px) {
  .building-plan-wrapper.style1 .arrow-svg1 {
    left: 285px;
  }
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style1 .arrow-svg1 {
    display: none;
  }
}
.building-plan-wrapper.style1 .arrow-svg1 path {
  stroke: #1D1D1B;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 4s linear infinite;
}
.building-plan-wrapper.style1 .arrow-svg2 {
  position: absolute;
  top: 257px;
  right: 450px;
}
@media (max-width: 1700px) {
  .building-plan-wrapper.style1 .arrow-svg2 {
    right: 333px;
  }
}
@media (max-width: 1600px) {
  .building-plan-wrapper.style1 .arrow-svg2 {
    right: 285px;
  }
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style1 .arrow-svg2 {
    display: none;
  }
}
.building-plan-wrapper.style1 .arrow-svg2 path {
  stroke: #1D1D1B;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 4s linear infinite;
}
.building-plan-wrapper.style1 .inner-top-content {
  display: flex;
  gap: 29px;
}
@media (max-width: 1199px) {
  .building-plan-wrapper.style1 .inner-top-content {
    display: grid;
    grid-template-columns: repeat(2, 4fr);
  }
}
@media (max-width: 450px) {
  .building-plan-wrapper.style1 .inner-top-content {
    grid-template-columns: repeat(1, 2fr);
  }
}
.building-plan-wrapper.style1 .inner-top-content .building-plan-card {
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}
.building-plan-wrapper.style1 .inner-top-content .building-plan-card h3 {
  color: var(--black);
  margin-bottom: 20px;
  border-radius: 20px;
}
.building-plan-wrapper.style1 .inner-top-content .building-plan-card p {
  color: #565969;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 240px;
}
@media (max-width: 450px) {
  .building-plan-wrapper.style1 .inner-top-content .building-plan-card p {
    max-width: 100%;
  }
}
.building-plan-wrapper.style1 .inner-bottom-content {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.building-plan-wrapper.style1 .inner-bottom-content .building-plan-card {
  margin-top: 208px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  height: 138px;
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style1 .inner-bottom-content .building-plan-card {
    display: none;
  }
}
.building-plan-wrapper.style1 .inner-bottom-content .building-plan-card h3 {
  color: var(--black);
  margin-bottom: 20px;
  border-radius: 20px;
}
.building-plan-wrapper.style1 .inner-bottom-content .building-plan-card p {
  color: #565969;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 240px;
}
.building-plan-wrapper.style1 .inner-bottom-content .thumb-shape {
  padding-top: 47.22px;
  position: relative;
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape img {
    width: 100%;
  }
}
.building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape {
  position: absolute;
  top: 64px;
  left: 9px;
}
@media (max-width: 767px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape {
    top: 33px;
    left: 8px;
  }
}
@media (max-width: 575px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape svg {
    width: 500px;
  }
}
@media (max-width: 575px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape svg {
    width: 462px;
  }
}
.building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape path {
  stroke: #1D1D1B;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 4s linear infinite;
}
@media (max-width: 767px) {
  .building-plan-wrapper.style1 .inner-bottom-content .thumb-shape .shape path {
    width: 500px;
  }
}
.building-plan-wrapper.style2 .building-plan-left {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  row-gap: 40px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 470px) {
  .building-plan-wrapper.style2 .building-plan-left {
    grid-template-columns: repeat(1, 1fr);
  }
}
.building-plan-wrapper.style2 .building-plan-left .building-plan-card {
  border: 1px solid #D0D0D0;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  height: 138px;
  position: relative;
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style2 .building-plan-left .building-plan-card {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .building-plan-wrapper.style2 .building-plan-left .building-plan-card {
    height: 154px;
  }
}
.building-plan-wrapper.style2 .building-plan-left .building-plan-card h3 {
  color: var(--black);
  margin-bottom: 20px;
  border-radius: 20px;
}
.building-plan-wrapper.style2 .building-plan-left .building-plan-card p {
  color: #565969;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 240px;
}
.building-plan-wrapper.style2 .building-plan-left .building-plan-card .arrow-svg1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
}
.building-plan-wrapper.style2 .thumb-shape {
  text-align: center;
  position: relative;
}
.building-plan-wrapper.style2 .thumb-shape img {
  max-width: 100%;
}
.building-plan-wrapper.style2 .thumb-shape .shape {
  position: absolute;
  top: 15px;
  left: 10px;
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style2 .thumb-shape .shape {
    top: -7px;
    left: 8px;
  }
}
@media (max-width: 1199px) {
  .building-plan-wrapper.style2 .thumb-shape .shape {
    top: -8px;
    left: 153px;
  }
}
@media (max-width: 991px) {
  .building-plan-wrapper.style2 .thumb-shape .shape {
    left: 33px;
  }
}
@media (max-width: 767px) {
  .building-plan-wrapper.style2 .thumb-shape .shape {
    left: 8px;
    top: -38px;
  }
}
.building-plan-wrapper.style2 .thumb-shape .shape svg {
  max-width: 614px;
  height: 250px;
}
@media (max-width: 1399px) {
  .building-plan-wrapper.style2 .thumb-shape .shape svg {
    max-width: 527px;
    height: 254px;
  }
}
@media (max-width: 1199px) {
  .building-plan-wrapper.style2 .thumb-shape .shape svg {
    max-width: 633px;
    height: 301px;
  }
}
@media (max-width: 767px) {
  .building-plan-wrapper.style2 .thumb-shape .shape svg {
    max-width: 500px;
    height: 301px;
  }
}
@media (max-width: 575px) {
  .building-plan-wrapper.style2 .thumb-shape .shape svg {
    max-width: 434px;
    height: 270px;
    display: none;
  }
}
.building-plan-wrapper.style2 .thumb-shape .shape path {
  stroke: #1D1D1B;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 4s linear infinite;
}

/*45.git page */
.git-wrapper.style1 {
  padding: 60px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .git-wrapper.style1 {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .git-wrapper.style1 {
    padding: 10px;
  }
}
.git-wrapper.style1 .contract-info {
  margin-top: 42px;
}
.git-wrapper.style1 .contract-info .items {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: #2b2b2b;
  padding: 20px 30px;
  gap: 25px;
  margin-bottom: 20px;
}
.git-wrapper.style1 .contract-info .items .icon {
  width: 57px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  background: #525252;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .git-wrapper.style1 .contract-info .items .icon {
    display: none;
  }
}
.git-wrapper.style1 .contract-info .items .icon i {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.git-wrapper.style1 .contract-info .items h4 {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  width: 82px;
}
@media (max-width: 450px) {
  .git-wrapper.style1 .contract-info .items h4 {
    font-size: 18px;
  }
}
.git-wrapper.style1 .contract-info .items p, .git-wrapper.style1 .contract-info .items a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 450px) {
  .git-wrapper.style1 .contract-info .items p, .git-wrapper.style1 .contract-info .items a {
    font-size: 10px;
  }
}
.git-wrapper.style2 {
  position: relative;
  margin-bottom: 325px;
}
@media (max-width: 1199px) {
  .git-wrapper.style2 {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}
.git-wrapper.style2 .git-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.git-wrapper.style2 .git-inner {
  display: flex;
  gap: 380px;
}
@media (max-width: 1600px) {
  .git-wrapper.style2 .git-inner {
    gap: 200px;
  }
}
@media (max-width: 1399px) {
  .git-wrapper.style2 .git-inner {
    gap: 85px;
  }
}
@media (max-width: 1199px) {
  .git-wrapper.style2 .git-inner {
    gap: 0;
    flex-direction: column;
  }
}
.git-wrapper.style2 .git-inner .thumb img {
  max-width: 100%;
}
.git-wrapper.style2 .git-inner .git-content {
  padding: 141px 0 130px 0;
}
@media (max-width: 991px) {
  .git-wrapper.style2 .git-inner .git-content {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .git-wrapper.style2 .git-inner .git-content {
    padding: 40px 0;
  }
}
.git-wrapper.style2 .git-inner .git-content .title-content .sub-title {
  color: var(--title);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.96px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.git-wrapper.style2 .git-inner .git-content .title-content h2 {
  max-width: 505.48px;
  color: var(--title);
  font-size: 59.766px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 34px;
}
@media (max-width: 1399px) {
  .git-wrapper.style2 .git-inner .git-content .title-content h2 {
    font-size: 48px;
  }
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item {
  margin-top: 23px;
  display: flex;
  gap: 15px;
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item .icon i {
  color: var(--theme);
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item .titles {
  margin-top: 8px;
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item .titles p {
  color: #565969;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item a {
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 450px) {
  .git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item a {
    font-size: 16px;
  }
}
.git-wrapper.style2 .git-inner .git-content .company-contact-menu .contact-item h4 {
  color: var(--title);
}
.git-wrapper.style2 .git-form {
  position: absolute;
  top: 306px;
  left: 365px;
}
@media (max-width: 1600px) {
  .git-wrapper.style2 .git-form {
    left: 200px;
  }
}
@media (max-width: 1399px) {
  .git-wrapper.style2 .git-form {
    left: 120px;
  }
}
@media (max-width: 1199px) {
  .git-wrapper.style2 .git-form {
    position: relative;
    left: 0;
    top: -30px;
  }
}
@media (max-width: 1199px) {
  .git-wrapper.style3 .thumb img {
    display: none;
  }
}
.git-wrapper.style3 .git-form {
  background: var(--title);
  padding: 120px 0 237px 80px;
  margin-left: -61px;
}
@media (max-width: 1399px) {
  .git-wrapper.style3 .git-form {
    padding: 120px 0 237px 61px;
  }
}
@media (max-width: 470px) {
  .git-wrapper.style3 .git-form {
    padding: 60px 0 160px 61px;
  }
}
.git-wrapper.style3 .git-form .title {
  margin-bottom: 30px;
}
.git-wrapper.style3 .git-form .title h2 {
  color: #FFF;
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .git-wrapper.style3 .git-form .title h2 {
    text-align: center;
  }
}
.git-wrapper.style3 .git-form .btn-wrapper {
  margin-top: 10px;
}

/*46.bento */
.bento-wrapper.style1 .bento-left .thumb {
  margin-bottom: 30px;
}
.bento-wrapper.style1 .bento-left .thumb img {
  border-radius: 10px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .bento-wrapper.style1 .bento-left .thumb img {
    width: 100%;
  }
}
.bento-wrapper.style1 .bento-left .bento-card {
  border-radius: 20px;
  background: #EFEFEF;
  padding: 40px;
}
@media (max-width: 450px) {
  .bento-wrapper.style1 .bento-left .bento-card {
    padding: 30px;
  }
}
.bento-wrapper.style1 .bento-left .bento-card .icon {
  margin-bottom: 20px;
}
.bento-wrapper.style1 .bento-left .bento-card .content {
  margin-bottom: 30px;
}
.bento-wrapper.style1 .bento-left .bento-card .content h3 {
  color: var(--title);
  margin-bottom: 20px;
}
.bento-wrapper.style1 .bento-left .bento-card .content p {
  color: #565969;
}
.bento-wrapper.style1 .bento-right .item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .bento-wrapper.style1 .bento-right .item {
    padding: 28px;
  }
}
@media (max-width: 1199px) {
  .bento-wrapper.style1 .bento-right .item {
    gap: 50px;
  }
}
@media (max-width: 450px) {
  .bento-wrapper.style1 .bento-right .item {
    flex-direction: column;
  }
}
.bento-wrapper.style1 .bento-right .item:first-child {
  background: var(--theme);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .bento-wrapper.style1 .bento-right .item:first-child .thumb {
    text-align: end;
  }
}
.bento-wrapper.style1 .bento-right .item:first-child .thumb img {
  border: none;
}
@media (max-width: 1199px) {
  .bento-wrapper.style1 .bento-right .item:first-child .thumb img {
    text-align: end;
  }
}
.bento-wrapper.style1 .bento-right .item:last-child {
  border-radius: 20px;
  border: 1px solid #D0D0D0;
  background: #FFF;
}
.bento-wrapper.style1 .bento-right .item .content {
  flex: 1;
}
.bento-wrapper.style1 .bento-right .item .content h2 {
  color: var(--white);
  font-size: 36.563px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 1399px) {
  .bento-wrapper.style1 .bento-right .item .content h2 {
    font-size: 33.563px;
  }
}
@media (max-width: 470px) {
  .bento-wrapper.style1 .bento-right .item .content h2 {
    font-size: 22px;
  }
}
.bento-wrapper.style1 .bento-right .item .content h3 {
  color: var(--title);
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .bento-wrapper.style1 .bento-right .item .content h3 {
    font-size: 20px;
  }
}
.bento-wrapper.style1 .bento-right .item .content p {
  color: #565969;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .bento-wrapper.style1 .bento-right .item .content p {
    margin-bottom: 20px;
  }
}
@media (max-width: 470px) {
  .bento-wrapper.style1 .bento-right .item .content p {
    display: none;
  }
}
.bento-wrapper.style1 .bento-right .item .thumb {
  flex: 1;
}
.bento-wrapper.style1 .bento-right .item .thumb img {
  border-radius: 20px;
  border: 1px solid #D0D0D0;
}
@media (max-width: 1399px) {
  .bento-wrapper.style1 .bento-right .item .thumb img {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .bento-wrapper.style1 .bento-right .item .thumb img {
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */


  .whatsappbtn {
            background-color: #25D366;
            border: none;
        }

        .whatsappbtn:hover {
            background-color: #128C7E;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
            cursor: pointer;
        }
        
        /* --- Floating Enquiry Widget --- */
        .floating-contact-btn {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            z-index: 1050;
        }

        .floating-contact-actions {
            position: absolute;
            top: 50%;
            right: calc(100% + 12px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 12px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(19, 37, 68, 0.08);
            box-shadow: 0 18px 34px rgba(19, 37, 68, 0.14);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-50%) translateX(14px) scale(0.96);
            transform-origin: right center;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        }

        .floating-contact-btn.is-open .floating-contact-actions {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(-50%) translateX(0) scale(1);
        }

        .floating-contact-actions > button,
        .floating-contact-actions > a {
            width: 58px;
            height: 58px;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 22px rgba(19, 19, 19, 0.16);
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .floating-contact-actions > button:hover,
        .floating-contact-actions > a:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 24px rgba(19, 19, 19, 0.2);
        }

        .floating-whatsapp-btn {
            background-color: #25D366;
        }
        
        .floating-phone-btn {
            background-color: #34B7F1;
        }

        .floating-enquiry-btn {
            width: 62px;
            min-height: 154px;
            padding: 14px 8px;
            border: none;
            border-radius: 18px 0 0 18px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            background: linear-gradient(135deg, #2f4aa2 0%, #243c8c 100%);
            color: #ffffff;
            box-shadow: 0 14px 28px rgba(36, 60, 140, 0.28);
            cursor: pointer;
            transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
        }

        .floating-enquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 32px rgba(36, 60, 140, 0.34);
            filter: brightness(1.02);
        }

        .floating-contact-btn.is-open .floating-enquiry-btn {
            background: linear-gradient(135deg, #132544 0%, #223c75 100%);
        }

        .floating-enquiry-btn span {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            line-height: 1;
        }

        .floating-contact-btn i {
            color: white;
            font-size: 1.65rem;
        }

        .floating-action-label {
            display: none;
        }

        .icon-btn {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
        }

        /* Modal Overlay and Container */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1050;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }

        .modal-content-wrapper {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 90%;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateY(-50px);
            opacity: 0;
        }

        .modal-overlay.show .modal-content-wrapper {
            transform: translateY(0);
            opacity: 1;
        }

        /* Modal Header */
        .modal-header {
            background-color: #25D366;
            color: white;
            padding: 1rem;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h5 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 500;
        }

        .modal-header .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            line-height: 1;
        }

        /* Modal Body */
        .modal-body {
            padding: 1.5rem;
        }

        /* Form Styling */
        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            font-weight: 500;
            color: #4a4a4a;
            display: block;
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            border-radius: 0.75rem;
            border: 1px solid #e0e0e0;
            padding: 0.75rem 1rem;
            box-sizing: border-box;
            transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .form-control:focus {
            outline: none;
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .btn-submit {
            background-color: #25d366;
            border: none;
            font-weight: bold;
            color: white;
            border-radius: 0.75rem;
            padding: 0.75rem 1.5rem;
            width: 100%;
            cursor: pointer;
            transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
        }

        .btn-submit:hover {
            background-color: #128c7e;
            transform: translateY(-2px);
        }

        /* Corner Modal Specific Styles */
        .corner-modal-overlay {
            justify-content: flex-end;
            align-items: flex-end;
            padding: 20px;
        }

        .corner-modal-overlay .modal-content-wrapper {
            width: 100%;
            max-width: 400px;
            transform: translateY(50px);
            margin: 0;
        }
        
        /* --- MOBILE RESPONSIVE STYLES --- */
        @media (max-width: 768px) {
            body {
                padding-bottom: 76px;
            }

            .floating-contact-btn {
                top: auto;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
                background: #ffffff;
                border-top: 1px solid rgba(19, 19, 19, 0.1);
                box-shadow: 0 -8px 22px rgba(19, 37, 68, 0.16);
                transform: none;
            }

            .floating-contact-actions {
                position: static;
                top: auto;
                right: auto;
                width: 100%;
                max-width: 430px;
                margin: 0 auto;
                padding: 0;
                flex-direction: row;
                justify-content: center;
                gap: 8px;
                background: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
            }

            .floating-contact-btn.is-open .floating-contact-actions {
                transform: none;
            }

            .floating-contact-actions > button,
            .floating-contact-actions > a {
                height: 48px;
                border-radius: 9px;
                gap: 8px;
                box-shadow: none;
                transform: none;
            }

            .floating-contact-actions > button:hover,
            .floating-contact-actions > a:hover {
                transform: none;
                box-shadow: none;
            }

            .floating-phone-btn {
                order: 1;
                width: 86px !important;
                flex: 0 0 86px;
                background: #ffffff;
                border: 1px solid #151515 !important;
                color: #151515;
            }

            .floating-whatsapp-btn {
                order: 2;
                width: auto !important;
                flex: 1 1 auto;
                min-width: 0;
                padding: 0 12px;
                background: #23c45e;
                color: #ffffff;
            }

            .floating-enquiry-btn {
                display: none;
            }

            .floating-contact-btn i {
                font-size: 1.05rem;
                line-height: 1;
            }

            .floating-phone-btn i {
                color: #151515;
            }

            .floating-whatsapp-btn i {
                color: #ffffff;
                font-size: 1.35rem;
            }

            .floating-action-label {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                color: currentColor;
                font-size: 13px;
                font-weight: 800;
                line-height: 1.05;
                white-space: nowrap;
            }

            .floating-action-label small {
                display: block;
                font-size: 9px;
                font-weight: 700;
                line-height: 1.1;
            }

            .floating-phone-btn .floating-action-label {
                font-size: 12px;
                font-weight: 800;
            }
        }

/* Fortech responsive fixes */
img,
svg {
  max-width: 100%;
}

.header-section-2 .header-logo img {
  width: min(300px, 24vw);
  max-width: 100%;
  height: auto;
}

.header-section-2 .header-main {
  min-width: 0;
}

.header-section-2 .header-left,
.header-section-2 .header-right {
  min-width: 0;
}

.header-section-2 .header-right {
  flex-shrink: 0;
}

.header-section-2 .header__hamburger {
  flex: 0 0 auto;
}

.header-section-2 .sidebar__toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 37, 68, 0.12);
  box-shadow: 0 12px 24px rgba(19, 37, 68, 0.14);
  margin-left: 18px;
  color: #132544;
}

.header-section-2 .sidebar__toggle svg {
  width: 28px;
  height: 22px;
}

.header-section-2 .sidebar__toggle svg line,
.header-section-2 .sidebar__toggle svg path {
  stroke: #132544;
}

.fortech-header-download {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.fortech-header-download i {
  margin-left: 0 !important;
  font-size: 18px;
  line-height: 1;
}

.offcanvas__contact .fortech-header-download {
  width: 100%;
}

.fortech-mobile-download {
  display: none;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader {
  animation: fortechPreloaderFallback 0.3s ease 2.8s forwards;
}

@keyframes fortechPreloaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.fortech-laser-services-section {
  position: relative;
  overflow: hidden;
  padding: 30px 0 30px;
  background:
    linear-gradient(135deg, rgba(19, 37, 68, 0.96), rgba(36, 60, 140, 0.94) 58%, rgba(17, 147, 199, 0.9)),
    #132544;
}

.fortech-laser-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
}

.fortech-laser-services-section .container {
  position: relative;
  z-index: 1;
}

.fortech-laser-services-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(6, 18, 39, 0.22);
}

.fortech-laser-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.fortech-laser-head .laser-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd447;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.fortech-laser-head .laser-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #ffd447;
}

.fortech-laser-head h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

.fortech-laser-head p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

.fortech-laser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fortech-laser-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fortech-laser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 212, 71, 0.7);
  box-shadow: 0 22px 34px rgba(4, 13, 31, 0.26);
}

.fortech-laser-card.featured {
  border-color: rgba(255, 212, 71, 0.82);
}

.laser-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f223f;
}

.laser-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laser-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(19, 37, 68, 0.72), transparent);
}

.laser-card-icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #132544;
  background: #ffd447;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.laser-card-body {
  padding: 24px 24px 26px;
}

.laser-service-label {
  display: block;
  color: #1193c7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.laser-card-body h3 {
  color: #132544;
  font-size: 25px;
  line-height: 1.16;
  margin-bottom: 18px;
}

.laser-card-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.laser-card-body li {
  position: relative;
  color: #565969;
  font-size: 15px;
  line-height: 1.48;
  padding-left: 18px;
}

.laser-card-body li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1193c7;
}

.laser-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.laser-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.laser-specs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.laser-specs i {
  color: #ffd447;
}

@media (min-width: 1400px) {
  .header-section-2 .header-logo img {
    width: 300px;
  }
}

@media (max-width: 1199px) {
  .header-section-2 {
    position: absolute;
  }

  .header-section-2 .container {
    max-width: 100%;
  }

  .header-section-2 .header-main {
    height: 78px;
    gap: 16px;
  }

  .header-section-2 .header-middle {
    display: none !important;
  }

  .header-section-2 .header-right .header-button {
    display: none !important;
    margin-left: 0;
    margin-right: 10px;
  }

  .header-section-2 .header-logo img {
    width: clamp(176px, 28vw, 230px);
  }

  .header-section-2 .header-right .fortech-header-download {
    min-width: max-content;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1;
  }

  .fortech-mobile-download {
    display: none !important;
  }

  .header-section-2 .header__hamburger {
    display: flex !important;
  }

  .offcanvas__info {
    width: min(400px, 88vw);
  }

  .intro-section .intro-wrapper.style2.fortech-hero {
    padding-top: 118px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title h1 {
    font-size: clamp(35px, 0vw, 46px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 460px;
  }

  .fortech-mini-cards-section,
  .fortech-facts-section,
  .fortech-about-section,
  .fortech-capabilities-section,
  .fortech-laser-services-section,
  .fortech-why-section,
  .service-section,
  .fortech-industries-section,
  .fortech-testimonial-section,
  .footer-section.fortech-footer {
    overflow-x: hidden;
  }

  .fortech-why-media .why-image-card {
    display: none !important;
  }

  .fortech-why-section > .container > .row {
    row-gap: 0;
  }

  .fortech-why-section > .container > .row > .col-xl-5 {
    display: none !important;
  }

  .fortech-why-section > .container > .row > .col-xl-7 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .fortech-why-content {
    padding-left: 0;
  }

  .fortech-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fortech-why-grid .why-feature-card {
    min-height: 128px;
  }

  .fortech-why-grid .why-feature-text {
    min-width: 0;
  }

  .fortech-why-grid .why-feature-text h3,
  .fortech-why-grid .why-feature-text p {
    overflow-wrap: anywhere;
  }

  .fortech-industries-section .fortech-industries-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .fortech-industries-section .industry-item {
    min-height: 210px;
    padding: 22px 20px 20px;
  }

  .fortech-industries-section .industry-card-top {
    margin-bottom: 22px;
  }

  .fortech-industries-section .industry-number {
    font-size: 40px;
  }

  .fortech-industries-section .industry-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    font-size: 24px;
  }

  .fortech-industries-section .industry-item h3 {
    font-size: 22px;
  }

  .fortech-laser-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fortech-laser-head h2 {
    font-size: 38px;
  }

  .fortech-laser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .fortech-laser-card.featured {
    grid-column: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-section-2 .header-main {
    justify-content: space-between;
  }

  .header-section-2 .header-middle {
    display: block !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-section-2 .header-logo img {
    width: 190px;
  }

  .header-section-2 .header-main .main-menu > nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .header-section-2 .header-main .main-menu > nav > ul > li {
    margin-inline-end: 10px;
    white-space: nowrap;
  }

  .header-section-2 .header-main .main-menu > nav > ul > li > a {
    font-size: 13px;
    letter-spacing: 0;
  }

  .header-section-2 .header-main .main-menu ul li .submenu {
    display: block;
    width: 300px;
    max-width: calc(100vw - 32px);
    inset-inline-start: 0;
  }

  .header-section-2 .header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    white-space: normal;
  }

  .header-section-2 .header-main .main-menu ul li .submenu li a {
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .header-section-2 .header-right .header-button {
    display: block !important;
    margin-left: 10px;
  }

  .header-section-2 .header-right .gt-btn {
    min-width: max-content;
    padding: 13px 15px;
    font-size: 12px;
    line-height: 1;
  }

  .header-section-2 .header__hamburger {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header-section-2 .header-main {
    justify-content: space-between;
  }

  .header-section-2 .header-left {
    flex: 1 1 auto;
  }

  .header-section-2 .header-right {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header-section-2 .header-right .header-button {
    display: block !important;
  }

  .header-section-2 .header__hamburger {
    display: flex !important;
    position: fixed !important;
    top: 16px;
    left: clamp(248px, 72vw, 336px) !important;
    right: auto !important;
    z-index: 1001;
    transform: none;
  }

  .intro-section .intro-wrapper.style2.fortech-hero {
    padding-bottom: 42px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .row {
    row-gap: 24px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part {
    text-align: left;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title,
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title p {
    max-width: 100%;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 420px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
    min-height: 380px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img {
    max-height: 380px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .thumb-content,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .hero-tag {
    display: none;
  }

  .service-wrapper.style5.fortech-product-slider .fortech-slider-head {
    margin-bottom: 28px;
  }

  .fortech-industries-section .fortech-industries-intro {
    border-radius: 24px;
  }

  .footer-section.fortech-footer .fortech-footer-card {
    border-radius: 24px;
  }

  .fortech-laser-services-panel {
    padding: 26px;
  }

  .laser-card-body {
    padding: 20px 18px 22px;
  }

  .laser-card-body h3 {
    font-size: 22px;
  }

  .laser-card-body li {
    font-size: 14px;
  }

  .laser-service-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container,
  .container-fluid {
    max-width: 100%;
  }

  .row {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .row > * {
    min-width: 0;
  }

  .header-section-2 .header-main {
    height: 70px;
    width: 100%;
    justify-content: space-between;
    position: relative;
  }

  .header-section-2 .header-left {
    flex: 1 1 auto;
  }

  .header-section-2 .header-right {
    flex: 0 0 auto;
  }

  .header-section-2 .header__hamburger {
    position: fixed;
    top: 16px;
    right: auto;
    left: min(270px, calc(100vw - 52px));
    z-index: 1000;
    display: flex !important;
    transform: none;
  }

  .header-section-2 .sidebar__toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border-radius: 11px;
  }

  .header-section-2 .sidebar__toggle svg {
    width: 24px;
    height: 20px;
  }

  .header-section-2 .header-logo img {
    width: clamp(150px, 48vw, 190px);
  }

  .header-section-2 .header-right .fortech-header-download {
    width: 42px;
    min-width: 42px;
    height: 40px;
    padding: 0;
    border-radius: 11px;
  }

  .header-section-2 .header-right .fortech-header-download span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .header-section-2 .header-right .header-button {
    display: none !important;
  }

  .header-section-2 .sidebar__toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border-radius: 11px;
  }

  .header-section-2 .sidebar__toggle svg {
    width: 24px;
    height: 20px;
  }

  .offcanvas__wrapper {
    padding: 22px 18px;
  }

  .offcanvas__top {
    margin-bottom: 28px !important;
  }

  .intro-section .intro-wrapper.style2.fortech-hero {
    padding-top: 96px;
    padding-bottom: 38px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .container,
  .intro-section .intro-wrapper.style2.fortech-hero .row,
  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part,
  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part,
  .intro-section .intro-wrapper.style2.fortech-hero .section-title,
  .intro-section .intro-wrapper.style2.fortech-hero .section-title .title,
  .intro-section .intro-wrapper.style2.fortech-hero .section-title p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .sub-title {
    max-width: 100%;
    padding: 9px 12px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .sub-title span {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title .title h1 {
    font-size: clamp(18px, 0vw, 38px);
    line-height: 1.06;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .inner-left-part .section-title p,
  .service-wrapper.style5.fortech-product-slider .title-section .title-content p,
  .fortech-industries-section .fortech-industries-intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 330px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box::before {
    inset: 34px 16px 24px 16px;
    border-radius: 36px;
    transform: rotate(5deg);
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
    min-height: 310px;
    width: 100%;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img {
    max-height: 300px;
  }

  .fortech-mini-cards-section {
    padding: 42px 0 46px;
  }

  .fortech-laser-services-section {
    padding: 58px 0 64px;
  }

  .fortech-laser-head h2 {
    font-size: 30px;
  }

  .fortech-laser-services-panel {
    padding: 18px;
  }

  .fortech-laser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .fortech-laser-card.featured {
    grid-column: auto;
  }

  .laser-card-body {
    padding: 22px 20px 24px;
  }

  .laser-card-body h3 {
    font-size: 23px;
  }

  .laser-service-footer .gt-btn {
    width: 100%;
    justify-content: center;
  }

  .fortech-why-grid {
    grid-template-columns: 1fr;
  }

  .service-section.padding-bottom120 {
    padding-bottom: 70px;
  }

  .service-wrapper.style5.fortech-product-slider .fortech-slider-head {
    gap: 18px;
  }

  .service-wrapper.style5.fortech-product-slider .fortech-slider-arrows {
    width: 100%;
    justify-content: flex-start;
  }

  .fortech-industries-section {
    padding: 42px 0 58px;
  }

  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .fortech-testimonial-section .fortech-google-review-shell {
    padding: 18px 14px 20px;
    border-radius: 20px;
  }

  .footer-section.fortech-footer .fortech-footer-card {
    padding-inline: 16px;
  }
}

@media (max-width: 575px) {
  .fortech-laser-grid {
    grid-template-columns: 1fr;
  }

  .fortech-laser-card {
    max-width: 100%;
  }

  .laser-card-body h3 {
    font-size: 23px;
  }
}

@media (min-width: 421px) and (max-width: 767px) {
  .header-section-2 .header__hamburger {
    left: clamp(248px, 72vw, 336px) !important;
    right: auto !important;
  }
}

@media (max-width: 420px) {
  .header-section-2 .header-main {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .header-section-2 .header-right {
    display: inline-flex !important;
    align-items: center;
    gap: 8px !important;
  }

  .header-section-2 .header-right .header-button {
    margin-right: 0;
  }

  .header-section-2 .header__hamburger {
    position: fixed !important;
    top: 16px !important;
    left: clamp(248px, 72vw, 336px) !important;
    right: auto !important;
  }

  .header-section-2 .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-section-2 .header-logo img {
    width: clamp(150px, 47vw, 178px);
  }

  .header-section-2 .sidebar__toggle {
    width: 40px;
    height: 40px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box {
    min-height: 290px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb .fortech-hero-slide {
    min-height: 275px;
  }

  .intro-section .intro-wrapper.style2.fortech-hero .intro-right-part .thumb-box .main-thumb img {
    max-height: 265px;
  }

  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 575px) {
  .fortech-industries-section .fortech-industries-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Fortech gallery page */
.fortech-gallery-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 108px;
  background:
    linear-gradient(135deg, rgba(234, 236, 243, 0.72), rgba(255, 255, 255, 0.98) 52%, rgba(255, 225, 117, 0.2)),
    #ffffff;
}

.fortech-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39, 63, 143, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 63, 143, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
  pointer-events: none;
}

.fortech-gallery-section .container {
  position: relative;
  z-index: 1;
}

.fortech-gallery-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.fortech-gallery-head .gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39, 63, 143, 0.1);
  color: var(--theme);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fortech-gallery-head .gallery-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.fortech-gallery-head h2 {
  color: #132544;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.fortech-gallery-head p {
  max-width: 690px;
  margin: 18px auto 0;
  color: #536070;
  font-size: 18px;
  line-height: 1.7;
}

.fortech-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fortech-gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #132544;
  box-shadow: 0 18px 42px rgba(19, 37, 68, 0.12);
  isolation: isolate;
  cursor: zoom-in;
}

.fortech-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.fortech-gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.fortech-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 76px 24px 28px;
  background: rgba(8, 18, 36, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.fortech-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.gallery-modal-open {
  overflow: hidden;
}

.fortech-gallery-modal-frame {
  width: min(1040px, 100%);
  max-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fortech-gallery-modal-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 118px);
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.fortech-gallery-modal-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #132544;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fortech-gallery-modal-close:hover,
.fortech-gallery-modal-close:focus-visible {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 1199px) {
  .fortech-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fortech-gallery-section {
    padding: 72px 0 86px;
  }

  .fortech-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fortech-gallery-section {
    padding: 52px 0 70px;
  }

  .fortech-gallery-section .container {
    width: auto;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }

  .fortech-gallery-head {
    width: 100%;
    max-width: calc(100vw - 36px);
    margin: 0 0 30px;
    text-align: left;
    box-sizing: border-box;
  }

  .fortech-gallery-head h2 {
    max-width: calc(100vw - 36px);
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .fortech-gallery-head p {
    max-width: calc(100vw - 36px);
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .fortech-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fortech-gallery-modal {
    padding: 74px 16px 24px;
  }

  .fortech-gallery-modal-frame,
  .fortech-gallery-modal-frame img {
    max-height: calc(100vh - 108px);
  }

  .fortech-gallery-modal-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575px) {
  .fortech-gallery-head,
  .fortech-gallery-head h2,
  .fortech-gallery-head p {
    max-width: 340px;
  }
}

/* Fortech precision machine components page */
.fortech-precision-products {
  position: relative;
  overflow: hidden;
  padding: 88px 0 112px;
  background:
    linear-gradient(135deg, rgba(244, 246, 250, 0.94), rgba(255, 255, 255, 1) 58%, rgba(255, 193, 7, 0.12)),
    #ffffff;
}

.fortech-precision-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39, 63, 143, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 63, 143, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.fortech-precision-products .container {
  position: relative;
  z-index: 1;
}

.fortech-precision-products-head {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.fortech-precision-products-head .precision-products-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39, 63, 143, 0.1);
  color: var(--theme);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fortech-precision-products-head .precision-products-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.fortech-precision-products-head h2 {
  color: #132544;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.fortech-precision-products-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #536070;
  font-size: 17px;
  line-height: 1.7;
}

.fortech-precision-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fortech-precision-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 68, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(19, 37, 68, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.fortech-precision-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 63, 143, 0.22);
  box-shadow: 0 24px 58px rgba(19, 37, 68, 0.14);
}

.precision-product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f6;
}

.precision-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.fortech-precision-product-card:hover .precision-product-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.precision-product-content {
  min-height: 154px;
  padding: 22px 20px 24px;
}

.precision-product-content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.18);
  color: #132544;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.precision-product-content h3 {
  margin-bottom: 8px;
  color: #132544;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.precision-product-content p {
  margin: 0;
  color: #536070;
  font-size: 15px;
  line-height: 1.55;
}

.precision-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 17px;
  border-radius: 6px;
  background: var(--theme);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.precision-product-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.precision-product-btn:hover {
  background: var(--theme2);
  color: #ffffff;
}

.precision-product-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199px) {
  .fortech-precision-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fortech-precision-products {
    padding: 72px 0 88px;
  }

  .fortech-precision-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fortech-precision-products {
    padding: 54px 0 72px;
  }

  .fortech-precision-products .container {
    width: auto;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .fortech-precision-products-head {
    max-width: calc(100vw - 36px);
    margin: 0 0 30px;
    text-align: left;
  }

  .fortech-precision-products-head h2 {
    max-width: calc(100vw - 36px);
    font-size: 28px;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .fortech-precision-products-head p {
    max-width: calc(100vw - 36px);
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .fortech-precision-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .precision-product-content {
    min-height: 0;
    padding: 20px 18px 22px;
  }

  .precision-product-content h3 {
    font-size: 20px;
  }
}



  .form-container {
            width: 100%;
            max-width: 48rem; /* Equivalent to max-w-2xl */
            background-color: white;
            padding: 2rem; /* Equivalent to p-8 */
            border-radius: 1.5rem; /* Equivalent to rounded-2xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Equivalent to shadow-xl */
        }
        @media (min-width: 768px) {
            .form-container {
                padding: 3rem; /* Equivalent to md:p-12 */
            }
        }
        .form-heading {
            font-size: 1.875rem; /* Equivalent to text-3xl */
            font-weight: 700; /* Equivalent to font-bold */
            text-align: center;
            color: #1f2937; /* Equivalent to text-gray-800 */
            margin-bottom: 2rem; /* Equivalent to mb-8 */
        }
        .input-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) {
            .input-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #d1d5db; /* Equivalent to border-gray-300 */
            border-radius: 0.5rem; /* Equivalent to rounded-lg */
            color: #1f2937;
            transition: all 0.2s ease-in-out;
        }
        .form-input::placeholder, .form-textarea::placeholder {
            color: #6b7280; /* Equivalent to placeholder-gray-500 */
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px #3b82f6;
        }
        .form-textarea {
            height: 8rem;
            resize: none;
        }
        .file-upload-section {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) {
            .file-upload-section {
                flex-direction: row;
                align-items: center;
            }
        }
        .file-label {
            font-size: 1.125rem;
            font-weight: 500;
            color: #4b5563;
            margin-bottom: 0.5rem;
        }
        @media (min-width: 768px) {
            .file-label {
                width: 33.333333%;
                margin-bottom: 0;
            }
        }
        .captcha-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-top: 2rem;
            justify-content: space-between;
        }
        @media (min-width: 768px) {
            .captcha-section {
                flex-direction: row;
                align-items: center;
            }
        }
        .captcha-input-group {
            display: flex;
            flex-grow: 1;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .captcha-input-group {
                margin-bottom: 0;
            }
        }
        .captcha-label {
            display: block;
            color: #4b5563;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .captcha-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
        }
        .captcha-refresh {
            color: #3b82f6;
            cursor: pointer;
            font-size: 1.125rem;
            transition: color 0.2s ease-in-out;
        }
        .captcha-refresh:hover {
            color: #1d4ed8;
        }
        .captcha-input {
            width: 4rem;
            padding: 0.5rem;
            border: 2px solid #d1d5db;
            border-radius: 0.5rem;
            text-align: center;
        }
        .submit-button {
            width: 100%;
            padding: 0.75rem 2rem;
            background-color: #2563eb;
            color: white;
            font-weight: 700;
            border-radius: 9999px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
        }
        .submit-button:hover {
            background-color: #1d4ed8;
        }
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 0.25rem;
        }
        .hidden {
            display: none;
        }
        .unvalid {
            border-color: #ef4444;
        }
        .valid {
            border-color: #10b981;
        }

@media (min-width: 576px) and (max-width: 991px) {
  .header-section-2 .fortech-mobile-download,
  .header-section-2 .header-right .header-button {
    display: none !important;
  }

  .header-section-2 .header__hamburger {
    position: fixed !important;
    top: 18px !important;
    right: 24px !important;
    left: auto !important;
    z-index: 1002 !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-section-2 .header-right .header-button {
    display: block !important;
    margin-left: 10px;
  }

  .header-section-2 .header-right .fortech-header-download {
    padding: 11px 14px;
    font-size: 12px;
    line-height: 1;
  }

  .header-section-2 .header__hamburger,
  .header-section-2 .fortech-mobile-download {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .header-section-2 .fortech-mobile-download {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 16px !important;
    left: clamp(198px, 62vw, 276px) !important;
    right: auto !important;
    z-index: 1002 !important;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--theme);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(19, 37, 68, 0.16);
  }

  .header-section-2 .fortech-mobile-download i {
    font-size: 18px;
    line-height: 1;
  }

  .header-section-2 .header__hamburger {
    position: fixed !important;
    top: 16px !important;
    left: clamp(238px, 68vw, 326px) !important;
    right: auto !important;
    z-index: 1002 !important;
  }
}
