body {
  font-family: "Poppins", sans-serif;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body.modal-active {
  overflow: hidden;
}

section {
  margin-bottom: 32px;
}

.flex-gap-none {
  gap: 0% !important;
}

/* COLORS */

.c-blue {
  color: #0059d6;
}

.c-gray {
  color: #626364;
}

.logo-text {
  font-size: 32px;
  color: #0059d6;
  font-weight: 800;
  line-height: 1.15;
  font-family: sans-serif;
}

/* Navigation */
.nav-top {
  position: fixed;
  top: 0;
  width: calc(100% - 20%);
  background-color: white;
  z-index: 1000;
  padding: 2% 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  padding: 8px 16px;

  position: fixed;
  background-color: white;
  width: 100%;
  z-index: 100;
}

#hamburger-icon .bars {
  margin-right: 32px;
}
#hamburger-icon .bars div {
  width: 35px;
  height: 3px;
  background-color: #0059d6;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  height: 200px;
  width: 100%;
  padding-left: 0;
  background-color: #fff;
  margin-top: -1px;
}

.mobile-menu li {
  margin-bottom: 10px;
}

.nav-top-mobile {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 25px;
  display: none;
  background: white;
  transition: box-shadow 1s ease-in;
}

.nav-top-mobile::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  box-shadow: 0 0 5px 0 rgba(53, 53, 53, 0.2);
  opacity: 1;
  transition: opacity 2000ms;
}

.nav-active .nav-top-mobile::before {
  opacity: 0;
  transition: opacity 500ms;
}

.nav-link.active {
  background-color: #1384ec;
  color: #ffffff;
}

.nav-top-right a:hover.active {
  background-color: #1384ec;
}

.logo-desktop {
  width: 200px;
}

.menu-logo {
  position: fixed;
  z-index: 2;
  cursor: pointer;
  display: none;
}

.nav-top-left {
  display: flex;
  flex-direction: row;
}

.nav-top-mobile .nav-top-left {
  height: calc(100% - 32px);
  width: auto;
  padding-bottom: 15px;
}

.logo-mobile {
  width: 150px;
}

.nav-top-right a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0px 10px;
  text-align: center;
  font-weight: 500;
}

.nav-top-right a:hover,
.foot-right a:hover {
  background: #ffffff;
  box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.highlighted {
  color: white !important;
  background-color: #ee3d23;
  border-radius: 25px;
  text-align: center;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  box-shadow: 0 10px 30px 0px rgba(238, 61, 35, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(238, 61, 35, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(238, 61, 35, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(238, 61, 35, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(238, 61, 35, 0.5);
}

.highlighted:hover {
  background-color: #fac92b;
  box-shadow: 0 10px 30px 0px rgba(250, 201, 43, 0.5);
  -moz-box-shadow: 0 10px 30px 0px rgba(250, 201, 43, 0.5);
  -webkit-box-shadow: 0 10px 30px 0px rgba(250, 201, 43, 0.5);
  -o-box-shadow: 0 10px 30px 0px rgba(250, 201, 43, 0.5);
  -ms-box-shadow: 0 10px 30px 0px rgba(250, 201, 43, 0.5);

  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

/* Mobile navbar 100% */

.menu-icon {
  height: 30px;
  width: 30px;
  position: fixed;
  z-index: 2;
  left: 30px;
  cursor: pointer;
  display: none;
}

.menu-icon-divider {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #000000;
  margin-bottom: 4px;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}

.menu-icon-divider-left {
  width: 15px;
}

.menu-icon-divider-right {
  width: 15px;
  float: right;
}

.nav {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 1;
  transition: opacity 1s;
}

.nav-active .nav {
  opacity: 1;
}

.nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s,
    -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transform: translateX(0%) translateY(-100%);
  transform: translateX(0%) translateY(-100%);
}

.nav:after {
  background: white;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav:before {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.nav-menu {
  position: fixed;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(2vw + 10px);
  font-weight: 200;
  cursor: pointer;
}

.nav-menu-list {
  padding: 0;
}

.list-item {
  position: relative;
  display: flow-root;
  margin: 4% 0;
}

.list-item a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.list-item:hover a {
  color: #ee3d23;
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

body.nav-active .menu-icon-divider {
  background-color: #000;
  -webkit-transform: translateX(0px) rotate(-45deg);
  transform: translateX(0px) rotate(-45deg);
}

body.nav-active .menu-icon-divider-left {
  -webkit-transform: translateX(1px) rotate(45deg);
  transform: translateX(1px) rotate(45deg);
}

body.nav-active .menu-icon-divider-right {
  -webkit-transform: translateX(-2px) rotate(45deg);
  transform: translateX(-2px) rotate(45deg);
}

body.nav-active .nav {
  visibility: visible;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
}

body.nav-active .nav:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

body.nav-active .list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
}

body.nav-active .list-item:nth-child(0) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

body.nav-active .list-item:nth-child(1) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

body.nav-active .list-item:nth-child(2) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

body.nav-active .list-item:nth-child(3) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

body.nav-active .list-item:nth-child(4) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

/* Landing Quote */
.landing-quote {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.quote-container h1 {
  width: fit-content;
  font-size: 50px;
  margin: 5px auto;
  font-weight: 500;

  color: #1384ec;

  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-container .heksa-gradient {
  background: -webkit-linear-gradient(0deg, #ee3d23, #fac92b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  padding-bottom: 5%;
}

.section-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3%;
  margin-bottom: 64px;
}

.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 75px;
  padding: 0 10%;
}

#reach-us .section-title {
  margin-bottom: 15px;
}

.section-title .title-strikethrough {
  line-height: 1.15;
  border-bottom: 2px solid #0059d6;
  margin-bottom: 29px;
  flex-grow: 1;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin: 16px 8px;
  color: #626364;
}

.section-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 45%;
  height: 515px;
  flex-basis: 50%;
  margin-bottom: 64px;
}

.section-card-title {
  font-size: 21px;
  line-height: 1.15;
  color: #9e9e9e;
  text-align: center;
}

.section-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  /* max-width: 310px;
  max-height: 310px; */
  margin: 1.5% 0 0;
  gap: 15px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
  background: url("../img/work-image.jpg") no-repeat center center/cover;
}

.section-card.product {
  background: url("../img/our-work/product-management.jpg") no-repeat center
    center/cover;
}

.section-card.planning {
  background: url("../img/our-work/planning.jpg") no-repeat center center/cover;
}

.section-card.membership {
  background: url("../img/our-work/membership.jpg") no-repeat center
    center/cover;
}

.section-card.running {
  background: url("../img/our-work/running.jpg") no-repeat center center/cover;
}

.section-card.granada {
  background: url("../img/our-work/granada.jpg") no-repeat center center/cover;
}

.section-card.sermon {
  background: url("../img/our-work/sermon.jpg") no-repeat center center/cover;
}

.section-card a {
  width: 100%;
  text-transform: lowercase;
  text-align: center;
  font-style: normal;
  text-decoration: none;
  color: #1384ec;
  position: absolute;
  bottom: -2px;
}

.section-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: #ffffff; */
  opacity: 0;
  transition: opacity 1s;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

.section-card:hover:after {
  opacity: 1;
}

.section-card .card-content {
  margin: 16px;
  padding: 16px;
  opacity: 0;
  transition: opacity 1s;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(19, 132, 236, 0.85);
  height: 100%;
  width: calc(100% - 64px);
  border-radius: 16px;
  color: #fff;
}

.section-card .card-content p {
  padding: 0;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 16px;
}

.section-card span {
  font-size: 14px;
  font-weight: 500;
}

.section-card.enabled .card-content {
  opacity: 1;
}

.card-content h2 {
  font-size: 19px;
  font-weight: 600;
  margin: 1% 0;
}

.card-content ul {
  margin: 0;
  padding-left: 5%;
}

.card-title {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 5%;
}

.card-title-image {
  display: flex;
  align-items: center;
}
.card-title-image img {
  height: 32px;
  width: 32px;
}
.card-title-text {
  font-size: 24px;
  font-weight: 600;
}

.technology-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  padding-left: 16px;
}

.technology-list > div {
  display: flex;
  align-items: center;
  height: 36px;
  margin-bottom: 16px;
  min-width: 20%;
  font-size: 14px;
}

.technology-list > div img {
  height: 36px;
  width: auto;
  margin-right: 8px;
}

.technology-list > div img.c-sharp-img {
  background-color: #ffffff;
  border-radius: 18px;
}

.service-container {
  display: flex;
  flex-direction: column;
  margin: 0px 1.5% 64px;
  width: 20%;
  min-height: 525px;
  padding: 16px 1%;
  background: #ffffff;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

.service-container .service-title {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #0059d6;
}

.service-container .service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #626364;
  flex-grow: 1;
}

.service-container .service-content .service-text {
  font-size: 16px;
  line-height: 1.15;
}

.service-container .service-content .service-image {
  padding: 16px 0px 32px;
  display: flex;
  justify-content: center;
}

.service-container .service-content .service-image img {
  width: 70%;
  height: auto;
}

/* MODAL */
#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 1000;
}
#modal-container.unfold {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.unfold .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.unfold.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.unfold.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  vertical-align: middle;
}
#modal-container .modal-background .modal {
  display: inline-flex;
  flex-direction: column;
  background: white;
  padding: 32px;
  border-radius: 3px;
  font-weight: 300;
  position: relative;

  height: 60vh;
  width: 60vw;

  border-radius: 16px;

  z-index: 10000;
}

#modal-container .modal-background .modal .close-button {
  position: absolute;
  right: 16px;
  top: 12px;
  cursor: pointer;
}

#modal-container .modal-background .modal .close-button:after {
  display: inline-block;
  content: "\00d7";
  color: #9e9e9e;
  font-size: 32px;
  line-height: 1;
}

#modal-container .modal-background .modal .case-title {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 15px;
  color: #626364;
}
#modal-container .modal-background .modal .case-content {
  font-size: 16px;
  line-height: 1.15;
  text-align: start;
}

#modal-container .modal-background .modal .case-features {
  font-size: 16px;
  line-height: 1.15;
  text-align: start;
  overflow: auto;
  min-height: 50%;
  flex-grow: 1;
  margin-bottom: 16px;
}

#modal-container
  .modal-background
  .modal
  .case-features
  .case-features-list
  li {
  margin-bottom: 8px;
}

#modal-container
  .modal-background
  .modal
  .case-features
  .case-features-list
  li
  span {
  font-weight: 600;
}

#modal-container
  .modal-background
  .modal
  .case-features
  .case-features-list
  li
  p {
  margin: 0;
}

#modal-container .modal-background .modal .case-technology {
  font-size: 16px;
  line-height: 1.15;
  text-align: start;
}

#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}
#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@keyframes scaleBack {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}

@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes slideUpLarge {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes slideDownLarge {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(150px);
  }
}

@keyframes blowUpContent {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  99.9% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(0);
  }
}

@keyframes blowUpContentTwo {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blowUpModal {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes blowUpModalTwo {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes roadRunnerIn {
  0% {
    transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
  }
  70% {
    transform: translateX(30px) skewX(0deg) scaleX(0.9);
  }
  100% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }
}

@keyframes roadRunnerOut {
  0% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }
  30% {
    transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
  }
  100% {
    transform: translateX(1500px) skewX(30deg) scaleX(1.3);
  }
}

@keyframes sketchIn {
  0% {
    stroke-dashoffset: 778;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes sketchOut {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 778;
  }
}

@keyframes modalFadeIn {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: white;
  }
}

@keyframes modalFadeOut {
  0% {
    background-color: white;
  }
  100% {
    background-color: transparent;
  }
}

@keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 0;
    top: -20px;
  }
}

@keyframes bondJamesBond {
  0% {
    transform: translateX(1000px);
  }
  80% {
    transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px;
  }
  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px;
  }
  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px;
  }
}

@keyframes killShot {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(300px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fadeToRed {
  0% {
    background-color: rgba(black, 0.6);
  }
  100% {
    background-color: rgba(red, 0.8);
  }
}

@keyframes slowFade {
  0% {
    opacity: 1;
  }
  99.9% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

/* Contact Form */

.form-class {
  padding: 0 10%;
  margin-bottom: 64px;
}

.f-body {
  margin: 0;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  padding-bottom: 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  max-width: 100%;
}

.f-form-group {
  margin-bottom: 1rem;
}

.f-form-row {
  display: flex;
  justify-content: center;
  gap: 128px;
}

.f-form-row > div {
  display: flex;
  align-items: end;
  font-size: 16px;
  line-height: 2;
}

.f-form-row img {
  height: 32px;
  width: auto;
  margin-right: 8px;
}

.f-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.f-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  outline: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.f-form-control:focus {
  border: 1px solid #313131;
}

select.f-form-control[size],
select.f-form-control[multiple] {
  height: auto;
}

textarea.f-form-control {
  font-family: -apple-system, Arial, sans-serif;
  height: auto;
}

label.f-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0059d6;
  text-transform: uppercase;
}

.f-credit {
  padding-top: 10px;
  font-size: 0.9rem;
  color: #545b62;
}

.f-credit a {
  color: #545b62;
  text-decoration: underline;
}

.f-credit a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.f-btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .f-btn {
    transition: none;
  }
}

.f-btn:hover {
  color: #212529;
  text-decoration: none;
}

.f-btn:focus,
.f-btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.f-btn-primary {
  color: #fff;
  background-color: rgba(0, 89, 214, 0.8);
  border-color: rgba(0, 89, 214, 0.8);
}

.f-btn-primary:hover {
  color: #fff;
  background-color: #0059d6;
  border-color: #0059d6;
}

.f-btn-primary:focus,
.f-btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.f-btn-lg,
.f-btn-group-lg > .f-btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.f-btn-block {
  display: block;
  width: 100%;
}

.f-btn-block + .f-btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].f-btn-block,
input[type="reset"].f-btn-block,
input[type="button"].f-btn-block {
  width: 100%;
}
.form-wrapper-component {
  background-color: white !important;
}
.form-wrapper-component .form-content-component {
  width: 80%;
  max-width: 90%;
}

.scroll-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}

@media screen and (max-width: 1200px) {
  .service-container {
    width: 45%;
  }
}

@media screen and (max-width: 900px) {
  .nav-top {
    display: none;
  }

  .nav-top-mobile {
    display: flex;
  }

  #hamburger-icon {
    display: flex;
    justify-content: space-between;
  }

  .landing-quote {
    height: 300px;
  }
  .quote-container h1 {
    font-size: 36px;
    text-align: center;
  }

  .section-container {
    flex-direction: column;
    align-items: center;
  }

  .section-container .section-card-container {
    width: 100%;
    max-width: 90%;
    height: auto;
    min-height: 500px;
    margin-bottom: 64px;
  }

  .section-card {
    flex-grow: 1;
  }

  .section-card .card-content {
    width: calc(100% - 64px);
    flex-grow: 1;
  }

  .section-container .service-container {
    width: 75%;
    padding: 16px 16px;
  }

  .section-container .service-container p {
    padding: 16px;
  }
}

@media screen and (max-width: 600px) {
  .quote-container {
    padding: 0 2%;
  }
  .section-card {
    height: 100%;
  }

  .section-card .card-content {
    height: 100%;
  }

  .section-title {
    margin-bottom: 36px;
  }
  .section-container .section-card-container {
    margin-bottom: 32px;
  }
  .section-card .card-content p,
  .card-content h2 {
    font-size: 16px;
  }
  .section-card .card-content ul li {
    font-size: 14px;
  }
  .tech-info {
    margin-top: 16px;
  }
  .technology-list > div {
    margin-bottom: 8px;
  }
  .technology-list > div img {
    height: 24px;
    margin-bottom: 0;
  }
  .f-form-row {
    gap: 5%;
  }
  .f-form-row img {
    height: 24px;
  }
  .f-form-row > div {
    font-size: 14px;
    line-height: 1.5;
  }
}
