/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*! Google Fonts !*/
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Text-Grey, #4e4e4e);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  background: #fff;
  overflow-x: hidden;
}
body:has(.headerWhite) .header_main {
  position: sticky;
  background: #fff;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
}
body:has(.headerWhite) .header_main .hd_adjust .logo a .normal {
  opacity: 0;
}
body:has(.headerWhite) .header_main .hd_adjust .logo a .logo_active {
  opacity: 1;
}
body:has(.headerWhite) .header_main .stellarnav ul li a {
  color: var(--Brand-Blue, #191f3b);
}
body:has(.headerWhite) .header_main .stellarnav ul li a:hover {
  color: #f54c00 !important;
}

p {
  padding: 0rem;
  margin: 0rem 0 1.25rem;
  color: #676f82;
  color: var(--Text-Grey, #4e4e4e);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Brand-Blue, #191f3b);
  font-family: Roboto;
  font-size: clamp(1.5rem, 0.696rem + 2.143vw, 2.625rem);
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 54.6px */
  text-transform: capitalize;
}

h2 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Brand-Blue, #191f3b);
  font-family: Roboto;
  font-size: clamp(1.5rem, 0.696rem + 2.143vw, 2.625rem);
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 54.6px */
  text-transform: capitalize;
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Brand-Blue, #191f3b);
  font-family: Roboto;
  font-size: clamp(1.25rem, 1.071rem + 0.476vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #1c2a44;
  font-family: Roboto;
  font-size: clamp(1.125rem, 1.036rem + 0.238vw, 1.25rem);
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  line-height: normal;
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-size: clamp(0.75rem, 0.571rem + 0.476vw, 1rem);
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

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

a {
  color: var(--Brand-Blue, #191f3b);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #f54c00;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.875rem 1.25rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  border: 1px solid #f54c00;
  border-radius: 6px;
  background: var(--Brand-Orange, #f54c00);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 1px solid #f54c00;
  background: #fff;
  color: #f54c00;
}
.btn:hover {
  border: 1px solid #f54c00;
  background: #fff;
  color: #f54c00;
}
.btn.borderWtnBtn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.borderWtnBtn:focus, .btn.borderWtnBtn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 1px solid #f54c00;
  background: #f54c00;
  color: #fff;
}
.btn.borderWtnBtn:hover {
  border: 1px solid #f54c00;
  background: #f54c00;
  color: #fff;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit], [type=radio], [type=checkbox]) {
  display: block;
  width: 100%;
  color: var(--Text-Grey, #4e4e4e);
  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.3125rem */
  padding: 1.117rem 0.69rem;
  height: auto;
  border-radius: 0.375rem;
  border: 1px solid #b4b4b4;
  background: #fff;
  box-shadow: none;
  margin-bottom: clamp(0.625rem, 0rem + 1.667vw, 1.5rem);
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder {
  color: var(--Paragraph, #535353);
}
input:not([type=submit], [type=radio], [type=checkbox])::placeholder {
  color: var(--Paragraph, #535353);
}

textarea {
  height: 6.9375rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Text-Grey, #4e4e4e);
  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.3125rem */
  padding: 1.117rem 0.69rem;
  border-radius: 0.375rem;
  border: 1px solid #b4b4b4;
  background: #fff;
  box-shadow: none;
  height: 12.1875rem;
  margin-bottom: clamp(0.625rem, 0rem + 1.667vw, 1.5rem);
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
textarea::-moz-placeholder {
  color: #424c52;
}
textarea::placeholder {
  color: #424c52;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none; /* Removes default appearance in Safari */
  -moz-appearance: none; /* Removes default appearance in Firefox */
  appearance: none; /* Standard */
  outline: none; /* Removes the focus outline */
  box-shadow: none; /* Removes the box shadow */
  border: 1px solid #ccc; /* Custom border */
  padding: 16px 10px; /* Add padding for better UI */
  background-color: #fff; /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  width: 100%;
  border-radius: 0rem;
  color: var(--Text-Grey, #4e4e4e);
  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.3125rem */
  height: auto;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #424c52;
  font-size: 0.875rem;
  font-weight: normal;
}

label {
  color: var(--Text-Grey, #4e4e4e);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  text-transform: capitalize;
  margin: 0rem 0rem 0.25rem;
  padding: 0;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #000;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: none;
  outline-offset: none;
}

input[type=checkbox]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #000;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=radio]:focus {
  outline: none;
  outline-offset: none;
}

input[type=radio]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

section h1,
section h2 {
  margin: 0 0 1rem;
}

header.header_main {
  position: fixed;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease-in-out;
  border-bottom: 0.5px solid #fff;
}
header.header_main button {
  display: none;
}
header.header_main .hd_adjust {
  display: flex;
  align-items: center;
}
header.header_main .hd_adjust .logo {
  position: relative;
  max-width: 12.125rem;
  width: 100%;
  margin-right: 1.875rem;
}
header.header_main .hd_adjust .logo a {
  display: block;
}
header.header_main .hd_adjust .logo a .logo_active {
  position: absolute;
  inset: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
header.header_main .hd_adjust .stellarnav ul ul li + li {
  border-top: 0.0625rem solid #c0c1d1;
}
header.header_main .hd_adjust .stellarnav ul ul li:last-child {
  border-bottom: none;
}
header.header_main .hd_adjust .stellarnav ul ul li a:hover {
  background: var(--Brand-Orange, #f54c00);
  color: var(--White, #fff);
}
header.header_main .hd_adjust .rig-btn {
  margin-left: auto;
}
header.header_main.fixedBx {
  background: #fff;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
}
header.header_main.fixedBx .hd_adjust .logo a .normal {
  opacity: 0;
}
header.header_main.fixedBx .hd_adjust .logo a .logo_active {
  opacity: 1;
}
header.header_main.fixedBx .stellarnav ul li a {
  color: var(--Brand-Blue, #191f3b);
}

section.hm_banner {
  position: relative;
  background: #fff;
}
section.hm_banner .full_banner {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin-left: auto;
  display: block;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_banner .full_banner img {
  width: 100%;
}
section.hm_banner .full_banner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(81deg, #000 18.96%, rgba(0, 0, 0, 0.1) 73.3%);
}
section.hm_banner .middle_caption {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 2.5rem);
  transform: translateY(-50%);
  z-index: 1;
}
section.hm_banner .middle_caption h1 {
  color: #fff;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 115.385% */
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
  padding: 0;
}
section.hm_banner .middle_caption p {
  color: #fff;
  max-width: 40.125rem;
}
section.hm_banner .middle_caption .gp_btn {
  display: flex;
  gap: 1.5rem;
  margin-top: clamp(1.25rem, 0.357rem + 2.381vw, 2.5rem);
}

section.hm_sec1 {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0 0;
}
section.hm_sec1 .heading_txt {
  text-align: center;
  margin: 0 0 clamp(0.938rem, -0.179rem + 2.976vw, 2.5rem);
}
section.hm_sec1 .plus_icon {
  width: 3.8125rem;
  height: 3.8125rem;
  margin: -1.9375rem auto 0;
  position: relative;
  z-index: 2;
}

.sol_item {
  position: relative;
  width: 100%;
  box-shadow: -0.25rem 0px 0.375rem 0rem rgba(169, 169, 169, 0.25), 0.25rem 0.25rem 0.375rem 0px rgba(169, 169, 169, 0.25);
  border-radius: 1.875rem;
  overflow: hidden;
}
.sol_item .sol_gp_fm {
  position: relative;
  z-index: -1;
}
.sol_item .sol_gp_fm .sol_lg {
  position: absolute;
  left: 1.75rem;
  top: 1.75rem;
  width: 6.5789rem;
  z-index: 1;
}
.sol_item .sol_gp_fm .sol_lg img {
  width: 100%;
}
.sol_item .sol_gp_fm .sol_fm {
  width: 100%;
  height: 100%;
}
.sol_item .sol_gp_fm .sol_fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.sol_item .sol_dt {
  padding: 3.75rem 1.75rem 3.625rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: -3.75rem;
}
.sol_item .sol_dt::before {
  content: " ";
  position: absolute;
  width: calc(100% + 8.75rem);
  height: 21rem;
  border-radius: 50%;
  background: var(--White, #fff);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  top: 0;
  z-index: -1;
}
.sol_item .sol_dt h3 {
  margin-bottom: clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
.sol_item .sol_dt h4 {
  color: var(--Brand-Orange, #f54c00);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.sol_item .arrow-plus {
  width: 3.8125rem;
  height: 3.8125rem;
  position: absolute;
  bottom: -1.9063rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.sol_item:hover .sol_gp_fm .sol_fm img {
  transform: scale(1.1);
}

section.hm_sec2 {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0;
}
section.hm_sec2 .gp-increased {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 39px;
  align-content: space-around;
  justify-content: space-between;
  align-items: flex-start;
}
section.hm_sec2 .gp-increased::before {
  content: " ";
  position: absolute;
  width: calc(100% - 14rem);
  height: calc(100% - 8.75rem);
  border-radius: 16px;
  background: url(../images/bg_bx.png) no-repeat;
  background-size: contain;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 3.125rem auto 0;
}
section.hm_sec2 .gp-increased .progress-card {
  margin-top: 5.75rem;
}
section.hm_sec2 .gp-increased .gp_fm {
  width: 100%;
  max-width: 26.125rem;
  border-radius: 12px;
  overflow: hidden;
}
section.hm_sec2 .gp-increased .gp_fm img {
  width: 100%;
  height: 100%;
}
section.hm_sec2 .gp_counter {
  width: 100%;
  border-top: 1px solid #000;
  padding: 1.875rem 0 0;
  margin-top: 1.25rem;
}
section.hm_sec2 .gp_counter ul {
  display: flex;
  gap: 3.625rem;
}
section.hm_sec2 .gp_counter ul li .counter-item {
  margin: 0 0 3.75rem;
}
section.hm_sec2 .gp_counter ul li .counter-item h4 {
  color: var(--Brand-Blue, #191f3b);
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8rem; /* 48px */
  text-transform: capitalize;
  margin: 0 0 0.5rem;
}
section.hm_sec2 .gp_counter ul li .counter-item h4 span {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 0px;
}
section.hm_sec2 .gp_counter ul li .counter-item p {
  color: var(--Text-Grey, #4e4e4e);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}
section.hm_sec2 .project_time {
  margin-left: auto;
}

.progress-card {
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: -4px 4px 4px 0px rgba(150, 150, 150, 0.14), 0px -4px 4px 0px rgba(150, 150, 150, 0.14);
  padding: 1.25rem;
  width: 14.0625rem;
  position: relative;
}
.progress-card h3 {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.progress-card .progressBar {
  position: relative;
  margin: 0px;
  text-align: center;
}
.progress-card .progressBar .barOverflow {
  position: relative;
  overflow: hidden;
  width: 11.5625rem;
  height: 96px;
  margin-bottom: -14px;
}
.progress-card .progressBar .barOverflow .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 11.5625rem;
  height: 11.5625rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: 10px solid #ffccb6;
  border-bottom-color: #f54c00;
  border-right-color: #f54c00;
}
.progress-card .progressBar .gp_info_prg {
  position: relative;
  margin: -50px 0 0;
}
.progress-card .progressBar .gp_info_prg h3 {
  color: var(--Brand-Blue, #191f3b);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.8rem;
}
.progress-card .progressBar .gp_info_prg h5 {
  color: var(--Text-Grey, #4e4e4e);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.project_time {
  width: 100%;
  max-width: 28.0625rem;
  padding: 27px 21px 18px 33px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: -4px 4px 4px 0px rgba(150, 150, 150, 0.14), 0px -4px 4px 0px rgba(150, 150, 150, 0.14);
}
.project_time .pj_heading {
  display: flex;
  gap: 3.625rem;
  margin: 0 0 1.25rem;
}
.project_time .pj_heading .prj_bx {
  padding: 0.5rem 0.625rem;
  width: 100%;
  max-width: 13.0625rem;
  border-radius: 0.375rem;
  background: var(--Brand-Blue, #191f3b);
  text-align: left;
}
.project_time .pj_heading .prj_bx h5 {
  color: var(--White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}

section.hm_sec3 {
  padding: 0 0 clamp(1.875rem, -0.357rem + 5.952vw, 5rem);
}
section.hm_sec3 h1,
section.hm_sec3 h2 {
  text-align: center;
  margin: 0 0 clamp(0.625rem, -0.714rem + 3.571vw, 2.5rem);
}
section.hm_sec3 ul.work_counter {
  display: flex;
  counter-reset: section;
  gap: 12.375rem;
}
section.hm_sec3 ul.work_counter li {
  position: relative;
}
section.hm_sec3 ul.work_counter li + li::before {
  content: " ";
  position: absolute;
  width: 93px;
  height: 93px;
  background: url(../images/curve_arrow.svg) no-repeat;
  background-size: contain;
  left: calc(-50% + 2.8125rem);
  transform: translateX(-50%);
}
section.hm_sec3 ul.work_counter li + li:nth-child(odd)::before {
  transform: rotateX(180deg) rotate(25deg);
  left: calc(-50% + 0.8125rem);
}
section.hm_sec3 ul.work_counter li .hw_wrk_item {
  display: grid;
  grid-template-columns: 2.625rem 1fr;
  gap: 1.25rem;
  align-items: start;
}
section.hm_sec3 ul.work_counter li .hw_wrk_item .count {
  border-radius: 30px;
  background: var(--Brand-Blue, #191f3b);
  display: flex;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.6875rem 0px 8px 0px;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
section.hm_sec3 ul.work_counter li .hw_wrk_item .count::before {
  counter-increment: section;
  content: counter(section);
}
section.hm_sec3 ul.work_counter li .hw_wrk_item .hw_wrk_txt h4 {
  color: var(--Brand-Orange, #f54c00);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0 0 clamp(0.625rem, 0.357rem + 0.714vw, 1rem);
}

section.hm_sec4 {
  background: var(--bg-Color, #fff9f6);
  padding: clamp(1.875rem, 0.536rem + 3.571vw, 3.75rem) 0;
}
section.hm_sec4 .heading_txt {
  text-align: center;
  margin: 0 0 clamp(0.938rem, -0.624rem + 4.166vw, 3.125rem);
}
section.hm_sec4 .heading_txt h2 {
  max-width: 579px;
  margin: 0 auto 1rem;
}
section.hm_sec4 .heading_txt p {
  max-width: 25.375rem;
  margin: auto;
}
section.hm_sec4 ul.feature_counter {
  counter-reset: section;
}
section.hm_sec4 ul.feature_counter li .feat_item_counter {
  padding: 20px 30px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  grid-template-columns: 2.625rem 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
section.hm_sec4 ul.feature_counter li .feat_item_counter .count {
  border-radius: 30px;
  background: var(--Brand-Blue, #191f3b);
  display: flex;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.6875rem 0px 8px 0px;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
section.hm_sec4 ul.feature_counter li .feat_item_counter .count::before {
  counter-increment: section;
  content: counter(section);
}
section.hm_sec4 ul.feature_counter li .feat_item_counter .feat_item_txt h4 {
  color: var(--Brand-Orange, #f54c00);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0 0 clamp(0.625rem, 0.357rem + 0.714vw, 1rem);
  transition: all 0.3s ease-in-out;
}
section.hm_sec4 ul.feature_counter li .feat_item_counter .feat_item_txt p {
  transition: all 0.3s ease-in-out;
}
section.hm_sec4 ul.feature_counter li .feat_item_counter:hover {
  background: var(--Brand-Blue, #191f3b);
}
section.hm_sec4 ul.feature_counter li .feat_item_counter:hover .count {
  background: var(--Brand-Orange, #f54c00);
}
section.hm_sec4 ul.feature_counter li .feat_item_counter:hover .feat_item_txt h4,
section.hm_sec4 ul.feature_counter li .feat_item_counter:hover .feat_item_txt p {
  color: #fff;
}
section.hm_sec4 ul.feature_counter li + li {
  margin-top: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
}
section.hm_sec4 .grp_feat .report_progress {
  margin-bottom: -59px;
}
section.hm_sec4 .grp_feat .feature_img {
  max-width: 100%;
  width: calc(100% - 7rem);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}
section.hm_sec4 .grp_feat .feature_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec4 .grp_feat p {
  padding-left: 1.625rem;
  color: var(--Text-Grey, #4e4e4e);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  position: relative;
}
section.hm_sec4 .grp_feat p::before {
  content: " ";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  background: url(../images/circle-stars.svg) no-repeat;
  background-size: contain;
  left: 0;
  top: 0.1875rem;
}
section.hm_sec4 .grp_feat p a {
  color: #f54c00;
}
section.hm_sec4 .grp_feat p a:hover {
  color: #191f3b;
}

.report_progress {
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: -4px 4px 4px 0px rgba(150, 150, 150, 0.14), 0px -4px 4px 0px rgba(150, 150, 150, 0.14);
  padding: 17px 18px 16px 19px;
  max-width: 19.125rem;
  margin-left: auto;
  z-index: 1;
  position: relative;
}
.report_progress h6 {
  color: var(--Text-Grey, #4e4e4e);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: capitalize;
  margin: 0 0 0.7188rem;
}
.report_progress .progressBx {
  width: 100%;
  height: 0.5625rem;
  border-radius: 1.875rem;
  background: #ffccb6;
}
.report_progress .skill-wrapper .rig_bx {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.44rem;
}
.report_progress .skill-wrapper .rig_bx span.d-block {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}
.report_progress .skill-wrapper .rig_bx .rig_gp {
  display: flex;
  align-items: center;
}
.report_progress .skill-wrapper .rig_bx .rig_gp span.pre {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  text-transform: capitalize;
  margin: 0 0 0 1.25rem;
  padding: 0;
}
.report_progress .skill-wrapper span {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  margin-bottom: 10px;
}
.report_progress .skill-wrapper .progress-bar {
  background: #f54c00;
  border-radius: 1.875rem;
  height: 100%;
}
.report_progress .progressbar-active {
  animation-name: progress;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

section.hm_sec5 {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0 clamp(1.875rem, -8.171rem + 26.79vw, 15.94rem);
}
section.hm_sec5 .container {
  position: relative;
}
section.hm_sec5 .lg_icon {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
section.hm_sec5 .lg_icon.one {
  left: 0;
}
section.hm_sec5 .lg_icon.two {
  left: 0;
  bottom: 0;
}
section.hm_sec5 .lg_icon.three {
  left: 0;
  right: 0;
  bottom: -11.875rem;
  margin: auto;
}
section.hm_sec5 .lg_icon.four {
  right: 0;
}
section.hm_sec5 .lg_icon.five {
  right: 0;
  bottom: -2.8125rem;
}
section.hm_sec5 .supportTest {
  width: 100%;
  max-width: 40.125rem;
  margin: auto;
}
section.hm_sec5 .supportTest .sup_item {
  border-radius: 1rem;
  background: radial-gradient(157.26% 147.66% at 46.6% 21.9%, #191f3b 0%, #f54c00 81.78%);
  padding: 3.31rem 3rem 3.25rem;
  text-align: center;
}
section.hm_sec5 .supportTest .sup_item .topic-icon {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 1rem;
}
section.hm_sec5 .supportTest .sup_item p {
  color: var(--White, #fff);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.6875rem */
  text-transform: capitalize;
  margin: 0 0 2.5rem;
}
section.hm_sec5 .supportTest .sup_item h5 {
  color: var(--White, #fff);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
section.hm_sec5 .supportTest .sup_item h6 {
  color: var(--White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  margin: 0;
  padding: 0;
}
section.hm_sec5 .supportTest .arrow-swiper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
section.hm_sec5 .supportTest .arrow-swiper :is(.swiper-button-next, .swiper-button-prev) {
  position: relative;
  margin: 0;
  padding: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--Brand-Blue, #191f3b);
  border-radius: 50%;
  inset: 0;
}
section.hm_sec5 .supportTest .arrow-swiper :is(.swiper-button-next, .swiper-button-prev):after {
  /* Set the font for this icon style */
  font-family: "Font Awesome 6 Free";
  /* Set the weight for this icon style */
  font-weight: 900;
  /* Make sure icons render pixel-perfect */
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  color: #fff;
}
section.hm_sec5 .supportTest .arrow-swiper :is(.swiper-button-next, .swiper-button-prev).swiper-button-disabled {
  opacity: 1;
}
section.hm_sec5 .supportTest .arrow-swiper .swiper-button-prev::after {
  content: "\f060";
}
section.hm_sec5 .supportTest .arrow-swiper .swiper-button-next::after {
  content: "\f061";
}

.heading_txt {
  text-align: center;
  margin: 0 0 clamp(0.938rem, -0.624rem + 4.166vw, 3.125rem);
}
.heading_txt h2 {
  max-width: 579px;
  margin: 0 auto 1rem;
}
.heading_txt p {
  max-width: 55.375rem;
  margin: auto;
}

section.hm_sec6 {
  position: relative;
  padding: clamp(1.875rem, -1.271rem + 8.39vw, 6.28rem) 0;
}
section.hm_sec6 .bg_vid {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin-left: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  inset: 0;
  z-index: -1;
}
section.hm_sec6 .bg_vid::before {
  content: " ";
  position: absolute;
  inset: 0;
  opacity: 0.68;
  background: linear-gradient(79deg, #000 10.68%, rgba(0, 0, 0, 0.55) 58.35%, rgba(0, 0, 0, 0.1) 100%);
  width: 100%;
  height: 100%;
}
section.hm_sec6 .bg_vid video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 80%;
     object-position: center 80%;
}
section.hm_sec6 h2,
section.hm_sec6 p {
  color: #fff;
}
section.hm_sec6 .gp_btn {
  display: flex;
  gap: 1.5rem;
  margin-top: clamp(1.25rem, 0.357rem + 2.381vw, 2.5rem);
}

footer.ftMain {
  background: #fff9f6;
}
footer.ftMain .topFt {
  padding: clamp(1.875rem, -0.848rem + 7.262vw, 5.688rem) 0 clamp(1.875rem, 1.429rem + 1.19vw, 2.5rem);
}
footer.ftMain .topFt .ft_item {
  margin: 0 0 1.25rem;
}
footer.ftMain .topFt .ft_item .ft_logo_link {
  max-width: 18.0625rem;
  margin: 0 0 2.5rem;
}
footer.ftMain .topFt .ft_item .ft_logo_link img {
  width: 100%;
}
footer.ftMain .topFt .ft_item p {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
}
footer.ftMain .topFt .ft_item .ft_social {
  margin: 0 0 1.5rem;
}
footer.ftMain .topFt .ft_item .ft_social > ul {
  display: flex;
  gap: 1.5rem;
}
footer.ftMain .topFt .ft_item .ft_social > ul > li a {
  color: #191f3b;
  transition: all 0.3s ease-in-out;
}
footer.ftMain .topFt .ft_item .ft_social > ul > li a i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer.ftMain .topFt .ft_item .ft_social > ul > li a:hover {
  color: #f54c00;
}
footer.ftMain .topFt .ft_item h3 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 1rem;
}
footer.ftMain .topFt .ft_item > ul {
  display: block;
}
footer.ftMain .topFt .ft_item > ul li {
  display: block;
}
footer.ftMain .topFt .ft_item > ul li a {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer.ftMain .topFt .ft_item > ul li a:hover {
  color: #f54c00;
}
footer.ftMain .topFt .ft_item > ul li + li {
  margin-top: 0.75rem;
}
footer.ftMain .topFt .ft_item.pl40 {
  margin-left: 4.88rem;
}
footer.ftMain .topFt .ft_item.pl37 {
  margin-left: 3.75rem;
}
footer.ftMain .topFt .ft_item.location_item {
  margin-bottom: clamp(0.938rem, -1.071rem + 5.357vw, 3.75rem);
}
footer.ftMain .topFt .ft_item .sign-up-email {
  margin: 0 0 2.5rem;
}
footer.ftMain .topFt .ft_item .sign-up-email h3 {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 1rem;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm {
  position: relative;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm input:not([type=submit]) {
  border-radius: 0.375rem;
  background: var(--Brand-Blue, #191f3b);
  padding: 1.31rem 5.2rem 1.31rem 0.75rem;
  color: #fff;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  box-shadow: none;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm input:not([type=submit])::-moz-placeholder {
  color: #fff;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm input:not([type=submit])::placeholder {
  color: #fff;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm input[type=submit] {
  display: flex;
  width: 2.9375rem;
  height: 2.625rem;
  padding: 0.625rem 1.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.3125rem;
  background: var(--Brand-Orange, #f54c00) url(../images/arrow-axis-icon.svg) no-repeat center;
  border: none;
  outline: none;
  position: absolute;
  right: 0.75rem;
  top: 0.625rem;
  font-size: 0;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm .wpcf7-spinner {
  display: none;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm .wpcf7-not-valid-tip {
  margin: 10px 0 0;
}
footer.ftMain .topFt .ft_item .sign-up-email .gp_fm .wpcf7-response-output {
  margin: 10px 0 0;
  font-size: 0.875rem;
}
footer.ftMain .btFt {
  display: flex;
  border-top: 1px solid #fff;
  padding: 1.875rem 0 1.875rem;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-top: 1px solid #6d6e71;
}
footer.ftMain .btFt .copyright p {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer.ftMain .btFt ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer.ftMain .btFt ul li {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
footer.ftMain .btFt ul li a {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
footer.ftMain .btFt ul li a:hover {
  color: #f54c00;
}
footer.ftMain .btFt .row [class*=col-]:nth-child(1) ul {
  justify-content: start;
}
footer.ftMain .btFt .row [class*=col-]:nth-child(2) ul {
  justify-content: center;
}
footer.ftMain .btFt .row [class*=col-]:nth-child(3) ul {
  justify-content: flex-end;
}

section.hm_sec4.innerOP {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0;
  background: #fff;
}
section.hm_sec4.innerOP .heading_txt h2 {
  max-width: 100%;
}
section.hm_sec4.innerOP .heading_txt p {
  max-width: 100%;
}
section.hm_sec4.innerOP .grp_feat {
  position: relative;
}
section.hm_sec4.innerOP .grp_feat .progress-card {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 5.1875rem;
  text-align: center;
}
section.hm_sec4.innerOP .grp_feat .progress-card img {
  width: 147.368px;
  margin: 0 0 1.5rem;
}
section.hm_sec4.innerOP .grp_feat .progress-card > h3 {
  color: var(--Brand-Blue, #191f3b);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
section.hm_sec4.innerOP .grp_feat .project_time {
  padding: 0.9375rem 1.25rem 1.3125rem;
  max-width: 20.875rem;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 5.1875rem;
  text-align: center;
}
section.hm_sec4.innerOP .grp_feat .project_time img.logo {
  max-width: 9.2105rem;
  margin: 0 auto 1.5rem;
}
section.hm_sec4.innerOP .grp_feat .project_time .pj_heading {
  gap: 1rem;
  justify-content: space-between;
}
section.hm_sec4.innerOP .grp_feat .project_time .pj_heading h6 {
  color: var(--Text-Grey, #4e4e4e);
  font-size: 11.801px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 17.701px */
  text-transform: capitalize;
  text-align: left;
}
section.hm_sec4.innerOP .grp_feat .project_time .pj_heading .prj_bx {
  max-width: 154.149px;
}
section.hm_sec4.innerOP .grp_feat .project_time .pj_heading .prj_bx h5 {
  color: var(--White, #fff);
  font-size: 0.7376rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
section.hm_sec4.innerOP .grp_feat .report_progress {
  width: 100%;
  max-width: 20.875rem;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 5.1875rem;
  text-align: center;
}
section.hm_sec4.innerOP .grp_feat .report_progress > img {
  width: 100%;
  max-width: 9.2106rem;
  margin: 0 auto 1.5rem;
}
section.hm_sec4.innerOP .grp_feat .report_progress h6 {
  text-align: left;
}
section.hm_sec4.innerOP ul.feature_counter li .feat_item_counter .feat_item_txt h4 {
  color: var(--Brand-Blue, #191f3b);
}
section.hm_sec4.innerOP ul.feature_counter li .feat_item_counter:hover .feat_item_txt h4,
section.hm_sec4.innerOP ul.feature_counter li .feat_item_counter:hover .feat_item_txt p {
  color: #fff;
}

section.hm_sec3.stepsPg {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0;
}

section.stepsPg ul.feature_counter li .feat_item_counter .count-steps {
  border-radius: 30px;
  background: var(--Brand-Blue, #191f3b);
  display: flex;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.6875rem 0px 8px 0px;
  justify-content: center;
  align-items: center;
  color: var(--White, #fff);
  transition: all 0.3s ease-in-out;
}
section.stepsPg ul.feature_counter li .feat_item_counter:hover {
  background: var(--Brand-Blue, #191f3b);
}
section.stepsPg ul.feature_counter li .feat_item_counter:hover .count-steps {
  background: var(--Brand-Orange, #f54c00);
}

section.hm_sec4.faqInner {
  background: #fff;
}
section.hm_sec4.faqInner .heading_txt h2 {
  max-width: 100%;
}
section.hm_sec4.faqInner .heading_txt p {
  max-width: 100%;
}

.faq_box {
  width: 100%;
  padding: 0;
  margin: 0px;
  position: relative;
}
.faq_box .faq_item {
  text-align: left;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-Color, #fff9f6);
  padding: 1.375rem 1rem;
  transition: all 0.3s ease-in-out;
}
.faq_box .faq_item.main_active {
  background: var(--Brand-Blue, #191f3b);
}
.faq_box .faq_item.main_active .faq_hd h5 {
  color: var(--White, #fff);
  font-weight: 600;
}
.faq_box .faq_item.main_active .faq_hd.closed::before {
  border: 1px solid #fff;
  color: #fff;
}
.faq_box .faq_item.main_active .faq_cont {
  border-top: 1px solid var(--Brand-Orange, #f54c00);
}
.faq_box .faq_item.main_active .faq_cont p {
  color: #fff;
}
.faq_box .faq_item:last-child {
  margin: 0;
}
.faq_box .faq_item + .faq_item {
  margin-top: 1.5rem;
}
.faq_box .faq_item .faq_hd {
  padding: 0.125rem 2.13rem 0.125rem 0;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0px;
}
.faq_box .faq_item .faq_hd::before {
  font: var(--fa-font-solid);
  content: "\f067";
  position: absolute;
  display: flex;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  right: 0px;
  top: 0px;
  margin: auto;
  z-index: 1;
  font-size: 1rem;
  width: 24px;
  height: 24px;
  color: #121d3c;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #121d3c;
  border-radius: 50%;
}
.faq_box .faq_item .faq_hd.closed::before {
  content: "\f068";
}
.faq_box .faq_item .faq_hd h5 {
  position: relative;
  color: var(--Brand-Blue, #191f3b);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 120% */
  margin: 0;
}
.faq_box .faq_item .faq_cont {
  display: none;
  padding: 1rem 0 0;
  margin: 1rem 0 0;
  border-top: none;
}
.faq_box .faq_item .faq_cont p {
  color: #585858;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 175% */
  margin: 0;
}

section.hm_sec4.resPg {
  background: #fff;
}
section.hm_sec4.resPg .heading_txt h2 {
  max-width: 100%;
}
section.hm_sec4.resPg .heading_txt p {
  max-width: 100%;
}

.res_item {
  width: 100%;
  margin-bottom: clamp(1.25rem, 0.938rem + 2.5vw, 3.188rem);
}
.res_item .res_fm {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
.res_item .res_fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.res_item .res_fm a {
  display: block;
  width: 100%;
  height: 100%;
}
.res_item .res_txt h4 {
  color: #1e1e1e;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 clamp(0.5rem, 0.321rem + 0.476vw, 0.75rem);
}
.res_item .res_txt p {
  margin-bottom: clamp(0.625rem, 0.357rem + 0.714vw, 1rem);
}
.res_item .res_txt > a {
  color: var(--Brand-Orange, #f54c00);
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.res_item .res_txt > a span {
  display: inline-block;
  margin-left: 0.625rem;
}
.res_item:hover .res_fm img {
  transform: scale(1.15);
}

section.hm_sec4.restDTPg {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0;
  background: #fff;
}
section.hm_sec4.restDTPg .res_dt_fm {
  width: 100%;
  border-radius: 1.5625rem;
  overflow: hidden;
  margin: 0 0 clamp(0.938rem, -0.335rem + 3.393vw, 2.719rem);
}
section.hm_sec4.restDTPg .res_dt_fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec4.restDTPg ul.res_list {
  display: flex;
  gap: 1.875rem;
  align-items: start;
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
section.hm_sec4.restDTPg ul.res_list li {
  display: grid;
  grid-template-columns: 1.125rem 1fr;
  gap: 0.5rem;
}
section.hm_sec4.restDTPg ul.res_list li p {
  padding: 0.15rem 0;
}
section.hm_sec4.restDTPg h1 {
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
section.hm_sec4.restDTPg h1 + p {
  color: var(--Text-Grey, #4e4e4e);
}
section.hm_sec4.restDTPg p {
  color: #7a7878;
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
section.hm_sec4.restDTPg h3 {
  margin: 0 0 clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
section.hm_sec4.restDTPg .quote_txt {
  padding-left: 1.87rem;
  border-left: 4px solid var(--Brand-Orange, #f54c00);
}
section.hm_sec4.restDTPg .quote_txt p {
  color: #595959;
  font-size: clamp(0.875rem, 0.696rem + 0.476vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 1.6875rem */
  text-align: left;
}
section.hm_sec4.restDTPg .share_post {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(0.938rem, -0.179rem + 2.976vw, 2.5rem);
}
section.hm_sec4.restDTPg .share_post h4 {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
  text-transform: capitalize;
  margin: 0;
}
section.hm_sec4.restDTPg .share_post ul {
  display: flex;
  gap: 0.75rem;
}
section.hm_sec4.restDTPg .share_post ul li a {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  color: #f54c00;
  border-radius: 1.875rem;
  background: #fff5f0;
  transition: all 0.3s ease-in-out;
}
section.hm_sec4.restDTPg .share_post ul li a:hover {
  background: #191f3b;
  color: #fff;
}

section.meetExpert {
  background: #fff9f6;
  padding: clamp(1.875rem, 0.536rem + 3.571vw, 3.75rem) 0;
}

.meetExpItem {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.meetExpItem .mexFm {
  position: relative;
  width: 100%;
  background: #d9d9d9;
  border-radius: 1rem;
  overflow: hidden;
}
.meetExpItem .mexFm a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.meetExpItem .mexFm a::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.meetExpItem .mexFm a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.meetExpItem .mexDetails {
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem;
  width: calc(100% - 30px);
  bottom: -100%;
  position: absolute;
  transform: rotate(30deg) translateX(-100px);
  z-index: 1;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.6s ease-in-out;
}
.meetExpItem .mexDetails .d-flex-adj {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.meetExpItem .mexDetails .d-flex-adj h5 {
  color: var(--Brand-Orange, #f54c00);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}
.meetExpItem .mexDetails .d-flex-adj .title-socials ul {
  display: flex;
  gap: 1rem;
}
.meetExpItem:hover .mexDetails {
  bottom: 1rem;
  transform: rotate(0deg) translateX(0px);
}

section.hm_sec4.cmpPg {
  background: #fff;
}
section.hm_sec4.cmpPg .heading_txt {
  margin: 0 0 clamp(0.938rem, -0.624rem + 4.166vw, 2.5rem);
}
section.hm_sec4.cmpPg .heading_txt h1 {
  max-width: 70.25rem;
  margin: 0 auto 1rem;
}
section.hm_sec4.cmpPg .heading_txt p {
  max-width: 56.75rem;
}
section.hm_sec4.cmpPg .cmfm_img {
  width: 100%;
  border-radius: 1.875rem;
  overflow: hidden;
  margin-bottom: clamp(0.938rem, -0.179rem + 2.976vw, 2.5rem);
}
section.hm_sec4.cmpPg .cmfm_img img {
  width: 100%;
  height: 100%;
}
section.hm_sec4.cmpPg ul.cm_item {
  display: flex;
  justify-content: space-between;
}
section.hm_sec4.cmpPg ul.cm_item li {
  width: calc(25% - 0.9375rem);
}
section.hm_sec4.cmpPg ul.cm_item li .counter-item {
  text-align: center;
  padding: 1.8125rem 2rem 1.75rem 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: -2px 0px 6px 0px rgba(169, 169, 169, 0.25), 2px 2px 6px 0px rgba(169, 169, 169, 0.25);
}
section.hm_sec4.cmpPg ul.cm_item li .counter-item h4 {
  color: var(--Brand-Orange, #f54c00);
  text-align: center;
  font-size: clamp(1.25rem, 0.714rem + 1.429vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 3rem */
  text-transform: capitalize;
  margin: 0 0 0.5rem;
}
section.hm_sec4.cmpPg ul.cm_item li .counter-item p {
  color: var(--Brand-Blue, #191f3b);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}

section.hm_sec2 .list_number {
  width: 100%;
  border-top: 1px solid #000;
  padding: 1.875rem 0 0;
  margin-top: 1.25rem;
}
section.hm_sec2 .list_number ul {
  counter-reset: section;
}
section.hm_sec2 .list_number ul li {
  padding-left: 2.5rem;
  position: relative;
  color: var(--Text-Grey, #4e4e4e);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.6875rem */
}
section.hm_sec2 .list_number ul li::before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--Brand-Orange, #f54c00);
  border-radius: 50%;
  left: 0;
  top: -0.125rem;
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hm_sec2 .list_number ul li + li {
  margin-top: 1rem;
}

.mb5 {
  margin-bottom: clamp(1.875rem, -0.357rem + 5.952vw, 5rem);
}

section.conPg1 {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0 0;
}
section.conPg1 .conImg {
  max-width: 33.125rem;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-left: auto;
}
section.conPg1 .conImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.conPg1 .cont_info {
  padding: clamp(1.25rem, -0.179rem + 3.81vw, 3.25rem) clamp(1.875rem, -1.607rem + 9.286vw, 6.75rem);
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(270deg, #f54c00 -7.31%, #191f3b 112.25%);
}
section.conPg1 .cont_info .cnt_info_item {
  text-align: center;
}
section.conPg1 .cont_info .cnt_info_item .cont_icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Brand-Blue, #191f3b);
  border-radius: 50%;
  margin: 0 auto clamp(0.625rem, 0.179rem + 1.19vw, 1.25rem);
}
section.conPg1 .cont_info .cnt_info_item h5 {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.conPg1 .cont_info .cnt_info_item p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.conPg1 .cont_info .cnt_info_item p a {
  color: #fff;
}
section.conPg1 .cont_info .cnt_info_item p a:hover {
  color: #191f3b;
}

section.hm_sec4.faqInner.cntPg {
  padding: clamp(1.875rem, -0.357rem + 5.952vw, 5rem) 0;
}/*# sourceMappingURL=style.css.map */