/* Body Base */
body {
font-family: 'Inter Display', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 400;
overflow-x: hidden;
}

code,
pre,
.mono {
font-family: "IBM Plex Mono", monospace;
}

@media (min-width: 1920px) {

.sg-home .container,
.sg-home .container-sm,
.sg-home .container-md,
.sg-home .container-lg,
.sg-home .container-xl,
.sg-home .container-xxl {
  max-width: 1880px !important;
}
}
.sg-home .custom-container {
max-width: 1450px;
}

/* ===============================
  NAVBAR BASE STYLES
================================ */
.sg-home .navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1030;
transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
background: transparent;
box-shadow: none;
}

.sg-home .navbar-nav {
flex-direction: row;
align-items: center;
}

.sg-home .navbar.nav-hidden {
transform: translateY(-100%);
}

.sg-home .navbar.scrolled-down {
background: rgba(229, 229, 229, 0.6);
backdrop-filter: blur(3px);
}

.sg-home .navbar .nav-link {
text-transform: uppercase;
font-size: 15px;
display: flex;
align-items: center;
gap: 5px;
}

nav.sg-home .navbar.sg-home .navbar-expand-lg {
padding-bottom: 15px;
}

img.globe-icon {
width: 43px;
height: 38px;
}

a.nav-link.contact-link {
background: var(--gray-700, #525252);
color: white;
padding: 8px 16px;
border-radius: 4px;
}

.sg-home .navbar .nav-item {
margin-left: 20px;
border: none;
color: #525252;
}

.sg-home .navbar .globe-item,
.sg-home .navbar .contact-item {
margin-left: 4px;
}

.sg-home .navbar .nav-link.active {
font-family: "Inter Display";
}

.sg-home .navbar-logo {
height: 22px;
object-fit: contain;
transition: all 0.3s ease;
}

.sg-home .navbar-brand {
display: inline-block;
padding: 8px 12px;
border-radius: 6px;
transition: background-color 0.3s ease;
}

/* ===============================
  DROPDOWN MEGA MENU 
================================ */
.sg-home .nav-item.dropdown-mega {
position: static;
}

.sg-home .navbar .dropdown-toggle::after {
content: "";
display: inline-block;
width: 14px;
height: 9px;
margin-left: 6px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-size: contain;
border: none;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.dropdown-mega:hover .dropdown-toggle::after,
.nav-item.dropdown-mega.active .dropdown-toggle::after {
transform: rotate(180deg);
}

.sg-home .mega-menu-wrapper {
position: fixed;
left: 0;
right: 0;
top: 100%;
width: 100%;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
  visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1020;
padding-top: 0;
}

.sg-home .mega-menu-wrapper::before {
content: '';
position: absolute;
top: -20px;
left: 0;
right: 0;
height: 20px;
background: transparent;
}

.nav-item.dropdown-mega:hover .mega-menu-wrapper,
.nav-item.dropdown-mega .mega-menu-wrapper:hover {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

.mega-menu-container {
max-width: 1360px;
margin: 0 auto;
padding: 0 20px;
}

.mega-menu-content {
background: #fff;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
border-radius: 8px;
overflow: visible;
display: flex;
flex-direction: row;
max-height: 600px;
}

/* Hide scrollbar by default on mega-menu-content (shows on 1366px and below via media query) */
.mega-menu-content::-webkit-scrollbar {
display: none;
}

.mega-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
visibility: hidden;
z-index: 1019;
transition: opacity 0.3s ease, visibility 0.3s ease;
pointer-events: none;
}

.mega-menu-overlay.active {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

body.mega-menu-open {
overflow: hidden;
}

/* ===============================
  MAIN CONTENT AREA
================================ */
.mega-menu-main {
flex: 1;
overflow: visible;
padding: 40px 30px 40px 40px;
background: #fff;
}

/* Hide scrollbar on mega-menu-main since content handles scrolling */
.mega-menu-main::-webkit-scrollbar {
display: none;
}

/* ===============================
  TAB SECTION CONTENT
================================ */
.tab-service-section {
margin-bottom: 40px;
}

.tab-service-section:last-child {
margin-bottom: 0;
}

.tab-service-section .section-title {
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #999;
margin-bottom: 24px;
}

.sg-home .services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}

/* ===============================
  SERVICE CARDS
================================ */
.sg-home .service-card {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px;
text-decoration: none;
color: inherit;
border-radius: 6px;
transition: background-color 0.2s ease;
}

.sg-home .service-card:hover {
background-color: #f5f5f5;
text-decoration: none;
color: inherit;
}

.sg-home .service-card .icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  transition: background 0.3s ease;
}

.sg-home .service-card .service-icon {
  width: 22px;
  height: 22px;
  transition: filter 0.3s ease;
}

.sg-home .service-card:hover .icon-wrap {
  background: linear-gradient(to bottom, #F94800, #FDB350);
}

.sg-home .service-card:hover .service-icon {
  filter: invert(1) brightness(2);
}

.sg-home .service-card .service-content {
flex: 1;
min-width: 0;
}

.sg-home .service-card .service-title {
margin: 0 0 4px 0;
color: #080808;
font-family: "Inter Display";
font-size: 14px;
font-weight: 600;
line-height: 1.4;
letter-spacing: 0.01em;
}

.sg-home .service-card .service-description {
margin: 0;
color: #666;
font-family: "Inter Display";
font-size: 13px;
font-weight: 400;
line-height: 1.4;
}

/* ===============================
  SIDEBAR - RIGHT ALIGNED
================================ */
.sidebar-wrapper {
width: 340px;
min-width: 340px;
padding: 40px 30px;
background-color: #f8f9fa;
border-radius: 0 8px 8px 0;
display: flex;
flex-direction: column;
}

.sidebar-wrapper .hero-card {
position: relative;
width: 100%;
height: 200px;
display: block;
overflow: hidden;
text-decoration: none;
color: #fff;
margin-bottom: 30px;
border-radius: 8px;
}

.sidebar-wrapper .hero-card .card-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.sidebar-wrapper .hero-card .card-content {
position: relative;
z-index: 2;
height: 100%;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
}

.sidebar-wrapper .hero-card h2 {
  color: #fff;
  font-family: "Inter Display";
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  margin: 0;
}

.sidebar-wrapper .hero-card .contact-btn {
background: #fff;
color: #171717;
padding: 10px 24px;
font-family: "Inter Display";
font-size: 15px;
font-weight: 600;
line-height: 1.5;
border-radius: 4px;
display: inline-block;
transition: transform 0.2s ease;
text-decoration: none;
}

.sidebar-wrapper .hero-card .contact-btn:hover {
transform: translateY(-2px);
}

.sidebar-wrapper .ready-section {
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #999;
margin-bottom: 20px;
}

/* ===============================
  NAV LINKS
================================ */
.sidebar-wrapper .nav-tab-link {
display: flex;
flex-direction: column;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
padding: 16px 0;
border-bottom: 1px solid #e0e0e0;
color: #080808;
font-family: "Inter Display";
font-size: 14px;
font-weight: 600;
text-decoration: none;
line-height: 1.5;
letter-spacing: 0.01em;
cursor: pointer;
transition: color 0.2s ease;
}

.sidebar-wrapper .nav-tab-link .nav-item-links:hover {
color: #FB8454;
}

.sidebar-wrapper .nav-tab-link .nav-item-links:first-child {
border-top: 1px solid #e0e0e0;
}

/* ===============================
  RESPONSIVE -  (1366px+)
================================ */
@media only screen and (min-width: 1367px) {
/* Hide scrollbar on large screens (bigger than 1366px) */
.mega-menu-content {
  overflow: visible;
  max-height: 600px;
}

.mega-menu-content::-webkit-scrollbar {
  display: none;
}
}

@media only screen and (min-width: 1366px) {
.sg-home .navbar.scrolled-down {
  background: rgba(229, 229, 229, 0.6);
  backdrop-filter: blur(0.22vw);
}

nav.sg-home .navbar.sg-home .navbar-expand-lg {
  padding-bottom: 1.1vw;
}

.custom-container {
  max-width: 106.2vw;
}

.sg-home .navbar .nav-item {
  margin-left: 1.46vw;
}

.sg-home .navbar .dropdown-toggle::after {
  width: 1.02vw;
  height: 0.66vw;
  margin-left: 0.44vw;
}

.sg-home .navbar .globe-item,
.sg-home .navbar .contact-item {
  margin-left: 0.29vw;
}

.sg-home .navbar-logo {
  height: 1.61vw;
}
}

/* ===============================
  RESPONSIVE - 1024px 
================================ */
@media only screen and (min-width: 992px) and (max-width: 1366px) {
/* Show scrollbar ONLY on screens between 992px and 1366px (tablet/small desktop) */
.mega-menu-content {
  overflow-y: auto !important;
  overflow-x: hidden;
  max-height: calc(100vh - 120px) !important;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

.mega-menu-content::-webkit-scrollbar {
  display: block !important;
  width: 6px;
}

.mega-menu-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-menu-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.mega-menu-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
}

/* ===============================
  RESPONSIVE - 1024px 
================================ */
@media only screen and (max-width: 1024px) and (min-width: 992px) {
.custom-container {
  max-width: 960px;
}

.sg-home .navbar .nav-link {
  font-size: 13px;
}

.sg-home .navbar .nav-item {
  margin-left: 15px;
}

img.globe-icon {
  width: 38px;
  height: 34px;
}

.mega-menu-container {
  max-width: 920px;
}

.sg-home .services-grid {
  gap: 6px;
  padding: 10px;
}

.sg-home .service-card .service-title {
  font-size: 13px;
}

.sg-home .service-card .service-description {
  font-size: 12px;
}

.sidebar-wrapper {
  width: 300px;
  min-width: 300px;
  padding: 30px 20px;
}

.sidebar-wrapper .hero-card {
  height: 180px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 20px;
}
}

/* ===============================
  RESPONSIVE - 991px 
================================ */
@media only screen and (max-width: 991px) {
.custom-container {
  max-width: 100%;
  padding: 0 15px;
}
.sg-home .nav-link.contact-link {
    width: auto;
    display: inline-flex;
    padding: 8px 16px !important;
    margin: 10px;
}
.sg-home .navbar {
  padding: 10px 0;
  background: rgba(229, 229, 229, 0.95) !important;
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sg-home .navbar-logo {
  height: 20px;
}

.sg-home .navbar-toggler {
  border: none;
  font-size: 15px;
}

.sg-home .navbar-toggler:focus {
  box-shadow: none;
}

.sg-home .navbar-nav {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.sg-home .navbar .nav-item {
  margin-left: 0;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
}

.sg-home .navbar .nav-link {
  padding: 10px 20px !important;
  font-size: 14px;
}

.nav-item.dropdown-mega {
  position: relative;
}

.nav-item.dropdown-mega:hover .mega-menu-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.sg-home .mega-menu-wrapper {
  position: relative !important;
  left: 0;
  right: 0;
  top: 0 !important;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sg-home .mega-menu-wrapper::before {
  display: none;
}

.nav-item.dropdown-mega.mobile-open .mega-menu-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

.nav-item.dropdown-mega.mobile-open .mega-menu-wrapper::-webkit-scrollbar {
  width: 6px;
}

.nav-item.dropdown-mega.mobile-open .mega-menu-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.nav-item.dropdown-mega.mobile-open .mega-menu-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.nav-item.dropdown-mega.mobile-open .mega-menu-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;

}

.nav-item.dropdown-mega.mobile-open .dropdown-toggle::after {
  transform: rotate(180deg);
}

.mega-menu-content {
  overflow: visible !important;
  max-height: none !important;
  flex-direction: column !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.mega-menu-content::-webkit-scrollbar {
  display: none !important;
}

.mega-menu-main {
  flex: 1;
  padding: 20px 15px;
  min-height: auto;
  overflow: visible;
}

.sg-home .services-grid {
  grid-template-columns: 1fr;
  gap: 4px;
}

.sidebar-wrapper {
  width: 100%;
  min-width: 100%;
  border-radius: 0 0 8px 8px;
  padding: 30px 20px;
  flex-shrink: 0;
  overflow: visible;
}
.sg-home .nav-link.contact-link {
    width: auto;
    display: inline-flex;
    padding: 8px 16px !important;
    margin: 10px;
}
.sidebar-wrapper .hero-card {
  height: 180px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 20px;
}

img.globe-icon {
  width: 38px;
  height: 34px;
}

a.nav-link.contact-link {
  padding: 6px 14px;
  font-size: 13px;
}
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

.navbar-collapse {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
}

.navbar-collapse::-webkit-scrollbar {
  display: none;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: rgba(248, 249, 250, 0.98);
  backdrop-filter: blur(5px);
  border-radius: 0 0 8px 8px;
  margin-top: 10px;
}
}

/* ===============================
  RESPONSIVE - 767px 
================================ */
@media only screen and (max-width: 767px) {
.custom-container {
  max-width: 100%;
  padding: 0 12px;
}

.sg-home .navbar-logo {
  height: 19px;
}

.tab-service-section {
  margin-bottom: 25px;
}

.tab-service-section .section-title {
  font-size: 10px;
  margin-bottom: 18px;
}

.sg-home .service-card {
  padding: 10px;
}

.sg-home .service-card .service-title {
  font-size: 13px;
}

.sg-home .service-card .service-description {
  font-size: 12px;
}

.sidebar-wrapper {
  padding: 25px 15px;
}

.sidebar-wrapper .hero-card {
  height: 170px;
  margin-bottom: 25px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 19px;
}

.sidebar-wrapper .hero-card .contact-btn {
  padding: 9px 20px;
  font-size: 14px;
}

.sidebar-wrapper .ready-section {
  font-size: 10px;
  margin-bottom: 18px;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
  padding: 14px 0;
  font-size: 13px;
}

img.globe-icon {
  width: 36px;
  height: 32px;
}

a.nav-link.contact-link {
  padding: 6px 12px;
  font-size: 13px;
}
}

/* ===============================
  RESPONSIVE - 576px 
================================ */
@media only screen and (max-width: 576px) {
.custom-container {
  padding: 0 10px;
}

.sg-home .navbar {
  padding: 8px 0;
}

.sg-home .navbar-logo {
  height: 18px;
}

.sg-home .navbar .nav-link {
  padding: 8px 15px !important;
  font-size: 13px;
}

.mega-menu-main {
  padding: 18px 12px;
}

.tab-service-section {
  margin-bottom: 22px;
}

.tab-service-section .section-title {
  font-size: 10px;
  margin-bottom: 16px;
}

.sg-home .service-card {
  padding: 9px;
  gap: 10px;
}

.sg-home .service-card .service-icon {
  width: 18px;
  height: 18px;
}

.sg-home .service-card .service-title {
  font-size: 12px;
}

.sg-home .service-card .service-description {
  font-size: 11px;
}

.sidebar-wrapper {
  padding: 22px 12px;
}

.sidebar-wrapper .hero-card {
  height: 160px;
  margin-bottom: 22px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 18px;
}

.sidebar-wrapper .hero-card .contact-btn {
  padding: 8px 18px;
  font-size: 13px;
}

.sidebar-wrapper .ready-section {
  font-size: 9px;
  margin-bottom: 16px;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
  padding: 13px 0;
  font-size: 12px;
}

img.globe-icon {
  width: 34px;
  height: 30px;
}

a.nav-link.contact-link {
  padding: 5px 11px;
  font-size: 12px;
}
}

/* ===============================
  RESPONSIVE - 441px
================================ */
@media only screen and (max-width: 441px) {
.custom-container {
  padding: 0 8px;
}

.sg-home .navbar-logo {
  height: 17px;
}

.sg-home .navbar .nav-link {
  font-size: 12px;
}

.mega-menu-main {
  padding: 16px 10px;
}

.tab-service-section {
  margin-bottom: 20px;
}

.tab-service-section .section-title {
  font-size: 9px;
  margin-bottom: 14px;
}

.sg-home .service-card {
  padding: 8px;
  gap: 9px;
}

.sg-home .service-card .service-icon {
  width: 17px;
  height: 17px;
}

.sg-home .service-card .service-title {
  font-size: 12px;
}

.sg-home .service-card .service-description {
  font-size: 11px;
}

.sidebar-wrapper {
  padding: 20px 10px;
}

.sidebar-wrapper .hero-card {
  height: 150px;
  margin-bottom: 20px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 17px;
}

.sidebar-wrapper .hero-card .contact-btn {
  padding: 7px 16px;
  font-size: 12px;
}

.sidebar-wrapper .ready-section {
  font-size: 9px;
  margin-bottom: 14px;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
  padding: 12px 0;
  font-size: 12px;
}

img.globe-icon {
  width: 32px;
  height: 28px;
}

a.nav-link.contact-link {
  padding: 5px 10px;
  font-size: 11px;
}
}

/* ===============================
  RESPONSIVE - 390px
================================ */
@media only screen and (max-width: 390px) {
.custom-container {
  padding: 0 8px;
}

.sg-home .navbar-logo {
  height: 16px;
}

.sg-home .navbar .nav-link {
  font-size: 12px;
}

.mega-menu-main {
  padding: 15px 10px;
}

.tab-service-section {
  margin-bottom: 18px;
}

.tab-service-section .section-title {
  font-size: 9px;
  margin-bottom: 12px;
}

.sg-home .service-card {
  padding: 7px;
  gap: 8px;
}

.sg-home .service-card .service-icon {
  width: 16px;
  height: 16px;
}

.sg-home .service-card .service-title {
  font-size: 11px;
}

.sg-home .service-card .service-description {
  font-size: 10px;
}

.sidebar-wrapper {
  padding: 18px 10px;
}

.sidebar-wrapper .hero-card {
  height: 140px;
  margin-bottom: 18px;
}

.sidebar-wrapper .hero-card .card-content {
  padding: 18px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 16px;
}

.sidebar-wrapper .hero-card .contact-btn {
  padding: 7px 14px;
  font-size: 12px;
}

.sidebar-wrapper .ready-section {
  font-size: 8px;
  margin-bottom: 12px;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
  padding: 11px 0;
  font-size: 11px;
}

img.globe-icon {
  width: 30px;
  height: 27px;
}

a.nav-link.contact-link {
  padding: 5px 9px;
  font-size: 11px;
}
}

/* ===============================
  RESPONSIVE - 360px 
================================ */
@media only screen and (max-width: 360px) {
.custom-container {
  padding: 0 6px;
}

.sg-home .navbar-logo {
  height: 15px;
}

.sg-home .navbar .nav-link {
  font-size: 11px;
}

.mega-menu-main {
  padding: 14px 8px;
}

.tab-service-section {
  margin-bottom: 16px;
}

.tab-service-section .section-title {
  font-size: 8px;
  margin-bottom: 11px;
  letter-spacing: 1.5px;
}

.sg-home .service-card {
  padding: 7px;
  gap: 7px;
}

.sg-home .service-card .service-icon {
  width: 15px;
  height: 15px;
}

.sg-home .service-card .service-title {
  font-size: 11px;
}

.sg-home .service-card .service-description {
  font-size: 10px;
}

.sidebar-wrapper {
  padding: 16px 8px;
}

.sidebar-wrapper .hero-card {
  height: 130px;
  margin-bottom: 16px;
}

.sidebar-wrapper .hero-card .card-content {
  padding: 16px;
}

.sidebar-wrapper .hero-card h2 {
  font-size: 15px;
}

.sidebar-wrapper .hero-card .contact-btn {
  padding: 6px 12px;
  font-size: 11px;
}

.sidebar-wrapper .ready-section {
  font-size: 8px;
  margin-bottom: 11px;
  letter-spacing: 1.5px;
}

.sidebar-wrapper .nav-tab-link .nav-item-links {
  padding: 10px 0;
  font-size: 11px;
}

img.globe-icon {
  width: 28px;
  height: 25px;
}

a.nav-link.contact-link {
  padding: 4px 8px;
  font-size: 10px;
}
}
/* Default hidden */
.mega-menu-wrapper {
  opacity: 0;
  filter: blur(1px);
  pointer-events: none;
  transition:
    opacity .35s ease,
    transform .35s cubic-bezier(.22,.61,.36,1),
    filter .35s ease;
}

.nav-item.active .mega-menu-wrapper,
.nav-item.open .mega-menu-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}
@media (hover: none) and (pointer: coarse) {
  .mega-menu-wrapper {
    filter: none !important;
  }
}
/*Navbar Custom Styles End*/
/* Banner wrapper starts---*/
.hero-banner { 
position: relative; 
width: 100%; 
height: 100vh; 
overflow: hidden; 
} 

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
}

.hero-video.shrink {
  transform: scale(0.9);
  opacity: 0.8;
}

/* Show only one video */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

@media (max-width: 576px) {
  .hero-banner { 
height: 70vh; 
min-height: 450px; 
}
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }
}


/* Banner wrapper ends---*/
/*Grid Style section */
.sg-bordered-content {
position: relative;
}

.sg-bordered-content::before,
.sg-bordered-content::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 1px;
background: #D8C4C480;
}

.sg-bordered-content::before {
left: 40px;
}

.sg-bordered-content::after {
right: 40px;
}

/* Reponsive for 1366px and above */
@media only screen and (min-width: 1366px) {

.sg-bordered-content::before,
.sg-bordered-content::after {
  width: 0.073vw;
}

.sg-bordered-content::before {
  left: 2.93vw;
}

.sg-bordered-content::after {
  right: 2.93vw;
}
}

@media only screen and (max-width: 576px) {
.sg-bordered-content::before {
  left: 10px;
}

.sg-bordered-content::after {
  right: 10px;
}
}

@media only screen and (max-width: 350px) {
.sg-bordered-content::before {
  left: 8px;
}

.sg-bordered-content::after {
  right: 8px;
}
}

/*Grid style section ends */
/*Container Custom Styles */
.sg-container {
max-width: 1450px;
margin: 0 auto;
padding: 0 50px;
}

@media only screen and (min-width: 1366px) {
.sg-container {
  max-width: 106.15vw;
  padding: 0 5.66vw;
}
}

@media only screen and (max-width: 576px) {
.sg-container {
  padding: 0 35px;
}
}

@media only screen and (max-width: 441px) {
.sg-container {
  padding: 0px 18px;
}
}

@media only screen and (max-width: 350px) {
.sg-container {
  padding: 0 18px;
}
}

/*Container Custom Styles ends */
/* Hero Section Styles */
.sg-hero-section {
padding: 150px 0 30px 0;
}

.sg-hero-section h1 {
color: var(--Foundation-Grey-grey-800, #211F1F);
font-family: "Inter Display";
font-size: 90px;
font-style: normal;
font-weight: 600;
line-height: 98px;
letter-spacing: -1.24px;
text-transform: capitalize;
}
.sg-hero-section .hero-title {
  min-height: 2.2em;   /* space for 2 lines */
  display: block;
  will-change: contents;
}
.sg-hero-section .hero-title-gray {
color: #0707077f;
}

.sg-hero-section p {
color: var(--Foundation-Grey-grey-800, #211F1F);
font-family: "Inter Display";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 22px;
letter-spacing: 0.2px;
}

@media only screen and (min-width: 1366px) {
.sg-hero-section {
  padding: 10.98vw 0 2.2vw 0;
}

.sg-hero-section h1 {
  font-size: 5.59vw;
  line-height: 5.95vw;
  letter-spacing: 0.09vw;
}

.sg-hero-section p {
  font-size: 1.32vw;
  line-height: 1.70vw;
}
}

/* =========================
  Responsive Media Queries
  ========================= */

@media only screen and (max-width: 1024px) {
.sg-hero-section h1 {
  font-size: 60px;
  line-height: 68px
}

.sg-hero-section p {
  font-size: 14px;
  line-height: 22px;
}
}

@media only screen and (max-width: 991px) {
.sg-hero-section h1 {
  font-size: 58px;
  line-height: 62px;
}

.sg-hero-section p {
  font-size: 14px;
  line-height: 21px;
}
}

@media only screen and (max-width: 767px) {
.sg-hero-section {
  padding: 80px 0 30px 0;
}

.sg-hero-section h1 {
  font-size: 50px;
  line-height: 60px;
}

.sg-hero-section p {
  font-size: 14px;
  line-height: 22px;
  width: 62%;
}
}

@media only screen and (max-width: 576px) {
.sg-hero-section p {
  width: 85%;
}
}


@media only screen and (max-width: 441px) {
.sg-hero-section {
  padding: 70px 0 20px 0;
}

.sg-hero-section h1 {
  font-size: 46px;
  line-height: 54px;
}

.sg-hero-section p {
  font-size: 12px;
  line-height: 18px;
}
}

@media only screen and (max-width: 390px) {
.sg-hero-section h1 {
  font-size: 36px;
  line-height: 42px;

}

.sg-hero-section p {
  width: 100%;
}
}

@media only screen and (max-width: 320px) {
.sg-hero-section h1 {
  font-size: 32px;
  line-height: 36px;
}

.sg-hero-section p {
  font-size: 10px;
  line-height: 14px;
}
}

/* Hero Section Styles End */
/* About Section */
.sg-about-section {
background-color: #000000;
padding: 50px 0px 0 0;
}

.sg-about-section::before {
content: "";
display: block;
height: 1px;
background: rgba(228, 214, 214, 0.2);
margin-left: 40px;
margin-right: 40px;
width: auto;
}

.sg-about-section .sg-about-row {
display: flex;
flex-wrap: wrap;
gap: 0;
width: 100%;
}

.sg-about-section .about-left {
padding: 45px 0px 45px 15px;
border-right: 1px solid rgba(228, 214, 214, 0.2);
position: relative;
}

.sg-about-section .about-title {
color: #FFF;
font-family: "Inter Display";
font-size: 44px;
font-style: normal;
font-weight: 500;
line-height: 52px;
}

.sg-about-section .about-right {
padding: 45px 30px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
}

.sg-about-section .about-card {
margin: 123px 0 70px 30px;
}

.sg-about-section .card-img-top {
width: 87px;
height: 64px;
object-fit: contain;
position: absolute;
top: 110px;
right: 70px;
}

.sg-about-section .card-img-bottom {
width: 88px;
height: 64px;
object-fit: contain;
position: absolute;
bottom: 70px;
left: 60px;
}

.sg-about-section .card-title {
font-weight: 400;
font-size: 13px;
text-transform: uppercase;
color: rgba(33, 33, 33, 0.4);
letter-spacing: 0.5px;
margin-bottom: 20px;
}

.sg-about-section .about-description {
color: #FFF;
font-family: "Inter Display";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 21.6px;
}

.sg-about-section .about-description-gray {
color: #666666;
}

/* ===== 1024px ===== */
@media (max-width: 1024px) {
.sg-about-section {
  padding: 45px 0px 0 0;
}

.sg-about-section .about-title {
  font-size: 29px;
  line-height: 40px;
}

.sg-about-section .about-left {
  padding: 40px 0px 40px 35px;
}

.sg-about-section .about-right {
  padding: 40px 14px;
}

.sg-about-section .about-card {
  margin: 96px 0px 41px 0px;
}


.sg-about-section .card-img-top {
  width: 80px;
  height: 58px;
  top: 100px;
  right: 65px;
}

.sg-about-section .card-img-bottom {
  width: 80px;
  height: 58px;
  bottom: 65px;
  left: 55px;
}

.sg-about-section .about-description {
  font-size: 14px;
}
}

@media (min-width: 1366px) {

.sg-about-section {
  padding: 3.66vw 0 0 0;
}

.sg-about-section .sg-about-row {
  border: none;
}

.sg-about-section::before {
  height: 0.073vw;
  margin-left: 2.93vw;
  margin-right: 2.93vw;
}

.sg-about-section .about-left {
  padding: 3.29vw 0 3.29vw 1.10vw;
  border-right: 0.073vw solid rgba(228, 214, 214, 0.2);
}

.sg-about-section .about-title {
  font-size: 2.93vw;
  border-bottom: 0.073vw solid rgba(228, 214, 214, 0.2);
  padding-bottom: 4.03vw;
  padding-left: 4.32vw;
  margin-left: -3.44vw;
  line-height: 3.81vw;
}

.sg-about-section .about-right {
  padding: 3.29vw 2.20vw;
  gap: 1.76vw;
}

.sg-about-section .about-card {
  margin: 9.00vw 0 5.12vw 2.20vw;
}

.sg-about-section .card-img-top {
  width: 6.37vw;
  height: 4.69vw;
  top: 8.05vw;
  right: 5.12vw;
}

.sg-about-section .card-img-bottom {
  width: 6.44vw;
  height: 4.69vw;
  bottom: 5.12vw;
  left: 4.39vw;
}

.sg-about-section .card-title {
  font-size: 0.95vw;
  letter-spacing: 0.037vw;
  margin-bottom: 1.46vw;
}

.sg-about-section .about-description {
  font-size: 1.10vw;
  line-height: 1.54vw;
}
}

/* ===== 991px ===== */
@media (max-width: 991px) {
.sg-about-section .about-title {
  font-size: 25px;
  line-height: 32px;
}

.sg-about-section .about-right {
  padding: 40px 20px;
}

.sg-about-section .card-title {
  font-size: 12px;
}
}

/* ===== 767px ===== */
@media (max-width: 767px) {
.sg-about-section {
  padding: 35px 0px 0 0;
}

.sg-about-section::before {
  margin-left: 0;
  margin-right: 0;
  display: none;
}

.sg-about-section .about-left {
  padding: 30px 20px 0px 25px;
}

.sg-about-section .about-title {
  font-size: 30px;
  padding-bottom: 35px;
  padding-left: 15px;
  border-bottom: none;
  margin-left: 0;
  width: auto;
}

.sg-about-section .about-right {
  padding: 0px 45px;
}

.sg-about-section .about-card {
  margin: 0px;
}

.sg-about-section .card-img-top {
  width: 70px;
  height: 50px;
  top: 88px;
  right: 55px;
}

.sg-about-section .card-img-bottom {
  width: 70px;
  height: 50px;
  bottom: 55px;
  left: 45px;
}

.sg-about-section .card-title {
  font-size: 10px;
  margin-bottom: 15px;
}

.sg-about-section .about-description {
  font-size: 13px;
  margin-bottom: 40px;
}

.sg-about-section .about-left {
  border-right: none;
}
}

/* ===== 576px ===== */
@media (max-width: 576px) {
.sg-about-section {
  padding: 30px 0px 0 0;
}

.sg-about-section .about-left {
  padding: 25px 15px 25px 20px;
}

.sg-about-section .about-title {
  font-size: 26px;
  padding-bottom: 30px;
  padding-left: 10px;
}


.sg-about-section .about-card {
  margin: 0px;
}

.sg-about-section .card-img-top {
  width: 65px;
  height: 47px;
  top: 80px;
  right: 50px;
}

.sg-about-section .card-img-bottom {
  width: 65px;
  height: 47px;
  bottom: 50px;
  left: 40px;
}

.sg-about-section .about-right {
  align-items: center;
}

.sg-about-section .card-title {
  font-size: 11px;
  margin-bottom: 12px;
}

.sg-about-section .about-description {
  font-size: 12px;
}
}

/* ===== 441px ===== */
@media (max-width: 441px) {
.sg-about-section {
  padding: 25px 0px 0 0;
}

.sg-about-section .about-left {
  padding: 20px 12px 20px 15px;
}

.sg-about-section .about-title {
  font-size: 20px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.sg-about-section .card-img-top {
  width: 45px;
  height: 35px;
  top: 72px;
  right: 45px;
}

.sg-about-section .about-right {
  padding: 0px 20px;
}

.sg-about-section .card-img-bottom {
  width: 45px;
  height: 35px;
  bottom: 45px;
  left: 36px;
}

.sg-about-section .card-title {
  font-size: 10px;
  margin-bottom: 10px;
}

.sg-about-section .about-description {
  font-size: 11px;
  margin-bottom: 30px;

}
}

/* ===== 390px ===== */
@media (max-width: 390px) {
.sg-about-section {
  padding: 20px 0px 0 0;
}

.sg-about-section .about-left {
  padding: 18px 10px 18px 12px;
}

.sg-about-section .about-title {
  font-size: 20px;
  padding-bottom: 22px;
  padding-left: 6px;
  line-height: 1.2;
}


.sg-about-section .about-card {
  margin: 0px 0 22px 0px;
}

.sg-about-section .card-img-top {
  width: 55px;
  height: 40px;
  top: 65px;
  right: 40px;
}

.sg-about-section .card-img-bottom {
  width: 55px;
  height: 40px;
  bottom: 40px;
  left: 32px;
}

.sg-about-section .card-title {
  font-size: 9px;
  margin-bottom: 8px;
}

.sg-about-section .about-description {
  font-size: 10px;
  line-height: 1.3;
}
}

/* ===== 360px ===== */
@media (max-width: 360px) {
.sg-about-section {
  padding: 18px 0px 0 0;
}

.sg-about-section .about-left {
  padding: 15px 8px 15px 10px;
}

.sg-about-section .about-title {
  font-size: 16px;
  padding-bottom: 6px;
  padding-left: 0px;
}


.sg-about-section .about-card {
  margin: 0;
}

.sg-about-section .card-img-top {
  width: 50px;
  height: 37px;
  top: 60px;
  right: 38px;
}

.sg-about-section .card-img-bottom {
  width: 50px;
  height: 37px;
  bottom: 37px;
  left: 30px;
}

.sg-about-section .card-title {
  font-size: 8px;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.sg-about-section .about-description {
  font-size: 9px;
}
}

/* ===== 320px ===== */
@media (max-width: 320px) {
.sg-about-section {
  padding: 15px 0px 0 0;
}

.sg-about-section .about-left {
  padding: 12px 6px 12px 8px;
}

.sg-about-section .about-title {
  font-size: 14px;
}

.sg-about-section .about-card {
  height: 156px;
  width: 128px;
  padding: 6px;
}

.sg-about-section .card-img-top {
  width: 45px;
  height: 33px;
  top: 55px;
  right: 35px;
}

.sg-about-section .card-img-bottom {
  width: 45px;
  height: 33px;
  bottom: 33px;
  left: 27px;
}

.sg-about-section .card-title {
  font-size: 7px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.sg-about-section .about-description {
  font-size: 8px;
  line-height: 1.2;
  margin-bottom: 16px;
}
}


/* About Section End */
/*Network Section Styles */

.sg-network-section {
padding: 80px 0;
background-color: #efefef;
--d: 0.45s;
--e: cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-network-section .service-card,
.sg-network-section .service-card * {
backface-visibility: hidden;
}

.sg-network-section .network-title {
color: #121212;
font-family: "Inter Display";
font-size: 64px;
font-style: normal;
font-weight: 500;
line-height: 76.8px;
/* 120% */
letter-spacing: -0.651px;
}

.sg-network-section .network-description {
color: #4E4E4E;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}

.sg-network-section .network-description-gray {
color: #ababab;
}


.cta-wrapper {
display: inline-flex;
align-items: center;
gap: 10px;
}

.sg-network-section .contactus-button {
height: 40px;
display: inline-flex;
align-items: center;
color: var(--Base, #FFF);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.16px;
background: linear-gradient(to bottom, #454545, #232323);
border: 1px solid #4B4951;
border-radius: 8px;
background-blend-mode: overlay, normal;
padding: 0 28px;
text-decoration: none;
transition: background-color 0.3s ease;
}

/* .sg-network-section .contactus-button:hover {
background-color: #b5b4b4;
} */

/* .cta-arrow {
width: 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #c3c2c2;
transition: all 0.3s ease;
}

.cta-wrapper:hover .cta-arrow {
border-radius: 50%;
transform: translateX(3px);
background-color: #b5b4b4;
} */

.sg-network-section .services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 70px 50px;
padding-top: 50px;
}

.sg-network-section .service-card {
background: #ffffff;
padding: 35px;
display: flex;
width: 394px;
height: 519px;
flex-direction: column;
cursor: pointer;
position: relative;
overflow: hidden;
border: 1px solid transparent;
transition: all var(--d) var(--e);
}

.sg-network-section .service-card::after {
content: '';
position: absolute;
inset: 0;
height: 200%;
background: linear-gradient(to bottom,
    hsla(0, 0%, 100%, 0) 0%,
    hsla(0, 0%, 98%, 0.5) 50%,
    hsla(0, 0%, 95%, 1) 100%);
transform: translateY(-50%);
opacity: 0;
transition: transform calc(var(--d) * 2) var(--e), opacity var(--d) var(--e);
z-index: 0;
pointer-events: none;
transition-delay: 0.05s;
}

.sg-network-section .service-card:hover::after {
transform: translateY(0);
opacity: 1;
}

.sg-network-section .service-card .card-header {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 2;
}

.sg-network-section .service-card .card-number {
font-size: 20px;
font-weight: 100;
}

.sg-network-section .service-card .card-arrow svg {
width: 25px;
height: 25px;
color: #6e6d6d;
}


.sg-network-section .service-card .card-icon {
height: 260px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
}

.sg-network-section .service-card .card-icon img {
position: absolute;
transition: opacity 0.35s ease, transform 0.35s ease;
transform: scale(1);
}

.sg-network-section .service-card .default-img {
max-width: 265px;
opacity: 1;
}

.sg-network-section .service-card .hover-img {
max-width: 170px;
opacity: 0;
}

.sg-network-section .service-card:hover .default-img {
opacity: 0;
transform: scale(1.03);
}

.sg-network-section .service-card:hover .hover-img {
opacity: 1;
transition-delay: 0.08s;
transform: scale(1.03);
}

.sg-network-section .service-card .default-img,
.sg-network-section .service-card .hover-img {
transform: scale(1);
}

.sg-network-section .service-card .card-content {
min-height: 100px;
position: relative;
z-index: 2;
}

.sg-network-section .service-card .default-content,
.sg-network-section .service-card .hover-content {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
transition: all var(--d) var(--e);
}

.sg-network-section .service-card .default-content {
opacity: 1;
transform: translateY(0);
transition: transform 0.5s ease, opacity 0.3s ease;
}


.sg-network-section .service-card:hover .default-content {
opacity: 0;
transform: translateY(-40px);
}

.sg-network-section .service-card .hover-content {
opacity: 0;
transform: translateY(40px);
transition: transform 0.5s ease, opacity 0.3s ease;
}

.sg-network-section .service-card * {
will-change: transform, opacity;
}

.sg-network-section .service-card:hover .card-icon {
transform: translateY(-8px);
transition: transform 0.4s ease;
}

.sg-network-section .card-icon {
transition: transform 0.4s ease;
}


.sg-network-section .service-card:hover .hover-content {
opacity: 1;
transform: translateY(0);
transition-delay: 0.1s;
}


/* .sg-network-section .service-card:hover .read-more {
color: #666666;
font-size: 15px;
font-family: 'Inter Display', sans-serif;
} */


.service-card .card-hover-text p {
color: #666666;
}

.service-card .card-hover-text .hover-title {
color: #262626;
font-family: "Inter Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 33.6px;
}

.card-title {
color: #262626;
font-family: "Inter Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 33.6px;
}

.service-card .card-hover-text a {
color: #666666;

}

/* =========================
  Responsive Grid
  ========================= */
@media only screen and (min-width: 1366px) {
.sg-network-section {
  padding: 5.86vw 0;
}

.sg-network-section .network-title {
  font-size: 4.39vw;
  line-height: 5.30vw;
}

.sg-network-section .network-description {
  font-size: 1.32vw;
  line-height: 1.46vw;
}

.cta-wrapper {
  gap: 0.73vw;
}

.sg-network-section .contactus-button {
  height: 2.93vw;
  font-size: 1.17vw;
  border-radius: 0.59vw;
  padding: 0 2.05vw;
}

.cta-arrow {
  width: 3.22vw;
  height: 3.22vw;
}

.cta-arrow i {
  font-size: 1.32vw;
}

.sg-network-section .cta-wrapper .bi-arrow-right::before {
  font-size: 1.76vw;
}

.cta-wrapper:hover .cta-arrow {
  transform: translateX(0.22vw);
}

.sg-network-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.13vw 3.66vw;
  padding-top: 3.66vw;
}

.sg-network-section .service-card {
  padding: 2.56vw;
  width: 25.84vw;
  height: 34vw;
}

.sg-network-section .service-card .card-number {
  font-size: 1.46vw;
}

.sg-network-section .service-card .card-arrow svg {
  width: 1.83vw;
  height: 1.83vw;
}

.sg-network-section .service-card .card-icon {
  height: 19.04vw;
}

.sg-network-section .service-card .default-img {
  max-width: 19.4vw;
}

.sg-network-section .service-card .hover-img {
  max-width: 12.64vw;
}

.sg-network-section .service-card .card-content {
  min-height: 7.20vw;
}

.service-card .card-hover-text .hover-title {
  font-size: 1.46vw;
}

/* .sg-network-section .service-card:hover .read-more {
  font-size: 1.10vw;
} */
}

@media only screen and (min-width: 1200px) {

.sg-network-section .services-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

@media only screen and (max-width: 1024px) {
.sg-network-section .network-title {
  font-size: 40px;
  line-height: 48px;
}

.sg-network-section .service-card {
  width: 290px;
  height: 440px;
}

.service-card .card-hover-text p {
  font-size: 13px;
}

.service-card .card-hover-text .hover-title {
  font-size: 22px;
}

.sg-network-section .service-card .default-content {
  font-size: 24px;

}

.sg-network-section .service-card .default-img {
  max-width: 210px;

}

.sg-network-section .network-description {
  font-size: 16px;
}

.sg-network-section .services-grid {
  gap: 60px 20px;
}

.sg-network-section .row .offset-md-1 {
  margin-left: 0 !important;
}
}

@media only screen and (max-width: 991px) {
.sg-network-section {
  padding: 40px 0;
}

.sg-network-section .service-card {
  width: 265px;
  height: 370px;
}

.service-card .card-hover-text p {
  font-size: 13px;
}

.sg-network-section .services-grid {
  gap: 35px 30px;
}

/* .sg-network-section .service-card:hover .read-more {
  font-size: 12px;
} */

.sg-network-section .network-description {
  font-size: 13px;
}
}

@media only screen and (max-width: 767px) {
.sg-network-section .services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sg-network-section .service-card {
  width: 300px;
  height: 350px;
}

.service-card .card-hover-text p {
  font-size: 12px;
}

.sg-network-section .network-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.sg-network-section .contactus-button {
  font-size: 14px;
}

.sg-network-section .cta-wrapper .bi-arrow-right::before {
  font-size: 20px;
}

.sg-network-section .services-grid {
  padding-top: 30px;
}

.sg-network-section .service-card .card-icon {
  height: 180px;
}

.sg-network-section .service-card::after {
  height: 140%;
}
}

@media only screen and (max-width: 576px) {
.sg-network-section .service-card {
  width: 240px;
  height: 350px;
}

.sg-network-section .service-card .hover-img {
  max-width: 175px;
}

.sg-network-section .service-card {
  padding: 20px;
}
}

@media only screen and (max-width: 441px) {
.sg-network-section .network-title {
  font-size: 30px;
}

.sg-network-section .network-description {
  font-size: 15px;
}

.sg-network-section .services-grid {
  grid-template-columns: repeat(1, 1fr);
}

.sg-network-section .service-card {
  width: 100%;
  max-width: 362px;
  height: 340px;
  margin: 0 auto;
}
}

@media only screen and (max-width: 390px) {
.sg-network-section .network-title {
  font-size: 25px;
  margin-bottom: 15px;
}

.sg-network-section .service-card {
  width: 100%;
  max-width: 305px;
  height: 330px;
}

.sg-network-section .network-description {
  font-size: 12px;
}

.sg-network-section .services-grid {
  gap: 25px;
}
}

@media only screen and (max-width: 350px) {

.sg-network-section .service-card .default-content,
.sg-network-section .service-card .hover-content {
  font-size: 18px;
}

.service-card .card-hover-text .hover-title {
  font-size: 18px;
}
}

@media only screen and (max-width: 320px) {

.sg-network-section {
  padding: 20px 0;
}

.sg-network-section .network-title {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 28px;
}

.sg-network-section .contactus-button {
  font-size: 12px;
  padding: 0 18px;
  height: 32px;
}

.sg-network-section .cta-wrapper .bi-arrow-right::before {
  font-size: 20px;
}

.cta-arrow {
  width: 30px;
  height: 30px;
}

.sg-network-section .services-grid {
  padding-top: 16px;
}

.sg-network-section .service-card .card-number {
  font-size: 16px;
}

.sg-network-section .service-card .card-arrow svg {
  width: 20px;
  height: 20px;
}
}


/*Network section style ends */
/*Purpose Section Styles*/
/*Purpose Section Styles*/
.purpose-title::after {
content: "";
display: block;
height: 1px;
background: rgba(228, 214, 214, 0.2);
margin-left: -40px;
margin-right: -41px;
margin-top: 22px;
width: auto;
}

.purpose-section {
background-color: #0e0e0e;
padding: 100px 0 50px 0;
}

.purpose-section .purpose-title {
color: #FFF;
font-family: "Inter Display";
font-size: 64px;
font-style: normal;
font-weight: 500;
line-height: 76.8px;
letter-spacing: -0.651px;
}

.purpose-section .purpose-scroll-wrapper {
display: flex;
gap: 80px;
margin-top: 50px;
position: relative;
}

.purpose-section .purpose-headings-column {
flex: 0 0 40%;
display: flex;
flex-direction: column;
gap: 0;
}

.purpose-section .industry-item {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: start;
position: relative;
}

.purpose-headings-column {
position: relative;
}

.purpose-headings-column::after {
content: "";
position: absolute;
top: -50px;
bottom: -50px;
right: 0;
width: 1px;
background: rgba(216, 196, 196, 0.5);
}

.purpose-section .industry-number {
font-size: 48px;
font-weight: 400;
color: #666666;
margin: 0;
font-family: "Inter Display";
}

.purpose-section .industry-heading {
color: #FFF;
font-family: "Inter Display";
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 57.6px;
text-transform: uppercase;
}

.purpose-section .industry-title-row {
display: flex;
align-items: baseline;
gap: 12px;
}

.purpose-section .mobile-heading {
display: none;
}

.purpose-section .content-item .left-para {
display: none;
}

.purpose-section .purpose-headings-column .left-para {
color: #636161;
font-family: "Inter Display";
font-size: 20px;
font-style: normal;
font-weight: 500;
width: 85%;
line-height: 24px;
letter-spacing: -0.651px;
margin-top: 20px;
}

.purpose-section .purpose-content-sticky {
flex: 1;
position: sticky;
top: 15vh;
height: fit-content;
align-self: flex-start;
}

.purpose-section .content-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
transform: translateY(30px) scale(0.98);
transition:
  opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
  transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
  visibility 0s linear 0.6s;
pointer-events: none;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform-origin: center center;
}

.purpose-section .content-item.active {
opacity: 1;
visibility: visible;
transform: translateY(0) scale(1);
pointer-events: auto;
position: relative;
transition:
  opacity 0.6s cubic-bezier(0.0, 0.0, 0.2, 1) 0.15s,
  transform 0.6s cubic-bezier(0.0, 0.0, 0.2, 1) 0.15s,
  visibility 0s linear 0s;
z-index: 2;
}

.purpose-section .content-item.active-leaving {
opacity: 0;
transform: translateY(-20px) scale(0.98);
transition:
  opacity 0.5s cubic-bezier(0.4, 0.0, 1, 1),
  transform 0.5s cubic-bezier(0.4, 0.0, 1, 1),
  visibility 0s linear 0.5s;
z-index: 1;
}

.purpose-section .content-item h2 {
color: #FFF;
font-family: "Inter Display";
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 57.6px;
letter-spacing: -0.651px;
margin-bottom: 30px;
}

.purpose-section .content-item>p {
font-size: 18px;
font-weight: 500;
line-height: 25px;
color: #636161;
font-family: "Inter Display";
margin-bottom: 30px;
}

.purpose-section .industry-image {
width: 798px;
max-width: 100%;
height: 425px;
display: block;
object-fit: cover;
}

/* Desktop Large */
@media only screen and (min-width: 1366px) {
.purpose-section {
  padding: 7.32vw 0 3.66vw 0;
}

.purpose-section .purpose-title {
  font-size: 4.39vw;
  line-height: 5.56vw;
}

.purpose-section .industry-number {
  font-size: 3.51vw;
}

.purpose-section .industry-heading {
  font-size: 3.51vw;
}

.purpose-section .content-item h2 {
  font-size: 2.93vw;
}

.purpose-section .content-item>p {
  font-size: 1.2vw;
  line-height: 1.8vw;
}

.purpose-title::after {
  height: 0.07vw;
  margin-left: -2.93vw;
  margin-right: -3.00vw;
  margin-top: 1.61vw;
}

.sg-home .purpose-section .industry-image {
  width: 58.42vw;
  max-width: 100%;
  height: 31.11vw;
  display: block;
  object-fit: cover;
}
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
.purpose-section {
  padding: 80px 0 60px 0;
}

.purpose-section .purpose-title {
  font-size: 46px;
  line-height: 56px;
}

.purpose-title::after {
  margin-left: -10px;
  margin-right: -10px;
}

.purpose-section .purpose-scroll-wrapper {
  gap: 60px;
  margin-top: 60px;
}

.purpose-section .industry-number {
  font-size: 35px;
}

.purpose-section .industry-heading {
  font-size: 35px;
}

.purpose-section .content-item h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.purpose-section .content-item>p {
  font-size: 17px;
  margin-bottom: 25px;
}

.purpose-section .industry-image {
  border-radius: 10px;
}
}

/* 991px Breakpoint */
@media (max-width: 991px) {
.purpose-section {
  padding: 70px 0 50px 0;
}

.purpose-section .purpose-title {
  font-size: 46px;
  line-height: 54px;
}

.purpose-section .purpose-scroll-wrapper {
  gap: 50px;
  margin-top: 55px;
}

.purpose-section .industry-number {
  font-size: 38px;
}

.purpose-section .industry-heading {
  font-size: 38px;
}

.purpose-section .content-item h2 {
  font-size: 32px;
  margin-bottom: 22px;
}

.purpose-section .content-item>p {
  font-size: 16px;
  margin-bottom: 22px;
}
}

/* ============================================
  - 767px
  ============================================ */
@media (max-width: 767px) {
.purpose-section {
  padding: 60px 0 40px 0;
}

.purpose-section .purpose-title {
  font-size: 40px;
  line-height: 50px;
}

.purpose-section .purpose-title-gray {
  display: block;
}

.purpose-section .purpose-scroll-wrapper {
  flex-direction: column;
  gap: 0px;
  margin-top: 45px;
}

.purpose-section .purpose-headings-column {
  display: none !important;
}

.purpose-section .purpose-content-sticky {
  position: relative !important;
  top: 0 !important;
  width: 100%;
}

.purpose-section .content-item {
  position: relative !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  margin-bottom: 50px;
  display: block !important;
  transition: none !important;
}

.purpose-section .content-item.active,
.purpose-section .content-item.active-leaving {
  position: relative !important;
  transform: none !important;
  opacity: 1 !important;
}

.purpose-section .content-item::before {
  content: "";
  font-size: 34px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 10px 0;
  font-family: "Inter Display";
  display: block;
}

.purpose-section .content-item .mobile-heading {
  display: block !important;
  font-size: 34px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-family: "Inter Display";
  line-height: 1.2;
  text-transform: uppercase;
}

.purpose-section .content-item .left-para {
  display: block !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #636161;
  margin: 0 0 20px 0;
  font-family: "Inter Display";
}

.purpose-section .content-item h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.purpose-section .content-item>p {
  font-size: 15px;
  margin-bottom: 20px;
}

.purpose-section .industry-image {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.purpose-section .content-item h2,
.purpose-section .content-item>p,
.purpose-section .content-item .left-para,
.purpose-section .content-item .industry-image {
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

}

/* 576px Breakpoint */
@media (max-width: 576px) {
.purpose-section {
  padding: 50px 0 35px 0;
}

.purpose-section .purpose-title {
  font-size: 34px;
  line-height: 40px;
}

.purpose-section .content-item {
  margin-bottom: 40px !important;
}

.purpose-section .content-item::before {
  font-size: 28px;
}

.purpose-section .content-item .mobile-heading {
  font-size: 28px;
  margin-bottom: 10px;
}

.purpose-section .content-item .left-para {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 18px;
}

.purpose-section .content-item h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
}

.purpose-section .content-item>p {
  font-size: 14px;
  margin-bottom: 18px;
}
}

/* 441px Breakpoint */
@media (max-width: 441px) {
.purpose-section {
  padding: 45px 0 30px 0;
}

.purpose-section .purpose-title {
  font-size: 30px;
  line-height: 37px;
}

.purpose-section .content-item {
  margin-bottom: 35px !important;
}

.purpose-section .content-item::before {
  font-size: 24px;
}

.purpose-section .content-item .mobile-heading {
  font-size: 24px;
  margin-bottom: 9px;
}

.purpose-section .content-item .left-para {
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 16px;
}

.purpose-section .content-item h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.purpose-section .content-item>p {
  font-size: 13px;
  margin-bottom: 16px;
}

.purpose-section .industry-image {
  border-radius: 6px;
}
}

/* 390px Breakpoint */
@media (max-width: 390px) {
.purpose-section {
  padding: 40px 0 25px 0;
}

.purpose-section .purpose-title {
  font-size: 28px;
}

.purpose-section .content-item {
  margin-bottom: 32px !important;
}

.purpose-section .content-item::before {
  font-size: 22px;
}

.purpose-section .content-item .mobile-heading {
  font-size: 22px;
  margin-bottom: 8px;
}

.purpose-section .content-item .left-para {
  font-size: 12.5px;
  line-height: 18px;
  margin-bottom: 15px;
}

.purpose-section .content-item h2 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 12px;
}

.purpose-section .content-item>p {
  font-size: 12.5px;
  margin-bottom: 15px;
}
}

/* 360px Breakpoint */
@media (max-width: 360px) {
.purpose-section {
  padding: 35px 0 22px 0;
}

.purpose-section .purpose-title {
  font-size: 26px;
}

.purpose-section .content-item {
  margin-bottom: 28px !important;
}

.purpose-section .content-item::before {
  font-size: 20px;
}

.purpose-section .content-item .mobile-heading {
  font-size: 20px;
  margin-bottom: 8px;
}

.purpose-section .content-item .left-para {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 14px;
}

.purpose-section .content-item h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.purpose-section .content-item>p {
  font-size: 12px;
  margin-bottom: 14px;
}

.purpose-section .industry-image {
  border-radius: 5px;
}
}

/* 320px Breakpoint */
@media (max-width: 320px) {
.purpose-section {
  padding: 30px 0 20px 0;
}

.purpose-section .purpose-title {
  font-size: 24px;
  line-height: 30px;
}

.purpose-section .content-item {
  margin-bottom: 25px !important;
}

.purpose-section .content-item::before {
  font-size: 18px;
}

.purpose-section .content-item .mobile-heading {
  font-size: 18px;
  margin-bottom: 7px;
}

.purpose-section .content-item .left-para {
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 12px;
}

.purpose-section .content-item h2 {
  font-size: 17px;
  margin-bottom: 9px;
}

.purpose-section .content-item>p {
  font-size: 11px;
  margin-bottom: 12px;
}

.purpose-section .industry-image {
  border-radius: 4px;
}
}

/*Purpose Section Styles End*/

/*Purpose Section Styles End*/
/*Case Study Section Styles*/

.sg-case-study {
padding: 100px 0;
}

.sg-case-study .case-study-title {
color: #121212;
font-family: "Inter Display";
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 58px;
letter-spacing: -0.651px;
}

.sg-case-study .case-study-para {
color: #4E4E4E;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}

/* .sg-case-study .case-study-para-gray {
color: #A5A4A4;
} */

.sg-case-study .casestudy-button {
height: 40px;
display: inline-flex;
align-items: center;
color: var(--Base, #FFF);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.16px;
background: linear-gradient(to bottom, #454545, #232323);
border: 1px solid #4B4951;
border-radius: 8px;
background-blend-mode: overlay, normal;
padding: 0 28px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.casestudy-grid {
padding: 80px 0 0 0;
}

.casestudy-grid>.row {
display: flex;
align-items: stretch;
}

.casestudy-grid .grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
height: 430px;
}

.casestudy-grid .col-md-6:last-child {
display: flex;
}

.casestudy-grid .case-card.large {
width: 100%;
height: 430px;
}

.casestudy-grid .case-card {
background: #f5f5f5;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
cursor: pointer;
}

.casestudy-grid .cut-card {
background: #f3f3f3;
border-radius: 0;
clip-path: polygon(12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px),
    0 12px);
}

.casestudy-grid .case-card.large.cut-card {
background: #f3f3f3;
border-radius: 0;
clip-path: polygon(25px 0,
    calc(100% - 25px) 0,
    100% 25px,
    100% calc(100% - 25px),
    calc(100% - 25px) 100%,
    25px 100%,
    0 calc(100% - 25px),
    0 25px);
}

.casestudy-grid .case-card:hover {
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.casestudy-grid .card-content {
padding: 18px 0 0 20px;
position: relative;
z-index: 2;
}

.casestudy-grid .big-card-content {
padding: 18px 0 0 20px;
position: relative;
z-index: 2;
}

.casestudy-grid .card-title {
color: #1E2124;
font-family: "Inter Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 33.6px;
margin-bottom: 15px;
}

.casestudy-grid .big-card-title {
color: #1E2124;
font-family: "Inter Display";
font-size: 38px;
font-style: normal;
font-weight: 500;
line-height: 48px;
margin-bottom: 15px;
}

.casestudy-grid .card-subtitle {
font-size: 13px;
color: #1E2124;
}

.casestudy-grid .card-stats {
list-style: none;
padding: 0;
margin: 0;
}

.casestudy-grid .card-stats li {
color: var(--Foundation-Grey-grey-200, #A5A4A4);
font-size: 14px;
font-weight: 300;
font-family: "Inter Display";
line-height: 18.8px;
letter-spacing: 0.247px;
position: relative;
padding-left: 12px;

}

.casestudy-grid .card-stats li::before {
content: "-";
position: absolute;
left: 0;
}

.casestudy-grid .case-card.large .card-stats li {
color: var(--Foundation-Grey-grey-200, #A5A4A4);
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 17.851px;
letter-spacing: 0.247px;
padding-left: 12px;
}

.casestudy-grid .card-title {
display: inline-flex;
align-items: center;
gap: 8px;
}

.casestudy-grid .card-illustration,
.casestudy-grid .big-card-illustration {
position: absolute;
bottom: 0;
pointer-events: none;
}

.casestudy-grid .card-illustration {
    width: 314px;
    height: 210px;
}

.casestudy-grid .big-card-illustration {
      width: 880px;
    height: 564px;
}

.casestudy-grid .right {
right: 0;
}

.casestudy-grid .left {
left: 0;
}

.casestudy-grid img {
width: 100%;
height: 100%;
object-fit: contain;
}

.casestudy-grid .case-card:hover .card-illustration,
.casestudy-grid .case-card:hover .big-card-illustration {
opacity: 0.6;
transform: scale(1.05);
}
/* Default: show image */
.casestudy-grid .card-illustration,
.casestudy-grid .big-card-illustration {
  opacity: 1;
  transition: all 0.4s ease;
}

/* Default: hide description text */
.casestudy-grid .card-stats {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Title always visible */
.casestudy-grid .card-title,
.casestudy-grid .big-card-title {
  opacity: 1;
}
/* On hover: show text */
.casestudy-grid .case-card:hover .card-stats {
  opacity: 1;
  transform: translateY(0);
}

/* On hover: hide image */
.casestudy-grid .case-card:hover .card-illustration,
.casestudy-grid .case-card:hover .big-card-illustration {
  opacity: 0;
  transform: scale(0.9);
}
/* RESPONSIVE */
@media only screen and (min-width: 1366px) {
.sg-case-study {
  padding: 7.32vw 0;
}

.sg-case-study .case-study-title {
  font-size: 3.20vw;
  line-height: 4.25vw;
}

.sg-case-study .case-study-para {
  font-size: 1.17vw;
  line-height: 1.46vw;
}

.sg-case-study .casestudy-button {
  height: 2.93vw;
  font-size: 1.17vw;
  border-radius: 0.59vw;
  padding: 0 2.05vw;
}

.casestudy-grid {
  padding: 5.86vw 0 0 0;
}

.casestudy-grid .grid-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.32vw;
  height: 28.48vw;
}

.casestudy-grid .case-card.large {
  width: 100%;
  height: 28.2vw;
}

.casestudy-grid .cut-card {
  background: #f3f3f3;
  clip-path: polygon(0.88vw 0,
      calc(100% - 0.88vw) 0,
      100% 0.88vw,
      100% calc(100% - 0.88vw),
      calc(100% - 0.88vw) 100%,
      0.88vw 100%,
      0 calc(100% - 0.88vw),
      0 0.88vw);
}

.casestudy-grid .case-card.large.cut-card {
  clip-path: polygon(1.83vw 0,
      calc(100% - 1.83vw) 0,
      100% 1.83vw,
      100% calc(100% - 1.83vw),
      calc(100% - 1.83vw) 100%,
      1.83vw 100%,
      0 calc(100% - 1.83vw),
      0 1.83vw);
}

.casestudy-grid .case-card:hover {
  box-shadow: 0 0.73vw 2.93vw rgba(150, 26, 26, 0.1);
}

.casestudy-grid .card-content {
  padding: 1.32vw 0 0 1.46vw;
}

.casestudy-grid .big-card-content {
  padding: 1.32vw 0 0 1.46vw;
}

.casestudy-grid .card-title {
  font-size: 1.9vw;
  margin-bottom: 1.1vw;
}

.casestudy-grid .big-card-title {
  font-size: 2.78vw;
  margin-bottom: 1.1vw;
}

.casestudy-grid .card-subtitle {
  font-size: 1. 0vw;
}

.casestudy-grid .card-stats li {
  font-size: 1.03vw;
  padding-left: 0.88vw;
  margin-bottom: 0.37vw;
  line-height: 1.38vw;
}

.casestudy-grid .case-card.large .card-stats li {
  font-size: 1.17vw;
  padding-left: 1.02vw;
  margin-bottom: 0.73vw;
}

.casestudy-grid .card-illustration {
        width: 22.99vw;
        height: 15.37vw;

}

.casestudy-grid .big-card-illustration {
  width: 64.42vw;
  height: 41.29vw;
}
}

@media (max-width: 1024px) {

.sg-case-study {
  padding: 55px 0;
}

.casestudy-grid .card-title {
  margin-bottom: 8px;
}

.sg-case-study .case-study-para {
  font-size: 14px;

}

.sg-case-study .case-study-title {
  font-size: 36px;
  line-height: 38px;
}

.casestudy-grid .grid-container {
  grid-template-columns: 1fr;
}

.sg-case-study .casestudy-button {
  font-size: 14px;
}

.casestudy-grid .grid-container {
  height: 750px;
}

.casestudy-grid .case-card.large {
  height: 748px;
}

.casestudy-grid .big-card-title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 8px;
}
.casestudy-grid .card-illustration {
    width: 230px;
    height: 140px;
}
}

@media (max-width: 991px) {
.casestudy-grid .big-card-title {
  font-size: 30px;
}

.sg-case-study .case-study-title {
  font-size: 34px;
}
}

@media (max-width: 767px) {

.sg-case-study .case-study-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.sg-case-study .cta-wrapper {

  margin-bottom: 22px;
}

.casestudy-grid .row {
  flex-direction: column;
}

.casestudy-grid .card-title {
  font-size: 24px;
}

.casestudy-grid .case-card.large {
  width: 100%;
  height: 315px;
  margin-top: 30px;
}

.casestudy-grid {
  padding: 20px 0 0 0;
}
.casestudy-grid .big-card-illustration {
    width: 697px;
    height: 438px;
}
}

@media (max-width: 576px) {
    .casestudy-grid .big-card-illustration {
        width: 446px;
        height: 280px;
    }

.casestudy-grid .case-card.large {
  height: 260px;
}

.sg-case-study {
  padding: 40px 0;
}

.casestudy-grid .card-content {
  height: 178px;

}
}

/* @media (max-width: 767px) {
.casestudy-grid .card-illustration {
  width: 80px;
  height: 80px;
  bottom: 10px;
}
} */

@media (max-width: 441px) {
.casestudy-grid .big-card-title {
  font-size: 26px;
}

.casestudy-grid .case-card.large .card-stats li {
  font-size: 14px;
}

    .casestudy-grid .big-card-illustration {
        width: 380px;
        height: 246px;
    }
}

@media (max-width: 390px) {
.casestudy-grid .big-card-title {
  font-size: 20px;
}

.sg-case-study .case-study-title {
  font-size: 24px;
  margin-bottom: 5px;
}
}

@media (max-width: 360px) {
.casestudy-grid .big-card-title {
  font-size: 22px;
}
}

@media (max-width: 320px) {
.sg-case-study {
  padding: 25px 0;
}

.sg-case-study .case-study-title {
  font-size: 20px;
}

.sg-case-study .casestudy-button {
  font-size: 12px;
  height: 34px;

}

.sg-case-study .case-study-para {
  line-height: 16px;
}

.casestudy-grid {
  padding: 8px 0 0 0;
}

.casestudy-grid .grid-container {
  gap: 18px;
}

.casestudy-grid .card-title {
  font-size: 20px;
}

.casestudy-grid .card-stats li {
  font-size: 12px;
  padding-left: 9px;
  margin-bottom: 0px;
}

.casestudy-grid .card-content {
  height: 150px;
}

.casestudy-grid .big-card-title {
  font-size: 20px;
}

.casestudy-grid .case-card.large .card-stats li {
  font-size: 12px;
  padding-left: 6px;
  margin-bottom: 0px;
}

.casestudy-grid .big-card-content {
  padding: 14px 0 0 12px;

}

.casestudy-grid .case-card.large {
  height: 200px;
}
}

/*Casestudy section ends */
/*Shedule Section Style Starts */

.schedule-section {
padding: 200px 0;
background-color: #000;
color: #fff;
}

.schedule-section .schedule-title {
color: #FFF;
font-family: "Inter Display";
font-size: 94px;
font-style: normal;
font-weight: 500;
line-height: 112.8px;
letter-spacing: -0.651px;
}

.schedule-section .schedule-subtitle {
color: #FFF;
font-family: "Inter Display";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 28.8px;
letter-spacing: -0.651px;
}

.schedule-section .schedule-points {
list-style: none;
padding: 0;
margin: 0 0 40px 0;
}

.schedule-section .schedule-points li {
color: var(--Foundation-Grey-grey-100, #C3C2C2);
font-family: "Inter Display";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
position: relative;
padding-left: 26px;
}

.schedule-section .schedule-points li::before {
content: "•";
position: absolute;
left: 0;
color: #fff;
}

.schedule-section .schedule-cta {
height: 40px;
display: inline-flex;
align-items: center;
color: var(--800, #262626);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.16px;
background: linear-gradient(to bottom, #FDFDFD, #F1F1F1);
border: 1px solid #4B4951;
border-radius: 8px;
background-blend-mode: overlay, normal;
padding: 0 28px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.shedule-cta-arrow {
width: 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #FFFFFF;
cursor: pointer;
transition: border-radius 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.shedule-cta-arrow i {
font-size: 18px;
color: #000;
line-height: 1;
}

.sg-network-section .cta-wrapper .bi-arrow-right::before {
content: "\f138";
font-size: 24px;
}

.cta-wrapper:hover .shedule-cta-arrow {
border-radius: 50%;
transform: translateX(3px);
background-color: #FFFFFF;
}

/* RESPONSIVE*/
@media only screen and (min-width: 1366px) {
.schedule-section {
  padding: 14.64vw 0;
}

.schedule-section .schedule-title {
  font-size: 6.59vw;
  line-height: 7.2vw;
}

.schedule-section .schedule-subtitle {
  font-size: 1.76vw;
  margin-bottom: 1.46vw;
}

.schedule-section .schedule-points {
  margin: 0 0 2.93vw 0;
}

.schedule-section .schedule-points li {
  font-size: 1.32vw;
  margin-bottom: 1.17vw;
  padding-left: 1.76vw;
}

.schedule-section .schedule-cta {
  height: 2.93vw;
  font-size: 1.17vw;
  border-radius: 0.59vw;
  padding: 0 2.05vw;
}

.shedule-cta-arrow {
  width: 3.22vw;
  height: 3.22vw;
}

.shedule-cta-arrow i {
  font-size: 1.32vw;
}

.sg-network-section .cta-wrapper .bi-arrow-right::before {
  font-size: 1.76vw;
}

.cta-wrapper:hover .shedule-cta-arrow {
  transform: translateX(0.22vw);
}
}

@media (max-width: 1024px) {
.schedule-section .schedule-title {
  font-size: 70px;
  line-height: 78px;
}
}

@media (max-width: 991px) {
.schedule-section .schedule-title {
  font-size: 65px;
}
}

@media (max-width: 767px) {
.schedule-section {
  padding: 50px 0;
}

.schedule-section .schedule-title {
  font-size: 58px;
}

.schedule-section .schedule-right {
  max-width: none;
}

.schedule-section .schedule-subtitle {
  font-size: 22px;
  margin-top: 30px;
}

.schedule-section .schedule-points li {
  font-size: 1.1rem;
}
}

@media (max-width: 576px) {
.schedule-section .schedule-title {
  font-size: 50px;
  line-height: 55px;
}

.schedule-section .schedule-cta {
  font-size: 12px;
}

.shedule-cta-arrow {
  width: 38px;
  height: 38px;
}

.schedule-section .schedule-points li {
  font-size: 16px;
}
}

@media (max-width: 350px) {
.schedule-section .schedule-title {
  font-size: 44px;
}
}



@media only screen and (max-width: 320px) {
.schedule-section .schedule-points li {
  font-size: 14px;
  margin-bottom: 8px;

}

.schedule-section .schedule-cta {
  padding: 8px 8px;

}

.schedule-section .schedule-title {
  font-size: 45px;
}

.schedule-section .schedule-subtitle {
  font-size: 20px;
  margin-top: 10px;
}

.schedule-section {
  padding: 30px 0;
}
}

/*Shedule Section Style Ends */
/*precision Section Styles*/
.precision-section {
padding: 150px 0;
background-color: #ffffff;
}

.precision-section .precision-title {
width: 58%;
color: rgba(18, 18, 18, 0.5);
font-family: "Inter Display";
font-size: 16px;
font-weight: 400;
line-height: 19.2px;
letter-spacing: -0.651px;
}

.precision-section .card-text {
color: #211F1F;
font-family: "Inter Display";
font-size: 18px;
font-weight: 400;
line-height: 24.7px;
letter-spacing: -0.67px;
opacity: 1;
transform: translateY(0);
transition: opacity 0.5s cubic-bezier(.4, 0, .2, 1),
  transform 0.5s cubic-bezier(.4, 0, .2, 1);
will-change: opacity, transform;
}

.precision-section .precision-points {
margin-top: 60px;
}

.precision-section .precision-list {
list-style: none;
padding: 0;
margin: 0;
}

.precision-section .precision-list li {
position: relative;
cursor: pointer;
user-select: none;
color: rgba(18, 18, 18, 0.5);
font-family: "Inter Display";
font-size: 60px;
font-weight: 500;
line-height: 72px;
letter-spacing: -0.651px;
transition: transform 0.45s cubic-bezier(.4, 0, .2, 1),
  color 0.35s ease;
}

.precision-section .precision-list li::before {
content: "";
position: absolute;
left: -22px;
top: 50%;
width: 12px;
height: 12px;
background-color: #000;
transform: translateY(-50%) scale(0);
transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.precision-section .precision-list li:hover,
.precision-section .precision-list li.active {
color: #121212;
transform: translateX(22px);
}

.precision-section .precision-list li.active::before {
transform: translateY(-50%) scale(1);
}


.precision-section .precision-image {
transform-style: preserve-3d;
opacity: 1;
transform: translateY(0);
transition: opacity 0.3s ease,
  transform 0.3s ease;
will-change: transform, opacity;
}

.precision-image {
  position: relative;
  transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.precision-image.hovering {
  transition: transform 100ms ease-out, box-shadow 100ms ease-out;
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.precision-section.cursor-active .precision-image,
.precision-section.cursor-active * {
cursor: none !important;
}

.precision-image.fade-out,
.card-text.fade-out {
opacity: 0;
}

/*RESPONSIVE */

@media (min-width: 1366px) {

.precision-section {
  padding: 10.98vw 0;
}

.precision-section .precision-title {
  font-size: 1.17vw;
  line-height: 1.76vw;
}

.precision-section .card-text {
  font-size: 1.17vw;
  line-height: 1.81vw;
  margin-top: 2.2vw;
}

.precision-section .precision-points {
  margin-top: 4.39vw;
}

.precision-section .precision-list li {
  font-size: 4.39vw;
  line-height: 5.42vw;
  margin-bottom: 1.32vw;
}

.precision-section .precision-list li::before {
  left: -1.61vw;
  width: 0.88vw;
  height: 0.88vw;
}

.precision-section .precision-list li:hover {
  transform: translateX(1.61vw);
}
}


@media (max-width: 1024px) {

.precision-section {
  padding: 60px 0;
}

.precision-section .precision-points {
  margin-top: 25px;
}

.precision-section .precision-title {
  width: 78%;
}

.precision-section .precision-list li {
  font-size: 52px;
  line-height: 64px;
}

.precision-section .card-text {
  font-size: 14px;
  line-height: 20px;
}
}


@media (max-width: 767px) {

.precision-section {
  padding: 70px 15px;
}

.precision-section .precision-title {
  width: 100%;
  font-size: 15px;
}

.precision-section .precision-points {
  margin-top: 18px;
}

.precision-section .precision-list li {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 8px;
}

.precision-section .card-text {
  margin-top: 20px;
}
}


@media (max-width: 576px) {

.precision-section .precision-list li {
  font-size: 34px;
  line-height: 44px;
}

.precision-section .precision-title,
.precision-section .card-text {
  font-size: 14px;
  line-height: 22px;
}
}


@media (max-width: 441px) {

.precision-section {
  padding: 60px 15px;
}

.precision-section .precision-list li {
  font-size: 30px;
  line-height: 40px;
}
}


@media (max-width: 390px) {

.precision-section .precision-list li {
  font-size: 26px;
  line-height: 36px;
}

.precision-section .precision-list li::before {
  width: 10px;
  height: 10px;
  left: -18px;
}

.precision-section .precision-points {
  margin-top: 0;
}

.precision-section {
  padding: 30px 6px;
}
}


@media (max-width: 360px) {

.precision-section .precision-list li {
  font-size: 24px;
  line-height: 34px;
}

.precision-section .precision-title,
.precision-section .card-text {
  font-size: 12px;
  line-height: 18px;
}
}

@keyframes slideInLeft {
from {
  opacity: 0;
  transform: translateX(-30px);
}

to {
  opacity: 0.6;
  transform: translateX(0);
}
}

@keyframes fadeInScale {
from {
  opacity: 0;
  transform: scale(0.95);
}

to {
  opacity: 1;
  transform: scale(1);
}
}

/*precision section ends */
/*Outcom section starts*/
.sg-realbordered-content {
position: relative;
}

.sg-realbordered-content::before,
.sg-realbordered-content::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 1px;
background: #E4D6D633;
}

.sg-realbordered-content::before {
left: 124px;
}

.sg-realbordered-content::after {
right: 125px;
}

.real-outcome {
padding: 80px 0px;
background-color: #000;
}

.outcomes-section {
background-color: #0a0a0a;
display: flex;
align-items: center;
justify-content: center;
width: 1130px;
height: 520px;
position: relative;
border-top: 1px solid #E4D6D633;
border-bottom: 1px solid #E4D6D633;
margin: 0 auto;
transition: background 0.4s ease;
}

.outcomes-section:hover {
background-image: repeating-linear-gradient(43deg,
    transparent 0,
    transparent 14px,
    rgba(96, 96, 96, 0.25) 14px,
    rgba(96, 96, 96, 0.25) 16px);
}

.outcomes-section::before,
.outcomes-section::after {
content: "";
position: absolute;
left: 0;
right: 0;
height: 1px;
background: rgba(255, 255, 255, 0.1);
}

.outcomes-section::before {
top: 0;
}

.outcomes-section::after {
bottom: 0;
}

.outcomes-section .custom-container {
max-width: 1000px;
margin: 0 auto;
width: 100%;
}

.outcomes-section .outcomes-content {
text-align: center;
max-width: 1200px;
width: 100%;
}

.outcomes-section .outcomes-title {
color: #FFF;
text-align: center;
font-family: "Inter Display";
font-size: 94px;
font-style: normal;
font-weight: 600;
line-height: 112.8px;
letter-spacing: -0.651px;
}

.outcomes-section .outcomes-subtitle {
color: #FFF;
text-align: center;
font-family: "Inter Display";
font-size: 94px;
font-style: normal;
font-weight: 600;
line-height: 112.8px;
letter-spacing: -0.651px;
}

.outcomes-section .outcomes-description {
color: var(--Foundation-Grey-grey-100, #C3C2C2);
text-align: center;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 19.2px;
letter-spacing: -0.651px;
margin-bottom: 35px;
}

.outcomes-section .cta-container {
display: flex;
align-items: center;
justify-content: center;
}

.outcomes-section .outcomes-cta {
height: 40px;
display: inline-flex;
align-items: center;
color: var(--800, #262626);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.16px;
background: linear-gradient(to bottom, #FDFDFD, #F1F1F1);
border: 1px solid #4B4951;
border-radius: 8px;
background-blend-mode: overlay, normal;
padding: 0 28px;
text-decoration: none;
transition: background-color 0.3s ease;
}

@media only screen and (min-width: 1366px) {

.sg-realbordered-content::before,
.sg-realbordered-content::after {
  width: 0.073vw;
}

.sg-realbordered-content::before {
  left: 8.08vw;
}

.sg-realbordered-content::after {
  right: 8.08vw;
}

.real-outcome {
  padding: 5.86vw 0;
}

.outcomes-section {
  width: 82.72vw;
  height: 38.07vw;
}

.outcomes-section::before,
.outcomes-section::after {
  height: 0.073vw;
}

.outcomes-section .custom-container {
  max-width: 73.21vw;
}

.outcomes-section .outcomes-content {
  max-width: 87.85vw;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 6.96vw;
  line-height: 7.2vw;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 2.20vw;
}

.outcomes-section .outcomes-description {
  font-size: 1.32vw;
  line-height: 1.76vw;
  margin-bottom: 2.56vw;
}

.outcomes-section .outcomes-cta {
  height: 2.93vw;
  font-size: 1.17vw;
  border-radius: 0.59vw;
  padding: 0 2.05vw;
}
}

/* 1024px */
@media (max-width: 1024px) {
.sg-realbordered-content::before {
  left: 23px;
}

.sg-realbordered-content::after {
  right: 23px;
}

.real-outcome {
  padding: 60px 0;
}

.outcomes-section {
  width: 95%;
  height: 480px;
  padding: 0 20px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 80px;
  line-height: 88px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 25px;
}
}

/* 991px */
@media (max-width: 991px) {
.sg-realbordered-content::before {
  left: 80px;
}

.sg-realbordered-content::after {
  right: 80px;
}

.real-outcome {
  padding: 50px 0px;
}

.outcomes-section {
  width: 100%;
  height: 440px;
  padding: 0 30px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 70px;
}

.outcomes-section .outcomes-description {
  font-size: 16px;
  line-height: 22px;
  padding: 0 20px;
}
}

/* 767px */
@media (max-width: 767px) {

.sg-realbordered-content::before,
.sg-realbordered-content::after {
  display: none;
}

.real-outcome {
  padding: 40px 0px;
}

.outcomes-section {
  height: 400px;
  padding: 0 25px;
}

.outcomes-section .custom-container {
  max-width: 100%;
  padding: 0 15px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 56px;
  line-height: 63px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 20px;
}

.outcomes-section .outcomes-description {
  font-size: 15px;
  line-height: 21px;
  padding: 0 10px;
}

.outcomes-section .outcomes-cta {
  height: 42px;
  font-size: 15px;
  padding: 0 24px;
}
}

/* 576px */
@media (max-width: 576px) {
.real-outcome {
  padding: 35px 0px;
}

.outcomes-section {
  height: auto;
  min-height: 360px;
  padding: 40px 20px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 48px;
  line-height: 52px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 18px;
}

.outcomes-section .outcomes-description {
  font-size: 14px;
  line-height: 20px;
  padding: 0;
}

.outcomes-section .outcomes-cta {
  height: 40px;
  font-size: 14px;
  padding: 0 22px;
}
}

/* 441px */
@media (max-width: 441px) {
.real-outcome {
  padding: 30px 0px;
}

.outcomes-section {
  padding: 35px 18px;
  min-height: 340px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 42px;

}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 16px;
}

.outcomes-section .outcomes-description {
  font-size: 14px;
  line-height: 19px;
}
}

/* 390px */
@media (max-width: 390px) {
.real-outcome {
  padding: 28px 0px;
}

.outcomes-section {
  padding: 32px 16px;
  min-height: 320px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 38px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 14px;
}

.outcomes-section .outcomes-description {
  font-size: 13px;
  line-height: 18px;
}

.outcomes-section .outcomes-cta {
  height: 38px;
  font-size: 13px;
  padding: 0 20px;
}
}

/* 360px */
@media (max-width: 360px) {
.real-outcome {
  padding: 25px 0px;
}

.outcomes-section {
  padding: 30px 15px;
  min-height: 250px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 36px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 12px;
}

.outcomes-section .outcomes-description {
  font-size: 11px;
  line-height: 18px;
}

}

/* 350px */
@media (max-width: 350px) {

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 34px;
}

.outcomes-section {
  padding: 28px 14px;
}
}

/* 320px */
@media (max-width: 320px) {
.real-outcome {
  padding: 22px 0px;
}

.outcomes-section {
  padding: 22px 10px;
  min-height: 248px;
}

.outcomes-section .outcomes-title,
.outcomes-section .outcomes-subtitle {
  font-size: 32px;
}

.outcomes-section .outcomes-subtitle {
  margin-bottom: 10px;
}

.outcomes-section .outcomes-description {
  font-size: 12px;
  line-height: 17px;
}

.outcomes-section .outcomes-cta {
  height: 36px;
  font-size: 12px;
  padding: 0 18px;
  border-radius: 18px;
}
}

/*outcome section ends*/
/*Trusted by brand section starts*/
.sg-trusted-brand {
background-color: #EFEFEF;
padding: 100px 0;
}

.sg-trusted-brand .brand-text {
color: #4E4E4E;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
width: 88%;
}

/* .sg-trusted-brand .brand-text-gray {
color: #ABABAB;
} */

.sg-trusted-brand .country-text {
color: #4E4E4E;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}
/* 
.sg-trusted-brand .country-text-gray {
color: #ABABAB;
} */

.sg-brand {
padding: 40px 0 0 0;
}

.sg-brand-wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);
border: 1px solid #685F5F33;
}

.sg-brand-wrapper .grid-box {
height: 230px;
border-right: 1px solid #685F5F33;
border-bottom: 1px solid #685F5F33;
display: flex;
align-items: center;
justify-content: center;
position: relative;
cursor: pointer;
transition: background-color 0.3s ease;
}

.sg-brand-wrapper .grid-box:hover {
  background-color: #f9f9f9;
}

.sg-brand-wrapper .grid-box:nth-child(2n) {
border-right: none;
}

.sg-brand-wrapper .grid-box:nth-last-child(-n+2) {
border-bottom: none;
}

.sg-brand-wrapper .grid-box img {
max-width: 144px;
max-height: 31px;
object-fit: contain;
position: absolute;
transition: opacity 0.3s ease;
}

.sg-brand-wrapper .grid-box .logo-gray {
opacity: 1;
}

.sg-brand-wrapper .grid-box .logo-color {
  opacity: 0.3;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.sg-brand-wrapper .grid-box:hover .logo-gray {
  opacity: 0;
}

.sg-brand-wrapper .grid-box:hover .logo-color {
  filter: grayscale(0%);
  opacity: 1;
}

@media only screen and (min-width: 1366px) {
.sg-trusted-brand {
  padding: 7.32vw 0;
}

.sg-trusted-brand .brand-text {
  font-size: 1.17vw;
  line-height: 1.61vw;
}

.sg-trusted-brand .country-text {
  font-size: 1.17vw;
  line-height: 1.46vw;
}

.sg-brand {
  padding: 2.93vw 0 0 0;
}

.sg-brand-wrapper {
  border: 0.07vw solid #685F5F33;
}

.sg-brand-wrapper .grid-box {
  height: 15.84vw;
  border-right: 0.07vw solid #685F5F33;
  border-bottom: 0.07vw solid #685F5F33;
}

.sg-brand-wrapper .grid-box img {
  max-width: 10.54vw;
  max-height: 2.27vw;
}
}

@media (max-width: 1024px) {
.sg-trusted-brand .brand-text {
  width: 100%;
}

.sg-brand-wrapper .grid-box {
  height: 170px;
}

.sg-trusted-brand {
  padding: 100px 0 50px 0;
}
}

@media (max-width: 991px) {
.sg-trusted-brand {
  padding: 60px 0;
}

.sg-trusted-brand .brand-text {
  font-size: 13px;
}

.sg-brand-wrapper .grid-box {
  height: 200px;
}

.sg-trusted-brand .country-text {
  font-size: 13px;
}

.sg-brand {
  padding: 18px 0 0 0;
}
}

@media (max-width: 767px) {
.sg-brand-wrapper .grid-box {
  height: 120px;
}
}

@media (max-width: 576px) {
.sg-brand-wrapper .grid-box {
  height: 125px;
}
}

@media (max-width: 441px) {
.sg-trusted-brand {
  padding: 33px 0;
}

.sg-brand-wrapper .grid-box {
  height: 100px;
}
}

@media (max-width: 767px) {
.sg-trusted-brand {
  padding: 30px 0;
}

}

@media (max-width: 390px) {
.sg-brand-wrapper .grid-box img {
  max-width: 125px;
  max-height: 22px;
}

.sg-brand-wrapper .grid-box {
  height: 100px;
}
}

@media (min-width: 768px) {
.sg-brand-wrapper {
  grid-template-columns: repeat(5, 1fr);
}

.sg-brand-wrapper .grid-box:nth-child(2n) {
  border-right: 1px solid #685F5F33;
}

.sg-brand-wrapper .grid-box:nth-last-child(-n+2) {
  border-bottom: 1px solid #685F5F33;
}

.sg-brand-wrapper .grid-box:nth-child(5n) {
  border-right: none;
}

.sg-brand-wrapper .grid-box:nth-last-child(-n+5) {
  border-bottom: none;
}
}

/*Trusted by brand section sends*/
/*Tagline section starts*/

.sg-tagline {
padding: 100px 0;
background-color: #EFEFEF;
}

.sg-tagline .tagline-header {
color: var(--Foundation-Grey-grey-700, #2B2828);
font-family: "Inter Display";
font-size: 99px;
font-style: normal;
font-weight: 500;
line-height: 124px;
letter-spacing: -1.09px;
text-transform: capitalize;
}

.sg-tagline .tagline-btn-row {
display: flex;
gap: 20px;
}

.tag-btn-custom {
flex: 1;
height: 165px;
padding: 0 60px;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: border-radius 0.4s ease;
}

.tag-btn-custom:hover {
border-radius: 100px;
}

.tag-btn-content {
display: flex;
align-items: center;
justify-content: center;
gap: 80px;
transition: gap 0.5s ease;
}

.tag-btn-custom:hover .tag-btn-content {
gap: 30px;
}

.tag-btn-text {
font-family: "Inter Display";
font-size: 42.726px;
font-style: normal;
font-weight: 400;
line-height: 56.968px;
font-size: 40px;
line-height: 56px;
transition: transform 0.5s ease;
}

.tag-btn-custom:hover .tag-btn-text {
transform: translateX(-15px);
}

.tag-cta-arrow {
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.5s ease;
}

.tag-btn-custom:hover .tag-cta-arrow {
transform: translateX(15px);
}

.tag-cta-arrow i {
font-size: 42px;
color: currentColor;
}

.tagline-btn-row .tag-btn-custom:first-child {
background-color: #E5E5E5;
color: #1E2124;
}

.tagline-btn-row .tag-btn-custom:last-child {
background-color: #202426;
color: #FFFFFF;
}

.tag-btn-custom:active {
transform: scale(0.98);
}

/* ---------- RESPONSIVE ---------- */
@media only screen and (min-width: 1366px) {
.sg-tagline {
  padding: 7.32vw 0;
}

.sg-tagline .tagline-header {
  font-size: 6.25vw;
  line-height: 9.08vw;
  margin-bottom: 2.93vw;
}

.tagline-btn-row {
  gap: 1.46vw;
}

.tag-btn-custom {
  height: 12.09vw;
  padding: 0 4.39vw;
}

.tag-btn-custom:hover {
  border-radius: 100px;
}

.tag-btn-content {
  gap: 5.86vw;
}

.tag-btn-custom:hover .tag-btn-content {
  gap: 2.19vw;
}

.tag-btn-text {
  font-size: 2.60vw;
  line-height: 4.10vw;
}

.tag-btn-custom:hover .tag-btn-text {
  transform: translateX(-1.10vw);
}

.tag-cta-arrow {
  width: 4.69vw;
  height: 4.69vw;
}

.tag-btn-custom:hover .tag-cta-arrow {
  transform: translateX(1.10vw);
}

.tag-cta-arrow i {
  font-size: 3.07vw;
}
}

@media (max-width: 1024px) {
.sg-tagline {
  padding: 80px 0;
}

.sg-tagline .tagline-header {
  font-size: 80px;
  line-height: 120px;
}

.tag-btn-custom {
  height: 150px;
  padding: 0 50px;
}

.tag-btn-text {
  font-size: 24px;
}

.tag-btn-content {
  gap: 60px;
}
}

@media (max-width: 991px) {
.sg-tagline {
  padding: 70px 0;
}

.sg-tagline .tagline-header {
  font-size: 76px;
  line-height: 88px;
}

.tag-btn-custom {
  height: 140px;
  padding: 0 45px;
}

.tag-btn-text {
  font-size: 20px;
}

.tag-btn-content {
  gap: 50px;
}
}

@media (max-width: 767px) {
.sg-tagline {
  padding: 40px 0;
}

.sg-tagline .tagline-header {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 32px;
}

.tagline-btn-row {
  flex-direction: column;
  gap: 16px;
}

.tag-btn-custom {
  height: 120px;
  padding: 8px 30px;
}

.tag-btn-text {
  font-size: 28px;
  line-height: 36px;
}

.tag-btn-content {
  gap: 40px;
}
}

@media (max-width: 576px) {
.sg-tagline {
  padding: 50px 0;
}

.sg-tagline .tagline-header {
  font-size: 42px;
  line-height: 52px;
}

.tag-btn-custom {
  height: 105px;
}

.tag-btn-text {
  font-size: 24px;
}

.tag-btn-content {
  gap: 32px;
}
}

@media (max-width: 441px) {
.sg-tagline .tagline-header {
  font-size: 30px;
  line-height: 24px;
}

.tag-btn-custom {
  height: 95px;
  padding: 0 24px;
}

.tag-btn-text {
  font-size: 22px;
}

.tag-btn-content {
  gap: 26px;
}
}

@media (max-width: 390px) {
.sg-tagline .tagline-header {
  font-size: 26px;
}

.tag-btn-custom {
  height: 90px;
}

.tag-btn-text {
  font-size: 16px;
}

.tag-btn-content {
  gap: 22px;
}
}

@media (max-width: 360px) {
.sg-tagline {
  padding: 40px 0;
}

.sg-tagline .tagline-header {
  font-size: 28px;
}

.tag-btn-custom {
  height: 85px;
  padding: 0 20px;
}

.tag-btn-text {
  font-size: 18px;
}

.tag-btn-content {
  gap: 18px;
}
}

@media (max-width: 320px) {
.sg-tagline .tagline-header {
  font-size: 22px;
  margin-bottom: 10px;

}

.tag-btn-text {
  font-size: 16px;
}
}

/*Tagline section Completed*/
.sg-proven-section {
padding: 70px 0 30px 0;
background-color: #FFFFFF;
}

.sg-proven-section .proven-title {
color: #121212;
font-family: "Inter Display";
font-size: 64px;
font-style: normal;
font-weight: 500;
line-height: 76.8px;
letter-spacing: -0.651px;
}

.sg-proven-section .proven-title-gray {
color: #6F6F6F;
}

.sg-proven-section .proven-description {
color: #4E4E4E;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}

.sg-proven-section .proven-description-gray {
color: #ababab;
}

.sg-proven-section .proven-button {
height: 40px;
display: inline-flex;
align-items: center;
color: var(--Base, #FFF);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px;
letter-spacing: -0.16px;
background: linear-gradient(to bottom, #454545, #232323);
border: 1px solid #4B4951;
border-radius: 8px;
background-blend-mode: overlay, normal;
padding: 0 28px;
text-decoration: none;
transition: background-color 0.3s ease;
}

/* .sg-proven-section .proven-card.large.cut-card {
background: #f3f3f3;
border-radius: 0;
} */

.sg-proven-section .proven-big-card {
width: 100%;
min-height: 540px;
position: relative;
z-index: 2;
overflow: hidden;
}

.sg-proven-section .unified-section {
margin-top: 30px;
}

.sg-proven-section .proven-card.large {
position: relative;
}

.sg-proven-section .proven-card.large.cut-card:not(:first-of-type) {
margin-top: 40px;
}

.sg-proven-section .proven-big-card .proven-img-top {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
position: absolute;
top: 0;
left: 0;
clip-path: polygon(25px 0,
    calc(100% - 25px) 0,
    100% 25px,
    100% calc(100% - 25px),
    calc(100% - 25px) 100%,
    25px 100%,
    0 calc(100% - 25px),
    0 25px);
}

.sg-proven-section .proven-point {
margin-bottom: 70px;
}

.sg-proven-section .proven-subtitle {
color: var(--Foundation-Grey-grey-800, #211F1F);
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 44px;
letter-spacing: -0.651px;
}

.sg-proven-section .proven-point {
color: #4E4E4E;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
/* width: 50%; */
}

.sg-proven-section .proven-point-gray {
color: #ABABAB;
}

.sg-proven-section .data-proven-point {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
width: 100%;
}

.sg-proven-section .data-proven-point-gray {
color: #ABABAB;
}

.sg-proven-section .proven-small-card {
height: 278px;
position: relative;
z-index: 2;
overflow: hidden;
padding: 0;
}

/* .sg-proven-section .proven-card.cut-card {
background: #f3f3f3;
border-radius: 0;
} */

.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
margin-top: 40px;
}

.sg-proven-section .data-header {
color: var(--Foundation-Grey-grey-800, #211F1F);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 28.8px;
letter-spacing: -0.651px;
}

.proven-small-card img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.proven-card,
.proven-small-card {
display: flex;
align-items: center;
justify-content: center;
}

.sg-proven-section .row:first-child {
padding-bottom: 30px;
position: relative;
}

.sg-proven-section .row:first-child::after {
content: '';
position: absolute;
left: -28px;
right: -28px;
bottom: 0;
height: 1px;
background-color: #E4D6D680;
}

.sg-proven-section .sg-container {
position: relative;
}

.sg-proven-section .sg-container::after {
content: '';
position: absolute;
left: calc(63.33% - 30px);
top: -70px;
bottom: -30px;
width: 1px;
background-color: #E4D6D680;
z-index: 1;
}

.sg-proven-section .row {
position: relative;
z-index: 2;
}

.sg-proven-section .col-md-4>p.data-proven-point {
position: relative;
padding-bottom: 50px;
}

.sg-proven-section .col-md-4>p.data-proven-point::after {
content: '';
position: absolute;
left: -70px;
bottom: 0;
height: 1px;
background-color: #E4D6D680;
width: 545px;
}

.sg-proven-section .col-md-4>p.data-proven-point:last-of-type::after {
display: none;
}

.sg-proven-section .col-md-7>p.proven-point {
position: relative;
padding-bottom: 50px;
margin-bottom: 0 !important;
}

.sg-proven-section .col-md-7>p.proven-point::after {
content: '';
position: absolute;
left: -43px;
bottom: 0;
height: 1px;
background-color: #E4D6D680;
width: 889px;
}

.sg-proven-section .col-md-7>p.proven-point:last-child::after {
display: none;
}

/* ---------- RESPONSIVE ---------- */

@media only screen and (min-width: 1366px) {
.sg-proven-section {
  padding: 5.12vw 0 2.20vw 0;
}

.sg-proven-section .proven-title {
  font-size: 3.69vw;
  line-height: 4.56vw;
}

.sg-proven-section .proven-description {
  font-size: 1.17vw;
  line-height: 1.76vw;
}

.sg-proven-section .proven-button {
  height: 2.93vw;
  font-size: 1.17vw;
  border-radius: 0.59vw;
  padding: 0 2.05vw;
}

.sg-proven-section .proven-big-card .proven-img-top {
  clip-path: polygon(1.83vw 0,
      calc(100% - 1.83vw) 0,
      100% 1.83vw,
      100% calc(100% - 1.83vw),
      calc(100% - 1.83vw) 100%,
      1.83vw 100%,
      0 calc(100% - 1.83vw),
      0 1.83vw);
}

.sg-proven-section .proven-big-card {
  width: 100%;
  min-height: 35.53vw;
}

.sg-proven-section .unified-section {
  margin-top: 2.2vw;
}

.sg-proven-section .proven-card.large.cut-card:not(:first-of-type) {
  margin-top: 2.93vw;
}

.sg-proven-section .col-md-7>p.proven-point::after {
  left: -3.12vw;
  width: 58.10vw;
  height: 0.073vw;
}

.sg-proven-section .data-proven-point {
  font-size: 1.17vw;
  line-height: 1.76vw;
  padding-bottom: 3.66vw;
}

.sg-proven-section .col-md-4>p.data-proven-point::after {
  left: -4.65vw;
  width: 35.95vw;
  height: 0.073vw;
}

.sg-proven-section .proven-small-card {
  height: 18.35vw;
}

.proven-small-card img {
  clip-path: polygon(0.88vw 0,
      calc(100% - 0.88vw) 0,
      100% 0.88vw,
      100% calc(100% - 0.88vw),
      calc(100% - 0.88vw) 100%,
      0.88vw 100%,
      0 calc(100% - 0.88vw),
      0 0.88vw);
}

.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
  margin-top: 2.93vw;
}

.sg-proven-section .data-header {
  font-size: 1.76vw;
  line-height: 2.05vw;
  margin-top: 2.20vw;
}

.sg-proven-section .proven-subtitle {
  font-size: 2.49vw;
  line-height: 3.22vw;
  margin-top: 2.20vw;
}

.sg-proven-section .proven-point {
  font-size: 1.17vw;
  line-height: 1.46vw;
}

.sg-proven-section .row:first-child {
  padding-bottom: 2.2vw;
}

.sg-proven-section .row:first-child::after {
  left: -2.05vw;
  right: -2.05vw;
  height: 0.073vw;
}

.sg-proven-section .sg-container::after {
  left: calc(63.33% - 2.2vw);
  top: -5.12vw;
  bottom: -2.20vw;
  width: 0.073vw;
}
}

/* ----------- 1024px ----------- */
@media (max-width: 1024px) {
.sg-proven-section .proven-title {
  font-size: 54px;
  line-height: 60px;
}

.sg-proven-section .col-md-4>p.data-proven-point::after {
  left: -63px;
  width: 364px;
}

.sg-proven-section .proven-description {
  font-size: 14px;
  line-height: 20px;
}

.sg-proven-section .row:first-child::after {
  left: 2px;
  right: 3px;
}

.sg-proven-section .proven-button {
  height: 40px;
  font-size: 14px;
  padding: 0 24px;
}

.sg-proven-section .proven-big-card {
  min-height: 344px;
}

.sg-proven-section .proven-subtitle {
  font-size: 30px;
  line-height: 38px;
  margin-top: 24px;
}

.sg-proven-section .proven-point {
  font-size: 15px;
  line-height: 22px;
  /* width: 70%; */
  margin-bottom: 50px;
}

.sg-proven-section .col-md-7>p.proven-point::after {
  left: -9px;
  width: calc(100% + 208px);
}

.sg-proven-section .data-proven-point {
  width: 100%;
  font-size: 15px;
  line-height: 22px;
}

.sg-proven-section .proven-small-card {
  height: 195px;
}

.sg-proven-section .data-header {
  font-size: 21px;
  line-height: 18px;
  margin-top: 18px;
}

.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
  margin-top: 20px;
}

.sg-proven-section .row:first-child {
  padding-bottom: 16px;
}
}

/* ----------- 991px ----------- */
@media (max-width: 991px) {
.sg-proven-section .proven-title {
  font-size: 48px;
  line-height: 56px;
}

.cta-arrow {
  width: 34px;
  height: 34px;
}

.sg-proven-section .proven-small-card {
  height: 172px;
}

.sg-proven-section .proven-subtitle {
  font-size: 28px;
  line-height: 36px;
}

.sg-proven-section .proven-button {
  font-size: 13px;
  padding: 0 16px;
}

.sg-proven-section .proven-big-card {
  min-height: 310px;
}

/* .sg-proven-section .proven-point {
  width: 75%;
} */

.sg-proven-section .data-proven-point {
  font-size: 14px;
  line-height: 20px;
}

.sg-proven-section .data-proven-point {
  width: 100%;
}

.sg-proven-section .col-md-4>p.data-proven-point::after {
  left: -62px;
  width: 354px;
}

.sg-proven-section .col-md-7>p.proven-point::after {
  width: calc(100% + 176px);
}
}

/* ----------- 767px (Tablet) ----------- */
@media (max-width: 767px) {
.sg-proven-section {
  padding: 50px 0 20px 0;
}

.sg-proven-section .proven-title {
  font-size: 42px;
  line-height: 50px;
}

.sg-proven-section .proven-description {
  font-size: 13px;
}

.sg-proven-section .proven-button {
  height: 38px;
  font-size: 13px;
}

.sg-proven-section .unified-section {
  margin-top: 25px;
}

.sg-proven-section .proven-card.large.cut-card:not(:first-of-type),
.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
  margin-top: 25px;
}

.sg-proven-section .proven-subtitle {
  font-size: 26px;
  line-height: 34px;
  margin-top: 20px;
  text-align: center;
}

.sg-proven-section .proven-point {
  margin: 0 auto 30px auto;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding-bottom: 30px !important;
}

.sg-proven-section .col-md-7>p.proven-point::after {
  display: none;
}

.sg-proven-section .proven-big-card {
  min-height: 300px;
}

.sg-proven-section .proven-small-card {
  height: 200px;
}

.sg-proven-section .data-header {
  font-size: 22px;
  line-height: 28px;
  margin-top: 20px;
  text-align: center;
}

.sg-proven-section .data-proven-point {
  margin: 0 auto 25px auto;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding-bottom: 25px !important;
}

.sg-proven-section .col-md-4>p.data-proven-point::after {
  display: none;
}

.sg-proven-section .row:first-child {
  padding-bottom: 25px;
}

.sg-proven-section .sg-container::after {
  display: none;
}

.sg-proven-section .proven-card.large {
  padding-bottom: 0;
}
}

/* ----------- 576px (Mobile Large) ----------- */
@media (max-width: 576px) {
.sg-proven-section {
  padding: 40px 15px 15px 15px;
}

.sg-proven-section .proven-title {
  font-size: 36px;
  line-height: 40px;
}

.sg-proven-section .row:first-child::after {
  content: none;
}

.sg-proven-section .proven-description {
  font-size: 12px;
}

.sg-proven-section .proven-subtitle {
  font-size: 24px;
  line-height: 32px;
  margin-top: 18px;
}

.sg-proven-section .proven-point {
  width: 100%;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 20px;
}

.sg-proven-section .proven-big-card {
  min-height: 250px;
}

.sg-proven-section .proven-small-card {
  height: 180px;
}

.sg-proven-section .data-header {
  font-size: 20px;
  line-height: 26px;
  margin-top: 15px;
}

.sg-proven-section .data-proven-point {
  width: 100%;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 20px;
}

.sg-proven-section .data-proven-point {
  padding-bottom: 0px !important;
}
}

/* ----------- 441px----------- */
@media (max-width: 441px) {
.sg-proven-section .proven-title {
  font-size: 32px;
  line-height: 40px;
}

.sg-proven-section .proven-subtitle {
  font-size: 22px;
  line-height: 30px;
  margin-top: 15px;
}

.sg-proven-section .proven-point {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
}

.sg-proven-section .proven-point {
  padding-bottom: 0px !important;
}

.sg-proven-section .proven-big-card {
  min-height: 200px;
}

.sg-proven-section .proven-small-card {
  height: 150px;
}

.sg-proven-section .data-header {
  font-size: 18px;
  line-height: 18px;
}

.sg-proven-section .data-proven-point {
  font-size: 12px;
  line-height: 18px;
}
}

/* ----------- 390px ----------- */
@media (max-width: 390px) {
.sg-proven-section .proven-title {
  font-size: 25px;
  line-height: 28px;
}

.sg-proven-section .proven-subtitle {
  font-size: 20px;
  line-height: 28px;
}

.sg-proven-section .proven-point {
  font-size: 11px;
  line-height: 17px;
}

.sg-proven-section .proven-big-card {
  min-height: 180px;
}

.sg-proven-section .proven-small-card {
  height: 150px;
}

.sg-proven-section .data-proven-point {
  font-size: 11px;
  line-height: 17px;
}
}

/* ----------- 360px----------- */
@media (max-width: 360px) {
.sg-proven-section {
  padding: 35px 12px 12px 12px;
}

.sg-proven-section .proven-title {
  font-size: 25px;
  line-height: 28px;
}

.sg-proven-section .proven-button {
  height: 36px;
  font-size: 12px;
  padding: 0 20px;
}

.sg-proven-section .proven-subtitle {
  font-size: 18px;
  line-height: 26px;
  margin-top: 12px;
}

.sg-proven-section .proven-point {
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 18px;
}

.sg-proven-section .proven-big-card {
  min-height: 150px;
}

.sg-proven-section .proven-small-card {
  height: 100px;
}

.sg-proven-section .data-header {
  font-size: 16px;
  line-height: 22px;
  margin-top: 12px;
}

.sg-proven-section .data-proven-point {
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 15px;
}

.sg-proven-section .proven-card.large.cut-card:not(:first-of-type),
.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
  margin-top: 20px;
}
}

/* ----------- 320px----------- */
@media (max-width: 320px) {
.sg-proven-section .proven-title {
  font-size: 26px;
  line-height: 34px;
}

.sg-proven-section .proven-button {
  height: 34px;
  font-size: 11px;
  padding: 0 18px;
}

.sg-proven-section .proven-subtitle {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
}

.sg-proven-section .proven-point {
  font-size: 9px;
  line-height: 15px;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

.sg-proven-section .proven-big-card {
  min-height: 140px;
}

.sg-proven-section .proven-small-card {
  height: 134px;
}

.sg-proven-section .data-header {
  font-size: 15px;
  line-height: 20px;
  margin-top: 10px;
}

.sg-proven-section .data-proven-point {
  font-size: 9px;
  line-height: 15px;
  margin-bottom: 12px;
  padding-bottom: 20px;
}

.sg-proven-section .proven-card.large {
  padding-bottom: 0;
}

.sg-proven-section .proven-card.large.cut-card:not(:first-of-type),
.sg-proven-section .col-md-4 .proven-card.cut-card:not(:first-of-type) {
  margin-top: 18px;
}

.sg-proven-section .row:first-child {
  padding-bottom: 20px;
}
}

/*Proven section end*/

/*Proven section ends */
/*Footer section starts*/
.sg-footer {
background-color: #000;
padding: 100px 0 40px 0;
}

.sg-footer .footer-top {
padding: 80px 0 80px 0;
}

.sg-footer .nav-section {
gap: 32px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 400px;
}

.sg-footer .nav-section .nav-item {
color: #FFF;
font-family: "Inter Display";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 24px;
letter-spacing: -0.651px;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
}

.sg-footer .nav-section .nav-item:hover {
color: #999;
transform: translateX(5px);
}

.sg-footer .footer-logo {
width: 390px;
height: 281px;
object-fit: contain;
}

.sg-footer .logo-des-section {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}

.sg-footer .logo-des-section .logo-des {
color: rgba(255, 255, 255, 0.15);
font-family: "Inter Display";
font-size: 64px;
font-style: normal;
font-weight: 800;
line-height: 74.4px;
letter-spacing: -1.78px;
}

.sg-footer .footer-bottom {
padding-top: 40px;
display: flex;
align-items: center;
}


.sg-footer .social-links {
display: flex;
gap: 30px;
}

.sg-footer .social-link {

text-decoration: none;
color: rgba(255, 255, 255, 0.80);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}

.sg-footer .social-link:hover {
color: #999;
}

.sg-footer .copyright {
color: rgba(255, 255, 255, 0.80);
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.651px;
}


@media only screen and (min-width: 1366px) {
.sg-footer {
  padding: 7.32vw 0 2.93vw 0;
}

.sg-footer .footer-top {
  padding: 5.86vw 0 5.86vw 0;
}

.sg-footer .nav-section {
  gap: 2.34vw;
  min-height: 29.28vw;
}

.sg-footer .nav-section .nav-item {
  font-size: 1.46vw;
  line-height: 1.75vw;
}

.sg-footer .nav-section .nav-item:hover {
  transform: translateX(0.37vw);
}

.sg-footer .footer-logo {
  width: 28.54vw;
  height: 20.57vw;
}

.sg-footer .logo-des-section {
  min-height: 29.28vw;
}

.sg-footer .logo-des-section .logo-des {
  font-size: 4.69vw;
  line-height: 5.41vw;
}

.sg-footer .footer-bottom {
  padding-top: 2.93vw;
}

.sg-footer .social-links {
  gap: 2.20vw;
}

.sg-footer .social-link {
  font-size: 1.17vw;
  line-height: 1.46vw;
}

.sg-footer .copyright {
  font-size: 1.17vw;
  line-height: 1.46vw;
}

}

@media (max-width: 1024px) {
.sg-footer {
  padding: 40px 0 30px 0;
}

.sg-footer .logo-des-section .logo-des {
  font-size: 48px;
  line-height: 55px;
}

.sg-footer .nav-section .nav-item {
  font-size: 17px;
}

.sg-footer .footer-logo {
  width: 350px;
  height: 260px;
}

.sg-footer .footer-top {
  padding: 40px 0 40px 0;
}
}


@media (max-width: 991px) {
.sg-footer .footer-top .row {
  display: flex;
  flex-wrap: nowrap;
}

.sg-footer .footer-top .logo-section,
.sg-footer .footer-top .nav-section,
.sg-footer .footer-top .logo-des-section {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.sg-footer .logo-section {
  justify-content: center;
}

.sg-footer .logo-des-section .logo-des {
  font-size: 40px;
  line-height: 45px;
}

.sg-footer .footer-logo {
  width: 300px;
  height: 230px;
}

.sg-footer .logo-section {
  text-align: center;
  justify-content: center;
}

.sg-footer .nav-section,
.sg-footer .logo-des-section {
  min-height: auto;
  padding: 40px 0;
}

.sg-footer .nav-section {
  gap: 24px;
}

.sg-footer .footer-bottom {
  flex-direction: column;
  gap: 20px;
}
}


@media (max-width: 767px) {

.sg-footer .logo-des-section .logo-des {
  font-size: 36px;
}

.sg-footer .nav-section .nav-item {
  font-size: 16px;
}

.sg-footer .footer-logo {
  width: 257px;
  height: 197px;
}

.sg-footer .nav-section,
.sg-footer .logo-des-section {
  padding: 0px 0;
}
}


@media (max-width: 576px) {
.sg-footer .footer-top .row {
  flex-wrap: wrap;
}

.sg-footer .footer-top .logo-section,
.sg-footer .footer-top .nav-section,
.sg-footer .footer-top .logo-des-section {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}

.sg-footer .nav-section {
  padding: 30px 0;
  gap: 16px;
}

.sg-footer .logo-des-section {
  padding-top: 20px;
}



.sg-footer .footer-logo {
  width: 300px;
  height: 180px;
}

.sg-footer .nav-section {
  gap: 18px;
}

.sg-footer .footer-top {
  padding: 0px 0 0px 0;
}

.sg-footer .social-links {
  gap: 20px;
}

.sg-footer .logo-des-section .logo-des {
  font-size: 45px;
}

.sg-footer .copyright {
  font-size: 13px;
}
}


@media (max-width: 441px) {
.sg-footer .nav-section .nav-item {
  font-size: 15px;
}

.sg-footer .social-links {
  gap: 12px;
}

.sg-footer .social-link {
  font-size: 13px;
}
}


@media (max-width: 390px) {

.sg-footer .nav-section {
  gap: 14px;
}

.sg-footer .social-links {
  gap: 14px;
}

.sg-footer {
  padding: 0px;
}

.sg-footer .footer-logo {
  width: 286px;
  height: 128px;
}

.sg-footer .nav-section {
  padding: 0px;
}

.sg-footer .footer-bottom {
  gap: 0px;
  margin-top: 0px !important;
  padding-top: 24px;
}

.sg-footer .social-link {
  font-size: 10px;
}

}


@media (max-width: 360px) {

.sg-footer .logo-des-section .logo-des {
  font-size: 22px;
}

.sg-footer .nav-section {
  padding: 0px 0;
}

.sg-footer .nav-section .nav-item {
  font-size: 14px;
}

.sg-footer .footer-logo {
  width: 240px;
  height: 130px;
}

.sg-footer .logo-des-section .logo-des {
  font-size: 45px;
}

.sg-footer .footer-bottom {
  margin-top: 0 !important;
}
}

@media (max-width: 350px) {

.sg-footer .logo-des-section .logo-des {
  font-size: 35px;
  line-height: 35px;
}

.sg-footer .nav-section .nav-item {
  font-size: 13.5px;
}

.sg-footer .footer-logo {
  width: 200px;
}

.sg-footer .social-links {
  gap: 4px;
}

.sg-footer .nav-section {
  gap: 12px;
}
}

@media (max-width: 320px) {

.sg-footer .logo-des-section .logo-des {
  font-size: 30px;
  line-height: 1.15;
}

.sg-footer .nav-section .nav-item {
  font-size: 13px;
}

.sg-footer .footer-logo {
  width: 180px;
}

.sg-footer .nav-section {
  gap: 10px;
}

.sg-footer .social-links {
  gap: 2px;
}

.sg-footer .social-link {
  font-size: 12px;
}
}

/*Footer Section ends */

/*Strategic section starts */
.strategic-section {
background-color: #000;
color: #fff;
padding: 150px 0 200px 0;
}

.strategic-section .title {
width: 47%;
color: #FFF;
font-family: "Inter Display";
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 58px;
letter-spacing: -0.651px;
}

.strategic-section .title-gray {
color: #6F6F6F;
}

.strategic-section .main-wrapper {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.strategic-section .main-number {
color: #FFF;
font-family: "Inter Display";
font-size: 66px;
font-style: normal;
font-weight: 500;
line-height: 72px;
letter-spacing: -0.651px;
}

.strategic-section .main-description {
color: #FFF;
font-family: "Inter Display";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 19.2px;
letter-spacing: -0.651px;
text-align: left;
}

.strategic-section .main-description-gray {
color: #6F6F6F;
display: block;
}

.strategic-section .main-percent {
font-size: 24px;
vertical-align: super;
}

.strategic-section .metric-number {
color: #FFF;
font-family: "Inter Display";
font-size: 66px;
font-style: normal;
font-weight: 500;
line-height: 72px;
letter-spacing: -0.651px;
}

.strategic-section .metric-percent {
font-size: 24px;
vertical-align: super;
}

.strategic-section .metric-description {
color: #FFF;
font-family: "Inter Display";
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 16.8px;
letter-spacing: 0.2px;
}

.strategic-section .metric-description-gray {
color: #6F6F6F;
}

.strategic-section .metric-item {
display: flex;
flex-direction: column;
height: 100%;
}

.strategic-section .metric-item .ball {
margin-top: auto;
}

.strategic-section .ball {
width: 150px;
height: 150px;
border-radius: 50%;
background: radial-gradient(circle at 45% 35%, #FFE7C2 0%, #FFA63A 35%, #F58E19 65%, #E96A00 100%);
box-shadow: inset -18px -18px 30px rgb(229 97 20 / 28%), inset 18px 18px 40px rgb(239 94 50);
}


.strategic-section .ball-empty {
background: transparent;
border: 2px solid #333;
box-shadow: none;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}

.strategic-section .bordered-col {
position: relative;
}

.strategic-section .bordered-col::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 65px;
width: 1px;
background-color: #2a2a2a;
}

.strategic-section .metrics-row {
display: flex;
align-items: normal;
}

@media only screen and (min-width: 1366px) {
.strategic-section {
  padding: 10.98vw 0 14.64vw 0;
}

.strategic-section .title {
  font-size: 3.2vw;
  line-height: 4.2vw;
  margin-bottom: 7.32vw;
}

.strategic-section .main-number {
  font-size: 4.54vw;
}

.strategic-section .main-description {
  font-size: 1.17vw;
  margin-top: 1.1vw;
  line-height: 1.39vw;
}

.strategic-section .main-percent {
  font-size: 1.76vw;
}

.strategic-section .metric-number {
  font-size: 4.83vw;
}

.strategic-section .metric-percent {
  font-size: 1.76vw;
}

.strategic-section .metric-description {
  font-size: 1.02vw;
  margin: 1.46vw 0 2.93vw 0;
  max-width: 10.98vw;
  line-height: 1.17vw;
}

.strategic-section .ball {
  width: 10.98vw;
  height: 10.98vw;
}

.strategic-section .bordered-col::after {
  bottom: 4.76vw;
}
}

@media (max-width: 1024px) {
.strategic-section .title {
  font-size: 46px;
  line-height: 56px;
  width: 68%;
  margin-bottom: 40px;
}

.strategic-section {
  padding: 65px 0 80px 0;
}
}

@media (max-width: 991px) {
.strategic-section .metrics-row {
  justify-content: center;
}
}

@media (max-width: 767px) {
.strategic-section .main-number {
  font-size: 50px;
}

.strategic-section .title {
  font-size: 42px;
  line-height: 50px;
  width: 78%;
  margin-bottom: 55px;
}

.strategic-section .metric-number {
  font-size: 50px;
}


.strategic-section .main-description {
  font-size: 13px;
}
}

@media (max-width: 576px) {
.strategic-section .title {
  font-size: 36px;
  line-height: 44px;
  width: 100%;
  margin-bottom: 40px;
}

.strategic-section .d-flex.flex-column {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.strategic-section .metrics-row {
  display: contents;
}

.strategic-section .main-wrapper,
.strategic-section .bordered-col,
.strategic-section .metrics-row>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strategic-section .bordered-col::after {
  display: none;
}

.strategic-section .metric-item {
  align-items: center;
}

.strategic-section .metric-description {
  text-align: center;
  max-width: 200px;
  margin: 15px 0 25px 0;
}

.strategic-section .ball {
  width: 100px;
  height: 100px;
}

.strategic-section .main-number {
  font-size: 44px;
}

.strategic-section .metric-number {
  font-size: 44px;
}
}

@media (max-width: 441px) {
.strategic-section {
  padding: 50px 0 60px 0;
}

.strategic-section .title {
  font-size: 32px;
  line-height: 40px;
}

.strategic-section .ball {
  width: 90px;
  height: 90px;
}

.strategic-section .main-number,
.strategic-section .metric-number {
  font-size: 40px;
}
}

@media (max-width: 390px) {
.strategic-section .title {
  font-size: 24px;
  line-height: 32px;
}

.strategic-section .ball {
  width: 80px;
  height: 80px;
}

.strategic-section .main-number,
.strategic-section .metric-number {
  font-size: 36px;
}

.strategic-section .main-percent,
.strategic-section .metric-percent {
  font-size: 18px;
}

.strategic-section .main-description {
  font-size: 10px;
}

.strategic-section .metric-description {
  font-size: 12px;
}
}

@media (max-width: 360px) {
.strategic-section .title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
}

.strategic-section .metrics-row {
  gap: 30px;
}
}

@media (max-width: 320px) {
.strategic-section {
  padding: 40px 0 30px 0;
}

.strategic-section .title {
  font-size: 22px;
  line-height: 30px;
}

.strategic-section .ball {
  width: 70px;
  height: 70px;
}

.strategic-section .main-number,
.strategic-section .metric-number {
  font-size: 32px;
}

.strategic-section .main-description,
.strategic-section .metric-description {
  font-size: 12px;
}

.strategic-section .metric-description {
  max-width: 189px;
  margin: 8px 0 12px 0;
}
}

/*Strategic section ends*/
/* Cursor effect starts */
#custom-cursor {
position: fixed;
top: 0;
left: 0;
width: 90px;
height: 90px;
padding: 35px 14px;
border-radius: 51.5px;
background: #12121280;
opacity: 1;
pointer-events: none;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
transform: translate(-50%, -50%) scale(0);
transition: transform 0.25s ease, opacity 0.25s ease;
}


#custom-cursor.visible {
transform: translate(-50%, -50%) scale(1);
opacity: 1;
}

/* TEXT STYLING */
.cursor-text {
font-family: "Inter Display";
font-weight: 500;
font-size: 12px;
line-height: 15px;
text-align: center;
color: #ffffff;
user-select: none;
}

#custom-cursor.visible {
transform: translate(-50%, -50%) scale(1.05);
}

.case-card {
cursor: none !important;
}

.cta-wrapper {
cursor: pointer !important;
}

.sg-case-study.cursor-active,
.sg-case-study.cursor-active * {
cursor: none !important;
}

.sg-proven-section.cursor-active,
.sg-proven-section.cursor-active * {
cursor: none !important;
}

/* overflow Fix  */
@media screen and (min-width: 1366px) and (max-width: 1439px) {

.sg-proven-section .col-md-4>p.data-proven-point::after {
  left: -45px;
  width: 420px;
}

.sg-proven-section .col-md-7>p.proven-point::after {
  left: -25px;
  width: 700px;
}

.casestudy-grid .grid-container {
  height: 380px;
}
}

/* Animation Section starts */
/*About section */

.blur-split {
overflow: hidden;
}

.blur-split .word {
display: inline-block;
opacity: 0;
filter: blur(8px);
transform: translateY(25px);
transition:
  opacity 0.8s ease,
  filter 0.8s ease,
  transform 0.8s ease;
}

.blur-split.active .word {
opacity: 1;
filter: blur(0);
transform: translateY(0);
}

/*Split text */
.split-title .char {
display: inline-block;
will-change: transform, opacity;
}

.split-title .gray-char {
color: #888;
}

.split-title .line {
overflow: hidden;
}

.split-title .word {
display: inline-block;
will-change: transform;
}

.precision-section.cursor-active,
.precision-section.cursor-active * {
cursor: none !important;
}

.intro-text {
color: var(--gray-400, #A8A8A8);
font-family: "IBM Plex Mono";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20.8px;
letter-spacing: 0.5px;
text-transform: uppercase;
padding-bottom: 15px;
}

@media (min-width: 1366px) {
.intro-text {
  font-size: 1.02vw;
  line-height: 1.52vw;
  letter-spacing: 0.04vw;
  padding-bottom: 1.1vw;
}
}
/* FOr Close Button */

/*Banner Animation */
.hero-video {
transition:
  transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
will-change: transform;
transform: translateZ(0);
}

.hero-video.shrink {
transform: scale(0.94) translateY(-20px);
}

.modal {
z-index: 1055 !important;
}

.modal-backdrop {
z-index: 1050 !important;
}

.custom-cursor {
transition: opacity 0.2s ease, transform 0.15s ease;
}

/* The chnages css */
/* Disable entire navbar menu */


.nav-item.dropdown-mega:hover .mega-menu-wrapper,
.nav-item.dropdown-mega .mega-menu-wrapper:hover,
.nav-item.dropdown-mega.active .mega-menu-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mega-menu-overlay,
.mega-menu-overlay.active {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

body.mega-menu-open {
  overflow: auto !important;
  position: static !important;
}

.nav-item.dropdown-mega:hover .dropdown-toggle::after,
.nav-item.dropdown-mega.active .dropdown-toggle::after {
  transform: none !important;
}

/* ── Coming Soon Tooltip ─────── */
.coming-soon-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #171717;
  color: #fff;
  font-family: "Inter Display", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 2000;
  box-shadow: 0 2px 0 0  #FB8454, 0 6px 20px rgba(0,0,0,0.25);
}

.coming-soon-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #171717;
}

.nav-item.dropdown-mega:hover .coming-soon-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown-mega.tooltip-active .coming-soon-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0);
}