:root {
  --blue-dark: #076780;
  --blue-dark-active: #043E4C;
  --blue-dark-dark: #03303B;
  --blue-light: #E6F3F7;
  --blue-surface-light: #F3F9FB;
  --dark: #546881;
  --dark-active: #3D4C5E;
  --dark-dark: #1D242D;
  --dark-lighter: #B2BBC6;
}


html {
  height: 100vh;
}

body {
  font-family: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
h5,
p,
hr {
  margin: 0;
}

h1 {
  font-size: 51px;
  line-height: 61.2px;
}

h2 {
  font-size: 38px;
  line-height: 45.6px;
}

h3 {
  font-size: 28px;
  line-height: 36.4px;
}

h4 {
  font-size: 21px;
  line-height: 27.3px;
}

h5 {
  font-size: 16px;
  line-height: 20.8px;
}

p {
  font-size: 16px;
  line-height: 24px;
}

input {
  min-width: 240px;
  border-radius: 8px !important;
  border: 1px solid var(--dark-lighter) !important;
  padding: 12px 16px !important;
}

textarea {
  min-width: 240px;
  border-radius: 8px !important;
  border: 1px solid var(--dark-lighter) !important;
  padding: 12px 16px !important;
}

.card:hover {
  background: linear-gradient(0deg, rgba(5, 82, 102, 0.7), rgba(5, 82, 102, 0.7)),
    linear-gradient(147.92deg, rgba(9, 137, 170, 0.41) -19.3%, rgba(90, 242, 55, 0.41) 122.55%);
}

.button-fill {
  position: relative;
  border: none;
  cursor: pointer;
  background: linear-gradient(326.37deg, #0989AA -11.83%, #5AF237 76.95%);
  color: white;
  z-index: 1;
}

.button-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px 1px 3px 1px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 300ms ease-out;
}

.button-fill:hover::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.3) 40%);
  padding: 1px 1px 3px 1px;
}

.button-fill:hover {
  background: linear-gradient(326.37deg, #0989AA66 -11.83%, #5AF23766 76.95%),
    linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
}

.button-fill-light {
  position: relative;
  border: none;
  cursor: pointer;
  background: white;
  z-index: 1;
}

.button-fill-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px 1px 3px 1px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 300ms ease-out;
}

.button-fill-light:hover::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.3) 40%);
  padding: 1px 1px 3px 1px;
}

.button-fill-light:hover {
  background: var(--blue-dark-dark);
}

.button-outline {
  position: relative;
  border: none;
  cursor: pointer;
  background: transparent;
  z-index: 1;
}

.button-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px;
  background: linear-gradient(135deg, #5AF237 10%, #0989AA 50%);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 300ms ease-out;
}

.button-outline:hover::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  padding: 1px 1px 3px 1px;
}

.button-outline:hover {
  background: linear-gradient(326.37deg, #0989AA -11.83%, #5AF237 76.95%);
}

.button-outline:hover .text-gradient {
  background: none;
  color: white;
  -webkit-text-fill-color: white;
}

.button-small {
  padding: 12px 24px;
  border-radius: 12px;
}

.button-small::before {
  border-radius: 12px;
}

.button-medium {
  padding: 14px 30px 16px 30px;
  border-radius: 16px;
}

.button-medium::before {
  border-radius: 16px;
}

.button-large {
  padding: 18px 36px 20px 36px;
  border-radius: 16px;
}

.button-large::before {
  border-radius: 16px;
}

.p-md {
  font-size: 18px;
  line-height: 27px;
}

.p-lg {
  font-size: 20px;
  line-height: 30px;
}

.bg-blue-dark {
  background-color: var(--blue-dark);
}

.bg-blue-dark-active {
  background-color: var(--blue-dark-active);
}

.bg-blue-dark-dark {
  background-color: var(--blue-dark-dark);
}

.bg-blue-surface-light {
  background-color: var(--blue-surface-light);
}

.text-dark {
  color: var(--dark) !important;
}

.text-dark-active {
  color: var(--dark-active) !important;
}

.text-gradient {
  background: linear-gradient(135deg, #5AF237 10%, #0989AA 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  background: linear-gradient(100deg, #5AF237 10%, white 30%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ellipse {
  background: linear-gradient(319.79deg, #0989AA 27.88%, #5AF237 91.27%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  filter: blur(130px)
}

.ellipse-2 {
  background: linear-gradient(319.79deg, #0989AA 27.88%, #5AF237 91.27%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  filter: blur(200px)
}

#hero-banner {
  background-color: #F3F9FB;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), url("/image/hero-banner.png");
  background-size: cover;
  width: 100%;
  height: 680px;
  border-bottom-left-radius: 7.5rem;
  border-bottom-right-radius: 7.5rem;
}

#who-we-are {
  position: relative;
  width: 100%;
  min-height: 738px;
  padding: 120px 0px;
  overflow-x: clip;
}

#about {
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 50px 0px 100px 0px;
  overflow-x: clip;
}

#our-services {
  min-height: 650px;
  overflow-x: clip;
}

#our-works {
  min-height: 650px;
  padding: 100px 0px;
}

#our-works .custom-element {
  cursor: pointer;
  padding: 16px 0px;
  border-radius: 24px;
}

#our-works .custom-element:not(.active):hover {
  padding: 16px 20px;
  border-left: 6px solid #5AF23733;
  transition: all 300ms ease-out;
}

#our-works .custom-element.active {
  background: linear-gradient(291.77deg, rgba(9, 137, 170, 0.07) 54.53%, rgba(90, 242, 55, 0.07) 80.73%);
  padding: 16px 20px;
}

#our-works .bg-circle {
  background-color: var(--blue-surface-light);
}

#our-works .custom-element.active .bg-circle {
  background-color: white;
}

#contact,
#contact .container-fluid {
  width: 100%;
  height: 100%;
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
  overflow-x: clip;
}