@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/IvyPrestoDisplay-BoldItalic.woff2") format("woff2"), url("../fonts/IvyPrestoDisplay-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/IvyPrestoDisplay-LightItalic.woff2") format("woff2"), url("../fonts/IvyPrestoDisplay-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/IvyPrestoDisplay-SemiBoldItalic.woff2") format("woff2"), url("../fonts/IvyPrestoDisplay-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/IvyPrestoDisplay-ThinItalic.woff2") format("woff2"), url("../fonts/IvyPrestoDisplay-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Headline";
  src: url("../fonts/IvyPrestoHeadline-BoldItalic.woff2") format("woff2"), url("../fonts/IvyPrestoHeadline-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Headline";
  src: url("../fonts/IvyPrestoHeadline-Light.woff2") format("woff2"), url("../fonts/IvyPrestoHeadline-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Headline";
  src: url("../fonts/IvyPrestoHeadline-SemiBold.woff2") format("woff2"), url("../fonts/IvyPrestoHeadline-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyPresto Headline";
  src: url("../fonts/IvyPrestoHeadline-Thin.woff2") format("woff2"), url("../fonts/IvyPrestoHeadline-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --global-font-family: "Inter", sans-serif;
  --global-font-family-2: "IvyPresto Display", sans-serif;
  --global-font-family-3: "IvyPresto Headline", sans-serif;
  --global-font-size: 1rem;
  --global-font-size-html: 16px;
  --global-font-weight: 400;
  --global-font-color: #232323;
  --global-background-color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #EE5220;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #2C3E50;
}

@keyframes neechejaa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes paintFill {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0.95;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
    opacity: 1;
  }
}
@keyframes paintShine {
  0% {
    left: -100%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0.4;
  }
}
@keyframes brushSweep {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 0.8;
  }
}
@keyframes colorWash {
  0% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.08) saturate(1.1);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}
@keyframes paintFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size-html);
  font-weight: var(--global-font-weight);
  color: var(--global-font-color);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--global-background-color);
  overflow-x: hidden;
}
body ::-moz-selection {
  background-color: #232323;
  color: #fff;
}
body ::selection {
  background-color: #232323;
  color: #fff;
}
body .container {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0.938rem;
}
body .center {
  text-align: center;
}
body .wpb_raw_code.wpb_raw_html {
  margin-bottom: 0;
}
body .wpb_single_image {
  margin-bottom: 0;
}
body .wpb_text_column {
  margin-bottom: 0;
}
body .vc_icon_element {
  margin-bottom: 0;
}
body .hidden {
  display: none !important;
}
body .desk-hide {
  display: none !important;
}
body p {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size);
  font-weight: var(--global-font-weight);
  margin: 0 0 1em;
}
body a {
  color: var(--global-font-color);
  text-decoration: none;
  box-shadow: none;
  transition: 0.4s;
}
body a:hover {
  color: #EE5220;
  transition: 0.4s;
}
body .m-auto {
  margin-left: auto;
  margin-right: auto;
}
body .mg-none {
  margin: 0 !important;
}
body .flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body .flex-row .col-1 {
  flex: 0 0 8.34%;
  width: 8.34%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-2 {
  flex: 0 0 16.67%;
  width: 16.67%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-3 {
  flex: 0 0 25%;
  width: 25%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-4 {
  flex: 0 0 33.33%;
  width: 33.33%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-5 {
  flex: 0 0 41.66%;
  width: 41.66%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-6 {
  flex: 0 0 50%;
  width: 50%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-7 {
  flex: 0 0 58.33%;
  width: 58.33%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-8 {
  flex: 0 0 66.66%;
  width: 66.66%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-9 {
  flex: 0 0 75%;
  width: 75%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-10 {
  flex: 0 0 83.33%;
  width: 83.33%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-11 {
  flex: 0 0 91.66%;
  width: 91.66%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .flex-row .col-12 {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0.938rem;
  box-sizing: border-box;
}
body .vc_gitem-zone-a .vc_gitem-row-position-top, body .vc_gitem-zone-b .vc_gitem-row-position-top, body .vc_gitem-zone-a .vc_gitem-row-position-middle, body .vc_gitem-zone-b .vc_gitem-row-position-middle {
  position: relative;
  transform: translate(0, 0);
}
body .vc-gitem-zone-height-mode-auto:before {
  padding: 0;
}
body .vc_gitem_row .vc_gitem-col {
  padding: 0;
}
body .vc_grid-item-zone-c-left .vc_gitem-animated-block {
  width: 100%;
  float: none;
}
body .no-pad {
  padding: 0 !important;
}
body .no-pad > .vc_column-inner {
  padding: 0 !important;
}
body.home header#masthead {
  position: fixed;
}
body header#masthead {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.4s;
  background: #FFF;
  box-shadow: 0 10px 56.9px 0 rgba(0, 0, 0, 0.2);
}
body header#masthead.sticky {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s;
  background: #fff;
  box-shadow: 0 10px 56.9px 0 rgba(0, 0, 0, 0.2);
}
body header#masthead.sticky .top-bar {
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  height: 0;
  overflow: hidden;
}
body header#masthead.sticky .header-main {
  padding: 0.5rem 0;
}
body header#masthead.sticky .header-main .logo img {
  width: 60%;
}
body header#masthead.sticky .header-main ul.menu-wrapper li.menu-item a {
  font-size: 0.9rem;
}
body header#masthead.sticky .header-main ul.menu-wrapper li.menu-item.btn a {
  font-size: 0.9rem;
}
body header#masthead.sticky .header-main a.phone-btn {
  padding: 0.5rem 1.25rem;
  font-size: 1.1rem;
}
body header#masthead .mobile-menu-link {
  display: none;
}
body header#masthead .header-main {
  padding: 0.3875rem 0;
}
body header#masthead .header-main .flex-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
body header#masthead .header-main .flex-row > div {
  padding: 0;
}
body header#masthead .header-main .logo-head {
  flex: 0 0 auto;
}
body header#masthead .header-main .main-menu {
  flex: 1 1 auto;
}
body header#masthead .header-main .logo {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 280px;
}
body header#masthead .header-main .logo img {
  transition: all 0.4s;
  height: auto;
  width: 100%;
  display: block;
}
body header#masthead .header-main ul.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 2.5rem;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item {
  list-style: none;
  position: relative;
  text-transform: capitalize;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a {
  padding-right: 1rem;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 0.75rem;
  transition: all 0.3s;
  color: #2C3E50;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a:hover::after {
  transform: translateY(-50%) rotate(180deg);
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a {
  color: #EE5220;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a:before {
  left: 0;
  width: 100%;
  right: 0;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a {
  background: #EE5220;
  color: #fff;
  padding: 0.97rem 1.25rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.4s;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a:hover {
  background: #2C3E50;
  color: #fff;
  text-decoration: none;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item.btn a:before {
  display: none;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item a {
  font-family: var(--global-font-family);
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #232323;
  transition: 0.4s;
  position: relative;
  font-weight: 500;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 0;
  bottom: 0;
  background: #EE5220;
  height: 1px;
  transition: all 0.4s;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover {
  color: #EE5220;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu {
  position: absolute;
  top: 125%;
  transform: translateY(10px);
  transition: 0.2s;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.4s;
  height: 0;
  background: #fff;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.18);
  border-top: 2px solid #7C7C7C;
  display: block;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  background: #fff;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a {
  width: 100%;
  padding: 0.5rem 1rem;
  color: #232323;
  letter-spacing: 0;
  transition: 0.4s;
  transform: perspective(1px) translateZ(0);
  display: block;
  position: relative;
  font-size: 1em;
  box-sizing: border-box;
  font-weight: 400;
  text-transform: capitalize;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:before {
  display: none;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:hover {
  background: #EE5220;
  color: #fff;
  transition: 0.4s;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item:last-child {
  border-bottom: 0;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item button.sub-menu-toggle {
  display: none;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item:first-child {
  margin-left: 0;
  padding-left: 0;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item:last-child {
  margin-right: 0;
  padding-right: 0;
}
body header#masthead .header-main ul.menu-wrapper li.menu-item:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: none;
  transition: 0.4s;
}
body nav#mm-menu .mm-navbar .mm-navbar__title {
  background: #EE5220;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}
body nav#mm-menu .mm-navbar .mm-btn::before {
  border-color: #FFF;
}
body nav#mm-menu .mm-panels .mm-panel .mm-navbar {
  background: #EE5220;
}
body nav#mm-menu .mm-panels .mm-panel .mm-navbar a.mm-navbar__title {
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  color: #FFF;
}
body nav#mm-menu .mm-panels .mm-panel ul#primary-menu-list li {
  font-size: 1.1rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}
body #content .vc_row {
  margin: 0;
  padding: 0;
}
body #content .vc_row > .wpb_column > .vc_column-inner {
  padding-top: 0;
}
body #content .vc_section {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 4.94rem 0;
}
body #content .vc_section[data-vc-full-width].vc_hidden {
  opacity: 1;
}
body #content .vc_section .vc_row[data-vc-full-width].vc_hidden {
  opacity: 1;
}
body #content .max-50 {
  width: 50%;
}
body #content .max-70 {
  width: 70%;
}
body #content .max-80 {
  width: 80%;
}
body #content .max-90 {
  width: 90%;
}
body #content .m-auto {
  margin: 0 auto;
}
body #content .mg-bottom {
  margin-bottom: 3.12rem;
}
body #content .full-img > .vc_figure {
  display: block !important;
}
body #content .full-img > .vc_figure > .vc_single_image-wrapper {
  display: block !important;
}
body #content .full-img > .vc_figure > .vc_single_image-wrapper img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  height: auto;
  width: 100%;
  max-width: initial !important;
}
body #content .border-img img {
  border-radius: 2.5rem;
}
body #content .vc-no-pad-left > .wpb_column > .vc_column-inner {
  padding-left: 0 !important;
}
body #content .vc-no-pad-left > .vc_column-inner {
  padding-left: 0 !important;
}
body #content .vc-no-pad-right > .wpb_column > .vc_column-inner {
  padding-right: 0 !important;
}
body #content .vc-no-pad-right > .vc_column-inner {
  padding-right: 0 !important;
}
body #content .desk-hidden {
  display: none;
}
body #content .wht-head {
  color: #fff !important;
}
body #content .wht-txt p {
  color: #CFD6DF !important;
}
body #content .wpb_column {
  padding-left: 0;
  padding-right: 0;
}
body #content .main-head {
  color: #232323;
  font-family: var(--global-font-family-3);
  font-size: 4.2625rem;
  font-weight: 300;
  line-height: 4.2rem;
  margin-bottom: 1.31rem;
}
body #content .main-head b {
  font-weight: 300;
  color: #EE5220;
}
body #content .main-head.italic {
  font-style: italic;
  font-family: var(--global-font-family-2);
}
body #content .sub-head {
  color: #232323;
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.125rem;
  margin-bottom: 0.31rem;
}
body #content .txt ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem;
}
body #content .txt ul li {
  position: relative;
  padding-left: 2.25rem;
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
body #content .txt ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: rgba(16, 48, 96, 0.08);
  color: #EE5220;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
body #content .txt ul li:last-child {
  margin-bottom: 0;
}
body #content .txt ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}
body #content .txt ol li {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
body #content .txt ol li:last-child {
  margin-bottom: 0;
}
body #content .txt p {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 300;
}
body #content .txt p strong {
  color: #EE5220;
  font-weight: 500;
}
body #content .txt a {
  color: var(--global-font-color);
  transition: 0.4s;
  font-size: inherit;
  text-decoration: underline;
}
body #content .txt a:hover {
  opacity: 0.8;
}
body #content .justify-center {
  justify-content: center;
}
body #content .btn-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body #content .btn-orange a {
  background: #EE5220;
  color: #fff;
  text-decoration: none;
  padding: 1.12rem 1.25rem;
  border-radius: 0.3125rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body #content .btn-orange a:hover {
  color: #fff;
  background: #2C3E50 !important;
}
body #content .btn-white a {
  background: #fff;
  color: #061D28;
  text-decoration: none;
  padding: 1.12rem 1.25rem;
  border-radius: 0.3125rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body #content .btn-white a:hover {
  color: #fff;
  background: #061D28 !important;
}
body #content .btn-green a {
  background: #075E54;
  color: #fff;
  text-decoration: none;
  padding: 1.12rem 1.25rem;
  border-radius: 0.3125rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body #content .btn-green a:hover {
  color: #fff;
  background: #546E7A !important;
}
body #content .sticky-col > .vc_column-inner {
  display: block;
}
body #content .sticky-col > .vc_column-inner > .wpb_wrapper {
  position: sticky;
  top: 10%;
}
body #content .page-header,
body #content .ip-header {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4rem;
  margin-bottom: 3rem;
  text-align: left;
  background-color: #e48566;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body #content .page-header::before,
body #content .ip-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #080A2A 32.52%, rgba(8, 10, 42, 0) 64.71%);
}
body #content .page-header.has-bg::before,
body #content .ip-header.has-bg::before {
  background: linear-gradient(90deg, #080A2A 32.52%, rgba(8, 10, 42, 0) 64.71%);
}
body #content .page-header .page-header-inner,
body #content .page-header .ip-header-inner,
body #content .ip-header .page-header-inner,
body #content .ip-header .ip-header-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0;
  padding: 0;
}
body #content .page-header .ip-badge,
body #content .ip-header .ip-badge {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding: 0;
  border: none;
  background: none;
}
body #content .page-header .ip-badge .ip-badge-dot,
body #content .ip-header .ip-badge .ip-badge-dot {
  display: none;
}
body #content .page-header .page-title,
body #content .page-header .ip-title,
body #content .ip-header .page-title,
body #content .ip-header .ip-title {
  font-family: var(--global-font-family-2);
  font-style: italic;
  font-size: 4.25rem;
  font-weight: 300;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: none;
}
body #content .page-header .page-title span.orange, body #content .page-header .page-title b,
body #content .page-header .ip-title span.orange,
body #content .page-header .ip-title b,
body #content .ip-header .page-title span.orange,
body #content .ip-header .page-title b,
body #content .ip-header .ip-title span.orange,
body #content .ip-header .ip-title b {
  color: #FFE8DE;
  font-weight: inherit;
}
body #content .page-header .ip-sub,
body #content .ip-header .ip-sub {
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 36rem;
}
body #content .page-header .ip-divider, body #content .page-header .ip-more,
body #content .ip-header .ip-divider,
body #content .ip-header .ip-more {
  display: none;
}
body #content .page-header .page-breadcrumb,
body #content .page-header .ip-breadcrumb,
body #content .ip-header .page-breadcrumb,
body #content .ip-header .ip-breadcrumb {
  font-size: 0.9375rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.35rem;
  line-height: 1.5;
}
body #content .page-header .page-breadcrumb .widget,
body #content .page-header .ip-breadcrumb .widget,
body #content .ip-header .page-breadcrumb .widget,
body #content .ip-header .ip-breadcrumb .widget {
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
body #content .page-header .page-breadcrumb .breadcrumbs,
body #content .page-header .ip-breadcrumb .breadcrumbs,
body #content .ip-header .page-breadcrumb .breadcrumbs,
body #content .ip-header .ip-breadcrumb .breadcrumbs {
  color: inherit;
}
body #content .page-header .page-breadcrumb a,
body #content .page-header .ip-breadcrumb a,
body #content .ip-header .page-breadcrumb a,
body #content .ip-header .ip-breadcrumb a {
  color: #fff;
  transition: 0.35s;
  text-decoration: none;
  font-weight: 500;
}
body #content .page-header .page-breadcrumb a:hover,
body #content .page-header .ip-breadcrumb a:hover,
body #content .ip-header .page-breadcrumb a:hover,
body #content .ip-header .ip-breadcrumb a:hover {
  opacity: 0.8;
  color: #fff;
}
body #content .page-header .page-breadcrumb span, body #content .page-header .page-breadcrumb .breadcrumb_last, body #content .page-header .page-breadcrumb .current-item, body #content .page-header .page-breadcrumb [property=itemListElement],
body #content .page-header .ip-breadcrumb span,
body #content .page-header .ip-breadcrumb .breadcrumb_last,
body #content .page-header .ip-breadcrumb .current-item,
body #content .page-header .ip-breadcrumb [property=itemListElement],
body #content .ip-header .page-breadcrumb span,
body #content .ip-header .page-breadcrumb .breadcrumb_last,
body #content .ip-header .page-breadcrumb .current-item,
body #content .ip-header .page-breadcrumb [property=itemListElement],
body #content .ip-header .ip-breadcrumb span,
body #content .ip-header .ip-breadcrumb .breadcrumb_last,
body #content .ip-header .ip-breadcrumb .current-item,
body #content .ip-header .ip-breadcrumb [property=itemListElement] {
  color: rgba(255, 255, 255, 0.95);
}
body #content .page-header .page-breadcrumb .separator,
body #content .page-header .ip-breadcrumb .separator,
body #content .ip-header .page-breadcrumb .separator,
body #content .ip-header .ip-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0.4rem;
}
body #content .hero-sec {
  height: 100vh;
}
body #content .hero-sec .hero-row .hero-img {
  position: relative;
}
body #content .hero-sec .hero-row .hero-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
body #content .hero-sec .hero-row .hero-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
body #content .hero-sec .hero-row .hero-txt {
  position: absolute;
  bottom: 5.5rem;
  left: 0;
  right: 0;
}
body #content .hero-sec .hero-row .hero-txt .hero-sub {
  color: #FFF;
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
}
body #content .hero-sec .hero-row .hero-txt .hero-head {
  font-family: var(--global-font-family-2);
  font-size: 4.5rem;
  line-height: 5.125rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.88rem;
}
body #content .hero-sec .hero-row .hero-txt .hero-head span.orange {
  color: #FF6635;
}
body #content .hero-sec .hero-row .hero-txt p {
  color: #fff;
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
body #content .hero-sec .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 5;
  width: 8.75rem;
  height: 8.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #content .hero-sec .hero-scroll svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
body #content .hero-sec .hero-scroll svg text {
  font-family: var(--global-font-family);
  font-weight: 400;
  font-size: 1.35rem;
  fill: #fff;
  letter-spacing: 0.02em;
}
body #content .hero-sec .hero-scroll .hero-scroll-circle {
  position: relative;
  z-index: 2;
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C3E50;
  font-size: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.25);
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.375rem);
  }
}
body #content .intro-sec {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
body #content .intro-sec::before {
  content: "";
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(238, 82, 32, 0.14) 0%, rgba(238, 82, 32, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
body #content .intro-sec .intro-row {
  text-align: center;
  position: relative;
  z-index: 1;
}
body #content .intro-sec .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(238, 82, 32, 0.08);
  color: #EE5220;
  border: 1px solid rgba(238, 82, 32, 0.25);
  border-radius: 2.5rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
body #content .intro-sec .intro-badge .intro-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #EE5220;
  flex-shrink: 0;
}
body #content .intro-sec .intro-badge .intro-badge-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #EE5220;
  animation: badgePulse 1.8s ease-out infinite;
}
body #content .intro-sec .main-head {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
body #content .intro-sec .main-head span.orange {
  color: #EE5220;
}
body #content .intro-sec .intro-divider {
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, rgba(238, 82, 32, 0) 0%, #EE5220 50%, rgba(238, 82, 32, 0) 100%);
  margin: 1.5rem auto;
}
body #content .intro-sec .intro-more {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
}
body #content .intro-sec .intro-more span {
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
}
body #content .intro-sec .intro-more i {
  color: #EE5220;
  font-size: 1.125rem;
  animation: introBounce 1.6s ease-in-out infinite;
}
@keyframes introBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.375rem);
  }
}
@keyframes badgePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
body #content .wel-sec .wel-row {
  margin-bottom: 3.12rem;
}
body #content .wel-sec .wel-row .wel-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body #content .wel-sec .wel-row img {
  border-radius: 0.5rem;
}
body #content .wel-sec .wel-row .wel-absolute-img {
  position: absolute;
  top: 3rem;
  z-index: 9;
  left: 0;
  right: 0;
}
body #content .num-sec .num-row > .wpb_column {
  position: relative;
}
body #content .num-sec .num-row .num-head {
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 0.375rem;
  line-height: 1.1;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
body #content .num-sec .num-row .num-head.badge-head {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: normal;
}
body #content .num-sec .num-row .num-txt p {
  font-size: 1rem;
  color: #222222;
  font-weight: 500;
  margin: 0;
}
body #content .diff-sec {
  padding: 4.38rem 0;
  background: #F5F5F5;
}
body #content .diff-sec .diff-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
body #content .diff-sec .diff-card {
  flex: 1 1 17rem;
  max-width: 21rem;
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1rem;
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.4s;
}
body #content .diff-sec .diff-card:hover {
  border-color: #EE5220;
  box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.06);
  transform: translateY(-0.25rem);
}
body #content .diff-sec .diff-card .diff-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.1);
  color: #EE5220;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin: 0 auto 1.25rem;
}
body #content .diff-sec .diff-card h4 {
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 0.5rem;
}
body #content .diff-sec .diff-card p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.55;
  margin: 0;
}
body #content .serve-sec .serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
body #content .serve-sec .serve-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 2.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #232323;
}
body #content .serve-sec .serve-tags span i {
  color: #EE5220;
  font-size: 0.8125rem;
}
body #content .about-story-sec {
  padding: 5rem 0 2rem;
  position: relative;
}
body #content .about-story-sec .about-story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
body #content .about-story-sec .about-story-txt .main-head {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
body #content .about-story-sec .about-story-txt .main-head span.orange {
  color: #EE5220;
}
body #content .about-story-sec .about-story-txt .txt p {
  font-size: 1.2rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
body #content .about-story-sec .about-story-panel {
  position: relative;
  background: #2C3E50;
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem;
  color: #fff;
  overflow: hidden;
  min-height: 18rem;
}
body #content .about-story-sec .about-story-panel::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.35);
}
body #content .about-story-sec .about-story-panel::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
body #content .about-story-sec .about-story-panel .about-story-panel-inner {
  position: relative;
  z-index: 1;
}
body #content .about-story-sec .about-story-panel h4 {
  font-family: var(--global-font-family-3);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}
body #content .about-story-sec .about-story-panel p {
  font-family: var(--global-font-family);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
body #content .about-story-sec .about-story-panel .about-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
body #content .about-story-sec .about-story-panel .about-story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}
body #content .about-story-sec .about-story-panel .about-story-meta span i {
  color: #EE5220;
}
body #content .about-stats-sec {
  padding: 3rem 0 4.5rem;
  position: relative;
}
body #content .about-stats-sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #F8F9FB 0%, #fff 100%);
  z-index: 0;
}
body #content .about-stats-sec > .vc_row, body #content .about-stats-sec > .wpb_row {
  position: relative;
  z-index: 1;
}
body #content .about-stats-sec .about-stats-intro {
  text-align: center;
  margin-bottom: 2.75rem;
}
body #content .about-stats-sec .about-stats-intro .about-eyebrow {
  justify-content: center;
}
body #content .about-stats-sec .about-stats-intro .main-head {
  margin-bottom: 0.75rem;
}
body #content .about-stats-sec .about-stats-intro .txt p {
  color: #6B7280;
  font-size: 1.2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
body #content .about-stats-sec .about-stats-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
body #content .about-stats-sec .about-stats-row::before, body #content .about-stats-sec .about-stats-row::after {
  display: none !important;
}
body #content .about-stats-sec .about-stats-row > .wpb_column {
  width: 100% !important;
  float: none !important;
  position: relative;
  text-align: center;
}
body #content .about-stats-sec .about-stats-row > .wpb_column::after {
  display: none !important;
}
body #content .about-stats-sec .about-stats-row > .wpb_column > .vc_column-inner {
  padding: 0 !important;
  height: 100%;
}
body #content .about-stats-sec .about-stats-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  height: 100%;
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.25rem;
  padding: 2.25rem 1.25rem 2rem;
  box-shadow: 0 1rem 2rem rgba(17, 24, 39, 0.05);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
body #content .about-stats-sec .about-stats-row > .wpb_column > .vc_column-inner > .wpb_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, #EE5220, #FF8A5B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
body #content .about-stats-sec .about-stats-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(238, 82, 32, 0.35);
  box-shadow: 0 1.5rem 2.5rem rgba(238, 82, 32, 0.1);
}
body #content .about-stats-sec .about-stats-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover::before {
  transform: scaleX(1);
}
body #content .about-stats-sec .about-stats-row .about-stat-num {
  font-size: 3.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.05;
  text-align: center;
  color: #2C3E50;
  font-family: var(--global-font-family-3);
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}
body #content .about-stats-sec .about-stats-row .about-stat-num.badge-head {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--global-font-family);
  color: #EE5220;
  padding-top: 0.65rem;
  white-space: normal;
}
body #content .about-stats-sec .about-stats-row .about-stat-txt p {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.45;
}
body #content .about-diff-sec {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
body #content .about-diff-sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: #F3F4F6;
  z-index: 0;
}
body #content .about-diff-sec::after {
  content: "";
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.08);
  z-index: 0;
  pointer-events: none;
}
body #content .about-diff-sec > .vc_row, body #content .about-diff-sec > .wpb_row {
  position: relative;
  z-index: 1;
}
body #content .about-diff-sec .about-diff-intro {
  text-align: center;
  margin-bottom: 3rem;
}
body #content .about-diff-sec .about-diff-grid, body #content .about-diff-sec .about-diff-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
body #content .about-diff-sec .about-diff-card {
  background: #fff;
  border: 1px solid #E8EAED;
  border-radius: 1.25rem;
  padding: 2.15rem 1.5rem 1.85rem;
  text-align: left;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
body #content .about-diff-sec .about-diff-card::before {
  content: attr(data-num);
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--global-font-family-3);
  font-size: 2.75rem;
  font-weight: 300;
  color: rgba(44, 62, 80, 0.08);
  line-height: 1;
}
body #content .about-diff-sec .about-diff-card:hover {
  border-color: #EE5220;
  box-shadow: 0 1.25rem 2.25rem rgba(17, 24, 39, 0.08);
  transform: translateY(-0.4rem);
}
body #content .about-diff-sec .about-diff-card:hover .about-diff-icon {
  background: #EE5220;
  color: #fff;
}
body #content .about-diff-sec .about-diff-card .about-diff-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  background: rgba(238, 82, 32, 0.1);
  color: #EE5220;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 0 1.35rem;
  transition: all 0.35s;
}
body #content .about-diff-sec .about-diff-card h4 {
  font-family: var(--global-font-family);
  font-size: 1.2rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 0.55rem;
}
body #content .about-diff-sec .about-diff-card p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.55;
  margin: 0;
}
body #content .about-serve-sec {
  padding: 5rem 0 4rem;
  position: relative;
}
body #content .about-serve-sec .about-serve-intro .main-head {
  margin-bottom: 1rem;
}
body #content .about-serve-sec .about-serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
body #content .about-serve-sec .about-serve-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 0.9rem 1.25rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  transition: all 0.35s;
  box-shadow: 0 0.5rem 1.25rem rgba(17, 24, 39, 0.03);
}
body #content .about-serve-sec .about-serve-tags span i {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.1);
  color: #EE5220;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body #content .about-serve-sec .about-serve-tags span:hover {
  border-color: #EE5220;
  color: #EE5220;
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(238, 82, 32, 0.1);
}
body #content .about-promise-sec {
  padding: 0 0 5rem;
}
body #content .about-promise-sec .about-promise-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(120deg, #2C3E50 0%, #04425E 55%, #EE5220 140%);
  padding: 3.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
body #content .about-promise-sec .about-promise-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}
body #content .about-promise-sec .about-promise-banner .about-promise-txt {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
body #content .about-promise-sec .about-promise-banner .about-promise-txt h3 {
  font-family: var(--global-font-family-3);
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
body #content .about-promise-sec .about-promise-banner .about-promise-txt p {
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}
body #content .about-promise-sec .about-promise-banner .btn-orange {
  position: relative;
  z-index: 1;
}
body #content .about-promise-sec .about-promise-banner .btn-orange a {
  background: #fff;
  color: #2C3E50;
  font-weight: 600;
}
body #content .about-promise-sec .about-promise-banner .btn-orange a:hover {
  background: #EE5220 !important;
  color: #fff;
}
body #content .gs-sec .gs-row {
  counter-reset: my-handy-counter;
}
body #content .gs-sec .gs-row .wpb_column:first-child > .vc_column-inner > .wpb_wrapper::before {
  transform: translate(0, -50%);
}
body #content .gs-sec .gs-row .wpb_column:last-child > .vc_column-inner > .wpb_wrapper::before {
  transform: translate(-100%, -50%);
  width: 100%;
}
body #content .gs-sec .gs-row .wpb_column::before {
  counter-increment: my-handy-counter;
  content: "0" counter(my-handy-counter);
  position: absolute;
  top: 5%;
  left: 10%;
  color: #E9E9E9;
  text-align: center;
  font-family: var(--global-font-family);
  font-size: 4.25rem;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  z-index: 0;
}
body #content .gs-sec .gs-row .wpb_column > .vc_column-inner > .wpb_wrapper {
  position: relative;
  z-index: 1;
}
body #content .gs-sec .gs-row .wpb_column > .vc_column-inner > .wpb_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #EE5220;
  z-index: 10;
}
body #content .gs-sec .gs-row .wpb_column > .vc_column-inner > .wpb_wrapper::before {
  content: "";
  width: 110%;
  height: 2px;
  background: repeating-linear-gradient(to right, #D1D5DB, #D1D5DB 10px, transparent 10px, transparent 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
body #content .gs-sec .gs-row .gs-icon {
  margin-bottom: 2.325rem;
}
body #content .gs-sec .gs-row .gs-txt {
  padding-top: 2rem;
  max-width: 16rem;
  margin: 0 auto;
}
body #content .gs-sec .gs-row .gs-txt p {
  font-size: 1rem;
  color: #080408;
  font-weight: 400;
  line-height: 1.5;
}
body #content .gs-sec .gs-row .gs-txt p strong {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0.62rem;
  text-transform: uppercase;
  line-height: 1.5;
}
body #content .services-sec .services-row {
  position: relative;
}
body #content .services-sec .services-row.services-page-row .services-slider {
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
body #content .services-sec .services-row.services-page-row .service-card {
  padding: 0;
  height: 100%;
}
body #content .services-sec .services-row.services-page-row .service-card a {
  height: 100%;
  border-radius: 1.15rem;
}
body #content .services-sec .services-row.services-page-row .service-card .service-content {
  padding: 1.35rem 1.5rem;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}
body #content .services-sec .services-row.services-page-row .service-card h3 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
body #content .services-sec .services-row.services-page-row .service-card p {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
body #content .services-sec .services-row.services-page-row .service-card .service-arrow {
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
}
body #content .services-sec .services-slider {
  margin-right: -5.6rem;
}
body #content .services-sec .services-slider .slick-track {
  display: flex;
}
body #content .services-sec .services-slider .slick-slide {
  height: auto;
}
body #content .services-sec .service-card {
  padding: 0 0.625rem;
  box-sizing: border-box;
}
body #content .services-sec .service-card a {
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}
body #content .services-sec .service-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 11, 15, 0) 28.01%, rgba(3, 11, 15, 0.94) 89.2%);
}
body #content .services-sec .service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
body #content .services-sec .service-card .service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.37rem 2rem;
  gap: 0.2rem;
  display: grid;
  grid-template-columns: 85% 15%;
  align-items: end;
}
body #content .services-sec .service-card h3 {
  font-family: var(--global-font-family-2);
  font-style: italic;
  font-weight: 300;
  line-height: 3.5595rem;
  font-size: 2.55rem;
  color: #F3EFEC;
  margin-bottom: 1.69rem;
}
body #content .services-sec .service-card p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #F3EFEC;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
body #content .services-sec .service-card .service-arrow {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80.21406rem;
  background: #FFF;
  backdrop-filter: blur(5.0133800507px);
}
body #content .services-sec .service-card .service-arrow i {
  transition: transform 0.4s;
  transform: rotate(-45deg);
  color: #232323;
}
body #content .services-sec .service-card a:hover img {
  transform: scale(1.08);
}
body #content .services-sec .service-card a:hover .service-arrow {
  background: #EE5220;
  border-color: #EE5220;
}
body #content .services-sec .service-card a:hover .service-arrow i {
  transform: rotate(0deg);
  color: #fff;
}
body #content .services-sec .slick-arrow {
  position: absolute;
  top: 50%;
  left: -1.5625rem;
  transform: translateY(-50%);
  z-index: 4;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 0;
  color: transparent;
  transition: all 0.4s;
}
body #content .services-sec .slick-arrow::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.125rem;
  color: #232323;
  content: "\f177";
}
body #content .services-sec .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
body #content .services-sec .slick-arrow.slick-next::before {
  content: "\f178";
}
body #content .services-sec .slick-arrow:hover {
  background: #EE5220;
}
body #content .services-sec .slick-arrow:hover::before {
  color: #fff;
}
body #content .services-sec .slick-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}
body #content .services-sec ul.slick-dots {
  margin-top: 2.5rem;
}
body #content .services-sec ul.slick-dots li button {
  width: 0.82675rem;
  height: 0.82675rem;
  border-radius: 50%;
  background: #D9D9D9;
}
body #content .services-sec ul.slick-dots li.slick-active button {
  height: 0.82675rem;
  background: #011A76;
}
body #content .ppp-sec .ppp-row .ppp-txt {
  border-radius: 1.1425rem;
  margin-left: 3rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.79);
  backdrop-filter: blur(20.2000007629px);
}
body #content .ppp-sec .ppp-row .ppp-txt p {
  color: #131C25;
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
}
body #content .ppp-sec .ppp-row .main-head {
  color: #2C3E50;
  font-family: var(--global-font-family-3);
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5rem;
}
body #content .ppp-sec .ppp-row .main-head b {
  font-weight: 600;
  color: #EE5220;
}
body #content .industries-row > .wpb_column > .vc_column-inner {
  padding: 0;
}
body #content .industries-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  margin-right: -5rem;
}
body #content .industries-row .industries-inner-row > .wpb_column > .vc_column-inner {
  padding: 0;
  height: 100%;
}
body #content .industries-row .industries-inner-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  height: 100%;
  padding-top: 3.19rem;
  padding: 1.88rem 1.31rem;
  border: 1px solid #F1F3F4;
  border-radius: 0.5rem;
  background: #fff;
  transition: all 0.4s;
  height: 100%;
}
body #content .industries-row .industries-inner-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  border-color: #EE5220;
  box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.06);
}
body #content .industries-row .industries-img {
  margin-bottom: 2.81rem;
}
body #content .industries-row .industries-txt h4 {
  font-family: var(--global-font-family);
  font-size: 1.5rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 0.31rem;
}
body #content .industries-row .industries-txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.375rem;
  margin: 0;
}
body #content .industries-row .slick-list {
  overflow: hidden;
}
body #content .industries-row .slick-track {
  display: flex;
  gap: 1.25rem;
}
body #content .industries-row .slick-slide {
  height: auto;
}
body #content .industries-row .slick-slide > div {
  height: 100%;
}
body #content .industries-row .slick-arrow {
  position: absolute;
  top: 42%;
  left: 0;
  transform: translateY(-50%);
  z-index: 4;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 0;
  color: transparent;
  transition: all 0.4s;
}
body #content .industries-row .slick-arrow::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #232323;
  content: "\f177";
}
body #content .industries-row .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
body #content .industries-row .slick-arrow.slick-next::before {
  content: "\f178";
}
body #content .industries-row .slick-arrow:hover {
  background: #232323;
}
body #content .industries-row .slick-arrow:hover::before {
  color: #fff;
}
body #content .industries-row .slick-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}
body #content .industries-row ul.slick-dots {
  margin-top: 2.5rem;
}
body #content .industries-row ul.slick-dots li button {
  width: 0.82675rem;
  height: 0.82675rem;
  border-radius: 50%;
  background: #D9D9D9;
}
body #content .industries-row ul.slick-dots li.slick-active button {
  height: 0.82675rem;
  background: #011A76;
}
body #content .projects-sec .projects-row {
  position: relative;
}
body #content .projects-sec .projects-row.projects-page-row .projects-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
body #content .projects-sec .projects-row.projects-page-row .projects-slider .slick-list, body #content .projects-sec .projects-row.projects-page-row .projects-slider .slick-track {
  display: contents;
}
body #content .projects-sec .projects-row.projects-page-row .projects-slider .slick-slide {
  margin: 0;
  transform: none;
  opacity: 1;
  height: auto;
}
body #content .projects-sec .projects-row.projects-page-row .project-card {
  padding: 0;
  height: 100%;
  position: relative;
}
body #content .projects-sec .projects-row.projects-page-row .project-card a, body #content .projects-sec .projects-row.projects-page-row .project-card .project-trigger, body #content .projects-sec .projects-row.projects-page-row .project-card .project-media {
  display: block;
  height: 100%;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-media {
  border-radius: 1rem;
  aspect-ratio: 8/5;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-content {
  opacity: 1;
  pointer-events: auto;
  padding: 1.5rem 1.5rem 1.65rem;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-content h3 {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-content p {
  font-size: 0.95rem;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-arrow {
  opacity: 1;
  pointer-events: auto;
  right: 1.25rem;
  bottom: -1.15rem;
  background: #fff;
}
body #content .projects-sec .projects-row.projects-page-row .project-card .project-arrow:hover {
  background: #EE5220;
  color: #fff;
}
body #content .projects-sec .projects-row.projects-page-row .project-card:hover .project-media img {
  transform: scale(1.05);
}
body #content .projects-sec .projects-row.projects-page-row .project-card:hover .project-arrow {
  background: #EE5220;
  color: #fff;
}
body #content .projects-sec .projects-slider .slick-list {
  overflow: hidden;
}
body #content .projects-sec .projects-slider .slick-track {
  display: flex;
  align-items: center;
}
body #content .projects-sec .projects-slider .slick-slide {
  height: auto;
  margin: 0 -2.75rem;
  transform: scale(0.8);
  opacity: 0.35;
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s;
  position: relative;
  z-index: 1;
}
body #content .projects-sec .projects-slider .slick-slide.dist-1 {
  transform: scale(0.85);
  opacity: 0.65;
  z-index: 3;
}
body #content .projects-sec .projects-slider .slick-slide.dist-0 {
  transform: scale(1);
  opacity: 1;
  z-index: 5;
}
body #content .projects-sec .project-card {
  padding: 0 0.625rem;
  box-sizing: border-box;
}
body #content .projects-sec .project-card a, body #content .projects-sec .project-card .project-trigger {
  position: relative;
  display: block;
}
body #content .projects-sec .project-card .project-media {
  position: relative;
  display: block;
  border-radius: 0.70938rem;
  overflow: hidden;
  aspect-ratio: 6/5;
}
body #content .projects-sec .project-card .project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 22, 29, 0) 44.27%, #09161D 94.91%);
}
body #content .projects-sec .project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
body #content .projects-sec .project-card .project-content {
  display: flex;
  align-items: end;
  gap: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.1s;
}
body #content .projects-sec .project-card .project-content .content-inner {
  display: block;
}
body #content .projects-sec .project-card .project-content h3 {
  font-family: var(--global-font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 2.4125rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.5rem;
}
body #content .projects-sec .project-card .project-content p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #CFD6DF;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body #content .projects-sec .project-card .project-arrow {
  z-index: 3;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #fff;
  color: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.1s, transform 0.4s, background 0.4s, color 0.4s;
}
body #content .projects-sec .project-card a:hover img, body #content .projects-sec .project-card .project-trigger:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
body #content .projects-sec .projects-slider .slick-slide.dist-0 .project-content, body #content .projects-sec .projects-slider .slick-slide.dist-0 .project-arrow {
  opacity: 1;
  pointer-events: auto;
}
body #content .projects-sec .project-card .project-arrow:hover {
  background: #EE5220;
  color: #fff;
}
body #content .projects-sec .slick-arrow {
  position: absolute;
  top: 50%;
  left: -1.5625rem;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #232323;
  border: none;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 0;
  color: transparent;
  transition: all 0.4s;
}
body #content .projects-sec .slick-arrow::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.125rem;
  color: #fff;
  content: "\f177";
}
body #content .projects-sec .slick-arrow.slick-next {
  left: auto;
  right: -1.5625rem;
}
body #content .projects-sec .slick-arrow.slick-next::before {
  content: "\f178";
}
body #content .projects-sec .slick-arrow:hover {
  background: #EE5220;
}
body #content .projects-sec .slick-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}
body #content .faq-sec .faq-row {
  align-items: center;
}
body #content .faq-sec .faq-row .sub-head {
  color: #546E7A;
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  gap: 0.56rem;
  margin-bottom: 1.87rem;
}
body #content .faq-sec .faq-row .main-head {
  margin-bottom: 2.5rem;
}
body #content .faq-sec .faq-row .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel {
  background: #F3F4F6 !important;
  border-radius: 0.875rem !important;
  overflow: hidden;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel + .vc_tta-panel {
  margin-top: 0 !important;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-heading {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title {
  margin: 0;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  text-decoration: none;
  position: relative;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title a:hover {
  color: #EE5220;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title .vc_tta-controls-icon {
  color: #2C3E50;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title .vc_tta-controls-icon::before {
  border-color: #2C3E50;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-title .vc_tta-controls-icon::after {
  border-color: #2C3E50;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-body {
  background: transparent !important;
  border: none !important;
  padding: 0 1.75rem 1.75rem !important;
  box-shadow: none !important;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-body p {
  font-size: 1rem;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-content {
  padding: 0 !important;
}
body #content .faq-sec .faq-row .faq-accordion .vc_tta-panel-content p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: #4B5563;
  margin: 0;
}
body #content .lets-talk-sec .wpb_gmaps_widget {
  margin-bottom: 0;
}
body #content .lets-talk-sec .lets-talk-row {
  align-items: center;
}
body #content .lets-talk-sec .lets-talk-row .main-head {
  font-weight: 600;
}
body #content .contact-sec .contact-row {
  align-items: stretch;
}
body #content .contact-sec .contact-intro {
  margin-bottom: 2rem;
}
body #content .contact-sec .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
body #content .contact-sec .contact-info .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  transition: all 0.35s;
}
body #content .contact-sec .contact-info .contact-card:hover {
  border-color: rgba(238, 82, 32, 0.35);
  box-shadow: 0 1rem 1.75rem rgba(17, 24, 39, 0.06);
}
body #content .contact-sec .contact-info .contact-card .contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.1);
  color: #EE5220;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
body #content .contact-sec .contact-info .contact-card .contact-card-txt {
  min-width: 0;
}
body #content .contact-sec .contact-info .contact-card .contact-card-txt small {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 0.3rem;
}
body #content .contact-sec .contact-info .contact-card .contact-card-txt p, body #content .contact-sec .contact-info .contact-card .contact-card-txt a {
  margin: 0;
  font-family: var(--global-font-family);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.5;
  text-decoration: none;
}
body #content .contact-sec .contact-info .contact-card .contact-card-txt a:hover {
  color: #EE5220;
}
body #content .contact-sec .contact-form-wrap {
  background: #F8F9FB;
  border: 1px solid #EEF0F2;
  border-radius: 1.35rem;
  padding: 2.25rem 2rem;
}
body #content .contact-sec .contact-form-wrap .wpcf7 {
  margin: 0;
}
body #content .contact-sec .contact-form-wrap form, body #content .contact-sec .contact-form-wrap form.wpcf7-form {
  margin: 0;
}
body #content .contact-map-sec .wpb_gmaps_widget {
  margin-bottom: 0;
}
body #content .contact-map-sec .wpb_gmaps_widget .wpb_wrapper, body #content .contact-map-sec .wpb_gmaps_widget .wpb_map_wraper, body #content .contact-map-sec .wpb_gmaps_widget iframe {
  border-radius: 1.25rem;
  overflow: hidden;
}
body #content .quote-sec {
  padding: 1rem 0 2rem;
}
body #content .quote-sec .quote-intro {
  margin-bottom: 2.25rem;
}
body #content .quote-sec .quote-row {
  align-items: stretch;
}
body #content .quote-sec .quote-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
body #content .quote-sec .quote-aside .quote-aside-card {
  background: #2C3E50;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
body #content .quote-sec .quote-aside .quote-aside-card::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.35);
}
body #content .quote-sec .quote-aside .quote-aside-card .quote-aside-inner {
  position: relative;
  z-index: 1;
}
body #content .quote-sec .quote-aside .quote-aside-card h4 {
  font-family: var(--global-font-family);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.25rem;
}
body #content .quote-sec .quote-aside .quote-aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body #content .quote-sec .quote-aside .quote-aside-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
body #content .quote-sec .quote-aside .quote-aside-card ul li:last-child {
  margin-bottom: 0;
}
body #content .quote-sec .quote-aside .quote-aside-card ul li i {
  color: #EE5220;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
body #content .quote-sec .quote-aside .quote-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.15rem;
  padding: 1.25rem 1.2rem;
}
body #content .quote-sec .quote-aside .quote-step .quote-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.1);
  color: #EE5220;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body #content .quote-sec .quote-aside .quote-step .quote-step-txt strong {
  display: block;
  font-family: var(--global-font-family);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 0.2rem;
}
body #content .quote-sec .quote-aside .quote-step .quote-step-txt p {
  margin: 0;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.5;
}
body #content .quote-sec .quote-form-wrap {
  background: #F8F9FB;
  border: 1px solid #EEF0F2;
  border-radius: 1.35rem;
  padding: 2.25rem 2rem;
}
body #content .quote-sec .quote-form-wrap .wpcf7 {
  margin: 0;
}
body #content .quote-sec .quote-form-wrap form, body #content .quote-sec .quote-form-wrap form.wpcf7-form {
  margin: 0;
}
body #content .quote-sec .quote-form-wrap .form-section-title {
  margin-top: 0.5rem;
}
body #content .service-single .service-single-row {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
body #content .service-single .service-single-content {
  padding-right: 2rem;
}
body #content .service-single .service-single-content .service-featured-img {
  margin-bottom: 2rem;
  border-radius: 1.15rem;
  overflow: hidden;
}
body #content .service-single .service-single-content .service-featured-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.15rem;
}
body #content .service-single .service-single-content .service-featured-img .service-img-caption {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: #6B7280;
  font-style: italic;
}
body #content .service-single .service-single-content .service-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
body #content .service-single .service-single-content .service-content h2, body #content .service-single .service-single-content .service-content h3, body #content .service-single .service-single-content .service-content h4 {
  font-family: var(--global-font-family);
  color: #232323;
  margin: 1.75rem 0 0.85rem;
}
body #content .service-single .service-single-content .service-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
}
body #content .service-single .service-single-content .service-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
body #content .service-single .service-single-content .service-content img {
  border-radius: 0.85rem;
  max-width: 100%;
  height: auto;
}
body #content .service-single .service-single-sidebar .service-sidebar-inner {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta {
  background: #2C3E50;
  border-radius: 1.25rem;
  padding: 2rem 1.65rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(238, 82, 32, 0.35);
}
body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-title {
  position: relative;
  z-index: 1;
  font-family: var(--global-font-family);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta p {
  position: relative;
  z-index: 1;
  font-family: var(--global-font-family);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 1.35rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-btns {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-btns .btn-orange a, body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-btns .btn-white a {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-btns .btn-white a {
  background: #fff;
  color: #2C3E50;
}
body #content .service-single .service-single-sidebar .service-sidebar-cta .service-cta-btns .btn-white a:hover {
  background: #EE5220 !important;
  color: #fff;
}
body #content .service-single .service-single-sidebar .service-more {
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
}
body #content .service-single .service-single-sidebar .service-more .service-more-label {
  font-family: var(--global-font-family);
  font-size: 1.15rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 1rem;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list li {
  margin: 0;
  border-bottom: 1px solid #EEF0F2;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list li:last-child {
  border-bottom: 0;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list li a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #232323;
  transition: 0.35s;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list li a:hover {
  color: #EE5220;
}
body #content .service-single .service-single-sidebar .service-more .service-more-list li a:hover .service-more-thumb {
  background: rgba(238, 82, 32, 0.12);
}
body #content .service-single .service-single-sidebar .service-more .service-more-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #F3F4F6;
  color: #EE5220;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body #content .service-single .service-single-sidebar .service-more .service-more-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body #content .service-single .service-single-sidebar .service-more .service-more-title {
  font-family: var(--global-font-family);
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.35;
}
body #content .service-single .service-single-sidebar .service-sidebar-foot {
  background: #F8F9FB;
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-foot .service-quote {
  font-family: var(--global-font-family-2);
  font-style: italic;
  font-size: 1.1rem;
  color: #2C3E50;
  line-height: 1.45;
  margin: 0 0 0.65rem;
}
body #content .service-single .service-single-sidebar .service-sidebar-foot .service-stat {
  margin: 0;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EE5220;
}
body #content .blog-single .blog-single-row {
  align-items: flex-start;
  margin: 1rem 0 3rem;
}
body #content .blog-single .blog-single-content {
  padding-right: 2rem;
}
body #content .blog-single .blog-single-content .blog-featured-img {
  margin-bottom: 1.75rem;
  border-radius: 1.15rem;
  overflow: hidden;
}
body #content .blog-single .blog-single-content .blog-featured-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.15rem;
}
body #content .blog-single .blog-single-content .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}
body #content .blog-single .blog-single-content .blog-meta .blog-date {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EE5220;
}
body #content .blog-single .blog-single-content .blog-meta .blog-date i {
  font-size: 0.9rem;
}
body #content .blog-single .blog-single-content .blog-meta .blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body #content .blog-single .blog-single-content .blog-meta .blog-cats a {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  background: rgba(238, 82, 32, 0.08);
  color: #EE5220;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}
body #content .blog-single .blog-single-content .blog-meta .blog-cats a:hover {
  background: #EE5220;
  color: #fff;
}
body #content .blog-single .blog-single-content .blog-content {
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.25rem;
  padding: 2rem 2.15rem 2.25rem;
  box-shadow: 0 0.65rem 1.75rem rgba(17, 24, 39, 0.04);
}
body #content .blog-single .blog-single-content .blog-content .wpb_text_column, body #content .blog-single .blog-single-content .blog-content .blogtxt, body #content .blog-single .blog-single-content .blog-content .wpb_wrapper {
  max-width: 100%;
}
body #content .blog-single .blog-single-content .blog-content .vc_row, body #content .blog-single .blog-single-content .blog-content .wpb_column, body #content .blog-single .blog-single-content .blog-content .vc_column-inner, body #content .blog-single .blog-single-content .blog-content .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
body #content .blog-single .blog-single-content .blog-content p {
  font-family: var(--global-font-family);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  color: #4B5563;
  margin: 0 0 1.15rem;
}
body #content .blog-single .blog-single-content .blog-content p span {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}
body #content .blog-single .blog-single-content .blog-content p a {
  color: #EE5220;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.3s;
}
body #content .blog-single .blog-single-content .blog-content p a:hover {
  color: #2C3E50;
}
body #content .blog-single .blog-single-content .blog-content p strong, body #content .blog-single .blog-single-content .blog-content p b {
  color: #2C3E50;
  font-weight: 700;
}
body #content .blog-single .blog-single-content .blog-content > .wpb-content-wrapper > .vc_row:first-child .wpb_text_column .wpb_wrapper > p:first-of-type {
  font-size: 1.175rem;
  color: #374151;
  line-height: 1.85;
  padding-bottom: 1.35rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #EEF0F2;
}
body #content .blog-single .blog-single-content .blog-content h2, body #content .blog-single .blog-single-content .blog-content h3, body #content .blog-single .blog-single-content .blog-content h4 {
  font-family: var(--global-font-family);
  color: #2C3E50;
  font-weight: 700;
  line-height: 1.3;
}
body #content .blog-single .blog-single-content .blog-content h2 {
  font-size: 1.65rem;
  margin: 2.35rem 0 1rem;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 3px solid #EE5220;
}
body #content .blog-single .blog-single-content .blog-content h2 b, body #content .blog-single .blog-single-content .blog-content h2 strong {
  font-weight: inherit;
  color: inherit;
}
body #content .blog-single .blog-single-content .blog-content h2:empty {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
body #content .blog-single .blog-single-content .blog-content h2:first-child {
  margin-top: 0;
}
body #content .blog-single .blog-single-content .blog-content h3 {
  font-size: 1.35rem;
  margin: 1.85rem 0 0.85rem;
}
body #content .blog-single .blog-single-content .blog-content h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.65rem;
  color: #232323;
}
body #content .blog-single .blog-single-content .blog-content h4 b, body #content .blog-single .blog-single-content .blog-content h4 strong {
  font-weight: inherit;
  color: inherit;
}
body #content .blog-single .blog-single-content .blog-content h4::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #EE5220;
  margin-right: 0.65rem;
  vertical-align: middle;
}
body #content .blog-single .blog-single-content .blog-content p:has(> b:only-child),
body #content .blog-single .blog-single-content .blog-content p:has(> strong:only-child) {
  margin: 1.65rem 0 0.55rem;
  padding: 0.85rem 1rem;
  background: #F8F9FB;
  border-radius: 0.75rem;
  border-left: 3px solid #EE5220;
}
body #content .blog-single .blog-single-content .blog-content p:has(> b:only-child) b, body #content .blog-single .blog-single-content .blog-content p:has(> b:only-child) strong,
body #content .blog-single .blog-single-content .blog-content p:has(> strong:only-child) b,
body #content .blog-single .blog-single-content .blog-content p:has(> strong:only-child) strong {
  display: block;
  font-family: var(--global-font-family);
  font-size: 1.05rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.4;
}
body #content .blog-single .blog-single-content .blog-content p:has(> b:only-child) + p,
body #content .blog-single .blog-single-content .blog-content p:has(> strong:only-child) + p {
  margin-top: 0.35rem;
}
body #content .blog-single .blog-single-content .blog-content ul, body #content .blog-single .blog-single-content .blog-content ol {
  margin: 0 0 1.35rem;
  padding-left: 1.35rem;
}
body #content .blog-single .blog-single-content .blog-content ul li, body #content .blog-single .blog-single-content .blog-content ol li {
  font-family: var(--global-font-family);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 0.45rem;
}
body #content .blog-single .blog-single-content .blog-content blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(238, 82, 32, 0.06);
  border-left: 3px solid #EE5220;
  border-radius: 0 0.85rem 0.85rem 0;
}
body #content .blog-single .blog-single-content .blog-content blockquote p {
  margin: 0;
  color: #2C3E50;
  font-style: italic;
}
body #content .blog-single .blog-single-content .blog-content img {
  border-radius: 0.85rem;
  max-width: 100%;
  height: auto;
  margin: 1.25rem 0;
}
body #content .blog-single .blog-single-content .blog-content hr {
  border: 0;
  border-top: 1px solid #EEF0F2;
  margin: 2rem 0;
}
body #content .blog-single .blog-single-content .blog-share {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  background: #F8F9FB;
  border: 1px solid #EEF0F2;
  border-radius: 1.15rem;
}
body #content .blog-single .blog-single-content .blog-share h3 {
  font-family: var(--global-font-family);
  font-size: 1.15rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 1rem;
}
body #content .blog-single .blog-single-content .blog-share ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body #content .blog-single .blog-single-content .blog-share ul li a {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E7EB;
  color: #2C3E50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
  font-size: 1rem;
}
body #content .blog-single .blog-single-content .blog-share ul li a:hover {
  background: #EE5220;
  border-color: #EE5220;
  color: #fff;
}
body #content .blog-single .blog-single-sidebar .blog-sidebar-inner {
  position: sticky;
  top: 7rem;
}
body #content .blog-single .blog-single-sidebar .blog-related {
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 0.65rem 1.75rem rgba(17, 24, 39, 0.04);
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-label {
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #EE5220;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li {
  margin: 0;
  border-bottom: 1px solid #EEF0F2;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li:last-child {
  border-bottom: 0;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li a {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 0;
  text-decoration: none;
  color: #232323;
  transition: 0.35s;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li a:hover {
  color: #EE5220;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li a:hover .blog-related-thumb img {
  transform: scale(1.06);
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-list li a:hover .blog-related-fallback {
  background: rgba(238, 82, 32, 0.12);
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-thumb {
  display: block;
  width: 5.5rem;
  height: 4.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #F3F4F6;
  flex-shrink: 0;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EE5220;
  background: #F8F9FB;
  transition: 0.35s;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-date {
  font-family: var(--global-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #EE5220;
}
body #content .blog-single .blog-single-sidebar .blog-related .blog-related-title {
  font-family: var(--global-font-family);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body #content .blogs-sec .blogs-grid, body #content .blogs-page-row .blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
body #content .blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
body #content .blogs-grid .blog-card {
  background: #fff;
  border: 1px solid #EEF0F2;
  border-radius: 1.15rem;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s;
}
body #content .blogs-grid .blog-card:hover {
  border-color: rgba(238, 82, 32, 0.35);
  box-shadow: 0 1.15rem 2rem rgba(17, 24, 39, 0.08);
  transform: translateY(-0.25rem);
}
body #content .blogs-grid .blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}
body #content .blogs-grid .blog-card:hover .blog-card-more {
  color: #EE5220;
}
body #content .blogs-grid .blog-card:hover .blog-card-more i {
  transform: translateX(0.25rem);
}
body #content .blogs-grid .blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
body #content .blogs-grid .blog-card-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #F3F4F6;
}
body #content .blogs-grid .blog-card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
body #content .blogs-grid .blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.25rem 1.5rem;
}
body #content .blogs-grid .blog-card-date {
  display: inline-block;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EE5220;
  margin-bottom: 0.65rem;
}
body #content .blogs-grid .blog-card-title {
  font-family: var(--global-font-family);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #232323;
  margin: 0 0 0.65rem;
}
body #content .blogs-grid .blog-card-excerpt {
  font-family: var(--global-font-family);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  color: #6B7280;
  margin: 0 0 1.15rem;
  flex: 1;
}
body #content .blogs-grid .blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2C3E50;
  transition: 0.35s;
}
body #content .blogs-grid .blog-card-more i {
  transition: transform 0.35s;
  font-size: 0.875rem;
}
body #content ul.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2em;
}
body #content ul.slick-dots li {
  margin: 0;
}
body #content ul.slick-dots li button {
  outline: none;
  font-size: 0;
  padding: 0;
  width: 3rem;
  height: 0.25rem;
  border: none;
  border-radius: 0px;
  background: #2C3E50;
  cursor: pointer;
  transition: background 0.4s;
  transition: all 0.4s;
}
body #content ul.slick-dots li.slick-active button {
  height: 0.25rem;
  background: #EE5220;
  transition: all 0.4s;
}
body .fancybox__content {
  width: 100% !important;
  height: 100% !important;
}
body .fancybox__container img,
body .fancybox__image,
body .fancybox__content img {
  opacity: 1 !important;
  filter: none !important;
  visibility: visible !important;
}
body form .form-group.col-6, body form .form-group.col-12, body form.wpcf7-form .form-group.col-6, body form.wpcf7-form .form-group.col-12 {
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
}
body form br, body form.wpcf7-form br {
  display: none;
}
body form .flex-row, body form.wpcf7-form .flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
body form .form-section:first-child, body form.wpcf7-form .form-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
body form .form-section .form-section-title, body form.wpcf7-form .form-section .form-section-title {
  font-family: var(--global-font-family-2);
  font-size: 1.5625rem;
  font-weight: 700;
  color: #EE5220;
  margin: 0 0 1.75rem;
  line-height: 1.3;
}
body form .field-label, body form.wpcf7-form .field-label {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
body form label, body form.wpcf7-form label {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #232323;
  font-family: var(--global-font-family);
  line-height: 1.4;
}
body form label span, body form.wpcf7-form label span {
  color: #EE5220;
}
body form input[type=text], body form input[type=email], body form input[type=tel], body form input[type=url], body form input[type=date], body form input[type=number], body form.wpcf7-form input[type=text], body form.wpcf7-form input[type=email], body form.wpcf7-form input[type=tel], body form.wpcf7-form input[type=url], body form.wpcf7-form input[type=date], body form.wpcf7-form input[type=number] {
  width: 100%;
  background: #fff;
  padding: 0.94rem 1.125rem;
  box-sizing: border-box;
  border: 1px solid #E8E8E8;
  outline: none;
  font-size: 1.0625rem;
  font-weight: 300;
  color: #232323;
  border-radius: 1.25rem;
  font-family: var(--global-font-family);
  transition: all 0.4s;
  line-height: 1.4;
}
body form input[type=text]::-moz-placeholder, body form input[type=email]::-moz-placeholder, body form input[type=tel]::-moz-placeholder, body form input[type=url]::-moz-placeholder, body form input[type=date]::-moz-placeholder, body form input[type=number]::-moz-placeholder, body form.wpcf7-form input[type=text]::-moz-placeholder, body form.wpcf7-form input[type=email]::-moz-placeholder, body form.wpcf7-form input[type=tel]::-moz-placeholder, body form.wpcf7-form input[type=url]::-moz-placeholder, body form.wpcf7-form input[type=date]::-moz-placeholder, body form.wpcf7-form input[type=number]::-moz-placeholder {
  color: #8797AF;
  opacity: 1;
}
body form input[type=text]::placeholder, body form input[type=email]::placeholder, body form input[type=tel]::placeholder, body form input[type=url]::placeholder, body form input[type=date]::placeholder, body form input[type=number]::placeholder, body form.wpcf7-form input[type=text]::placeholder, body form.wpcf7-form input[type=email]::placeholder, body form.wpcf7-form input[type=tel]::placeholder, body form.wpcf7-form input[type=url]::placeholder, body form.wpcf7-form input[type=date]::placeholder, body form.wpcf7-form input[type=number]::placeholder {
  color: #8797AF;
  opacity: 1;
}
body form input[type=text]:focus, body form input[type=email]:focus, body form input[type=tel]:focus, body form input[type=url]:focus, body form input[type=date]:focus, body form input[type=number]:focus, body form.wpcf7-form input[type=text]:focus, body form.wpcf7-form input[type=email]:focus, body form.wpcf7-form input[type=tel]:focus, body form.wpcf7-form input[type=url]:focus, body form.wpcf7-form input[type=date]:focus, body form.wpcf7-form input[type=number]:focus {
  outline: none;
  border-color: #EE5220;
  box-shadow: 0 0 0 3px rgba(16, 48, 96, 0.08);
}
body form input[type=radio], body form.wpcf7-form input[type=radio] {
  accent-color: #EE5220;
  height: 1.125rem;
  width: 1.125rem;
  margin: 0;
  flex-shrink: 0;
}
body form input[type=checkbox], body form.wpcf7-form input[type=checkbox] {
  accent-color: #EE5220;
  height: 1rem;
  width: 1rem;
  margin: 0;
  flex-shrink: 0;
}
body form select, body form.wpcf7-form select {
  width: 100%;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.94rem 2.75rem 0.94rem 1.125rem;
  box-sizing: border-box;
  border: 1px solid #E8E8E8;
  outline: none;
  font-size: 1.0625rem;
  font-weight: 300;
  color: #232323;
  border-radius: 1.25rem;
  font-family: var(--global-font-family);
  transition: all 0.4s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path d='M1.5 1.5l5 5 5-5' fill='none' stroke='%23103060' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 1rem;
}
body form select:focus, body form.wpcf7-form select:focus {
  outline: none;
  border-color: #EE5220;
  box-shadow: 0 0 0 3px rgba(16, 48, 96, 0.08);
}
body form textarea, body form.wpcf7-form textarea {
  width: 100%;
  background: #fff;
  padding: 0.94rem 1.125rem;
  box-sizing: border-box;
  border: 1px solid #E8E8E8;
  outline: none;
  font-size: 1.0625rem;
  font-weight: 300;
  color: #232323;
  border-radius: 1.25rem;
  font-family: var(--global-font-family);
  resize: none;
  height: 10rem;
}
body form textarea::-moz-placeholder, body form.wpcf7-form textarea::-moz-placeholder {
  color: #8797AF;
  opacity: 1;
}
body form textarea::placeholder, body form.wpcf7-form textarea::placeholder {
  color: #8797AF;
  opacity: 1;
}
body form textarea:focus, body form.wpcf7-form textarea:focus {
  outline: none;
  border-color: #EE5220;
  box-shadow: 0 0 0 3px rgba(16, 48, 96, 0.08);
}
body form .wpcf7-form-control-wrap, body form.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0;
}
body form .wpcf7-not-valid, body form.wpcf7-form .wpcf7-not-valid {
  border-color: #BA2925 !important;
}
body form .wpcf7-not-valid-tip, body form.wpcf7-form .wpcf7-not-valid-tip {
  color: #BA2925;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 0.375rem;
}
body form .interval-radio, body form .location-check, body form .yesno-radio, body form.wpcf7-form .interval-radio, body form.wpcf7-form .location-check, body form.wpcf7-form .yesno-radio {
  margin-top: 0.25rem;
}
body form .interval-radio .wpcf7-radio, body form .interval-radio .wpcf7-checkbox, body form .location-check .wpcf7-radio, body form .location-check .wpcf7-checkbox, body form .yesno-radio .wpcf7-radio, body form .yesno-radio .wpcf7-checkbox, body form.wpcf7-form .interval-radio .wpcf7-radio, body form.wpcf7-form .interval-radio .wpcf7-checkbox, body form.wpcf7-form .location-check .wpcf7-radio, body form.wpcf7-form .location-check .wpcf7-checkbox, body form.wpcf7-form .yesno-radio .wpcf7-radio, body form.wpcf7-form .yesno-radio .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body form .interval-radio .wpcf7-radio .wpcf7-list-item, body form .interval-radio .wpcf7-checkbox .wpcf7-list-item, body form .location-check .wpcf7-radio .wpcf7-list-item, body form .location-check .wpcf7-checkbox .wpcf7-list-item, body form .yesno-radio .wpcf7-radio .wpcf7-list-item, body form .yesno-radio .wpcf7-checkbox .wpcf7-list-item, body form.wpcf7-form .interval-radio .wpcf7-radio .wpcf7-list-item, body form.wpcf7-form .interval-radio .wpcf7-checkbox .wpcf7-list-item, body form.wpcf7-form .location-check .wpcf7-radio .wpcf7-list-item, body form.wpcf7-form .location-check .wpcf7-checkbox .wpcf7-list-item, body form.wpcf7-form .yesno-radio .wpcf7-radio .wpcf7-list-item, body form.wpcf7-form .yesno-radio .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
body form .interval-radio .wpcf7-radio .wpcf7-list-item label, body form .interval-radio .wpcf7-checkbox .wpcf7-list-item label, body form .location-check .wpcf7-radio .wpcf7-list-item label, body form .location-check .wpcf7-checkbox .wpcf7-list-item label, body form .yesno-radio .wpcf7-radio .wpcf7-list-item label, body form .yesno-radio .wpcf7-checkbox .wpcf7-list-item label, body form.wpcf7-form .interval-radio .wpcf7-radio .wpcf7-list-item label, body form.wpcf7-form .interval-radio .wpcf7-checkbox .wpcf7-list-item label, body form.wpcf7-form .location-check .wpcf7-radio .wpcf7-list-item label, body form.wpcf7-form .location-check .wpcf7-checkbox .wpcf7-list-item label, body form.wpcf7-form .yesno-radio .wpcf7-radio .wpcf7-list-item label, body form.wpcf7-form .yesno-radio .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.4s;
}
body form .interval-radio .wpcf7-radio .wpcf7-form-control, body form.wpcf7-form .interval-radio .wpcf7-radio .wpcf7-form-control {
  gap: 1rem;
}
body form .interval-radio .wpcf7-list-item, body form.wpcf7-form .interval-radio .wpcf7-list-item {
  flex: 1;
  min-width: 7.5rem;
}
body form .interval-radio .wpcf7-list-item label, body form.wpcf7-form .interval-radio .wpcf7-list-item label {
  border: 1px solid #E8E8E8;
  border-radius: 1.25rem;
  padding: 0.94rem 1.125rem;
  background: #fff;
}
body form .interval-radio .wpcf7-list-item label:hover, body form.wpcf7-form .interval-radio .wpcf7-list-item label:hover {
  border-color: #2C3E50;
}
body form .interval-radio .wpcf7-list-item label:has(input:checked), body form.wpcf7-form .interval-radio .wpcf7-list-item label:has(input:checked) {
  border-color: #EE5220;
  background: rgba(16, 48, 96, 0.04);
  box-shadow: 0 0 0 1px #EE5220;
  color: #EE5220;
}
body form .yesno-radio .wpcf7-radio .wpcf7-form-control, body form.wpcf7-form .yesno-radio .wpcf7-radio .wpcf7-form-control {
  gap: 1.5rem;
}
body form .yesno-radio .wpcf7-list-item label, body form.wpcf7-form .yesno-radio .wpcf7-list-item label {
  border: none;
  padding: 0;
  background: transparent;
}
body form .yesno-radio .wpcf7-list-item label:has(input:checked), body form.wpcf7-form .yesno-radio .wpcf7-list-item label:has(input:checked) {
  color: #EE5220;
  font-weight: 500;
}
body form .location-check .wpcf7-checkbox .wpcf7-list-item label, body form.wpcf7-form .location-check .wpcf7-checkbox .wpcf7-list-item label {
  background: #F5F6F8;
  border: 1px solid #E8E8E8;
  border-radius: 1.875rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}
body form .location-check .wpcf7-checkbox .wpcf7-list-item label:hover, body form.wpcf7-form .location-check .wpcf7-checkbox .wpcf7-list-item label:hover {
  border-color: #2C3E50;
}
body form .location-check .wpcf7-checkbox .wpcf7-list-item label:has(input:checked), body form.wpcf7-form .location-check .wpcf7-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #EE5220;
  background: rgba(16, 48, 96, 0.06);
  color: #EE5220;
  font-weight: 500;
}
body form input[type=submit], body form.wpcf7-form input[type=submit] {
  background: #EE5220 !important;
  font-size: 1rem;
  color: #fff !important;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #EE5220;
  padding: 1.12rem 1.25rem;
  border-radius: 0.3125rem;
  font-family: var(--global-font-family);
  font-weight: 400 !important;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
body form input[type=submit]:hover, body form.wpcf7-form input[type=submit]:hover {
  color: #fff !important;
  background: #2C3E50 !important;
  border-color: #2C3E50 !important;
}
body form input[type=submit]:hover::after, body form.wpcf7-form input[type=submit]:hover::after {
  transform: skewX(-30deg) scale(1, 1);
}
body form input[type=submit]::after, body form.wpcf7-form input[type=submit]::after {
  content: "";
  background: #2C3E50;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-30deg) scale(0, 1);
  transition: all 0.5s;
}
body form .wpcf7-response-output, body form.wpcf7-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  border-width: 1px;
}
body form .submit-btn, body form.wpcf7-form .submit-btn {
  margin-bottom: 0;
}
body form .submit-btn p, body form.wpcf7-form .submit-btn p {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  margin-bottom: 0;
}
body form .submit-btn input[type=submit], body form.wpcf7-form .submit-btn input[type=submit] {
  background: #EE5220 !important;
  border-color: #EE5220 !important;
  border-radius: 0.3125rem;
  padding: 1.12rem 1.25rem;
  font-size: 1rem;
  font-weight: 400 !important;
}
body form .submit-btn input[type=submit]:hover, body form.wpcf7-form .submit-btn input[type=submit]:hover {
  background: #2C3E50 !important;
  border-color: #2C3E50 !important;
  color: #fff !important;
}
body form .submit-btn input[type=submit]::after, body form.wpcf7-form .submit-btn input[type=submit]::after {
  display: none;
}
body footer#colophon .footer-features {
  background: #04425E;
  padding: 2.75rem 0;
}
body footer#colophon .footer-features .footer-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.31rem;
}
body footer#colophon .footer-features .footer-features-row > .footer-feature-widget {
  display: contents;
}
body footer#colophon .footer-features .footer-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 0;
}
body footer#colophon .footer-features .footer-feature-item .footer-feature-icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: #fff;
  color: #0E3550;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
body footer#colophon .footer-features .footer-feature-item .footer-feature-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
body footer#colophon .footer-features .footer-feature-item .footer-feature-txt strong {
  color: #fff;
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}
body footer#colophon .footer-features .footer-feature-item .footer-feature-txt small {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}
body footer#colophon .footer-features .footer-back-to-top {
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #0E3550;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.4s;
}
body footer#colophon .footer-features .footer-back-to-top:hover {
  background: #EE5220;
  color: #fff;
}
body footer#colophon .footer-main {
  background: #006C92;
}
body footer#colophon .footer-main .footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: nowrap;
  padding: 0.44rem 0 1.44rem 0;
}
body footer#colophon .footer-main .footer-logo {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
body footer#colophon .footer-main .footer-logo a {
  display: block;
}
body footer#colophon .footer-main .footer-logo img {
  height: auto;
  width: 70%;
}
body footer#colophon .footer-main .footer-right {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: nowrap;
}
body footer#colophon .footer-main .footer-right .footer-contact {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  flex-wrap: nowrap;
}
body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-family: var(--global-font-family);
  max-width: 27.8125rem;
}
body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item img {
  width: 2.75rem;
  height: 2.75rem;
}
body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item .widget {
  color: inherit;
}
body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item p, body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item a {
  margin: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}
body footer#colophon .footer-main .footer-right .footer-contact .footer-contact-item a:hover {
  color: #EE5220;
}
body footer#colophon .footer-main .footer-right .footer-social .footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
body footer#colophon .footer-main .footer-right .footer-social .footer-social-list li {
  margin: 0;
}
body footer#colophon .footer-main .footer-right .footer-social .footer-social-list a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006C92;
  font-size: 1.25rem;
  transition: all 0.4s;
}
body footer#colophon .footer-main .footer-right .footer-social .footer-social-list a:hover {
  background: #EE5220;
  color: #fff;
}
body footer#colophon .footer-main .footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgb(255, 255, 255);
  padding: 2.31rem 0;
}
body footer#colophon .footer-main .footer-bottom-row .footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3.13rem;
  margin: 0;
  padding: 0;
}
body footer#colophon .footer-main .footer-bottom-row .footer-menu ul li {
  margin: 0;
}
body footer#colophon .footer-main .footer-bottom-row .footer-menu ul li a {
  color: #fff;
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 500;
}
body footer#colophon .footer-main .footer-bottom-row .footer-menu ul li a:hover {
  color: #EE5220;
}
body footer#colophon .footer-main .footer-bottom-row .footer-credit {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
body footer#colophon .footer-main .footer-bottom-row .footer-credit a {
  color: #fff;
  font-weight: 500;
}
body footer#colophon .footer-main .footer-bottom-row .footer-credit a:hover {
  color: #EE5220;
  text-decoration: underline;
}
body footer#colophon .copyright {
  background: #fff;
  padding: 1.53rem 0;
}
body footer#colophon .copyright p {
  text-align: center;
  color: #232323;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}/*# sourceMappingURL=template.css.map */