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

:root {
  --clr-theme: #123251;
  --clr-darkgrey: #4b4b4b;
  --clr-black: #000000;
  --clr-lightblue: #def2ff;
  --clr-white: #ffffff;
  --clr-grey: #f0f0f0;

  --fw-bold: 700;
  --fw-regular: 400;

  --fs-700: 2.063rem;
  --fs-600: 2.375rem;
  --fs-500: 1.5rem;
  --fs-body: 1rem;
  --fs-btn: 1rem;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--clr-darkgrey);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--clr-theme);
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

h1 {
  font-size: var(--fs-700);
}

h2 {
  font-size: var(--fs-600);
}

h3 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-500);
}

li {
  list-style: none;
}

.btn {
  box-shadow: none;
  outline: 0;
  border: none;
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.cta-btn {
  background: var(--clr-theme);
  font-size: var(--fs-btn);
  color: var(--clr-white);
  border-radius: 3.563rem;
  padding: 0.5em 1.1em;
  line-height: 1.6;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.cta-btn:hover {
  color: var(--clr-white);
}

.section-padding {
  padding: 4rem 0;
}

.text-grey {
  background-color: var(--clr-grey);
}

.banner-section {
  background: url(./img/banner-bg.png) no-repeat,
    url(./img/ellipse1.png) no-repeat, var(--clr-lightblue);
  background-size: 50%, 10%;
  background-position: left top, right top -3%;
  padding-top: 5rem;
}

.banner-bg {
  background: url("./img/banner-img.png") no-repeat right bottom 0;
  background-size: 45%;
  height: 30rem;
  display: flex;
  align-items: center;
}

.banner-row {
  max-width: 580px;
}

.services-section h2 {
  max-width: 39ch;
  margin: auto;
}

.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.sprite {
  display: inline-block;
  background-image: url(./img/netsuite-sprite.png);
}

.bg-financial_icon {
  width: 67px;
  height: 67px;
  background-position: -98px -10px;
}

.bg-manufacturing_icon {
  width: 68px;
  height: 68px;
  background-position: -10px -10px;
}

.process-text {
  font-size: 1.25rem;
}

/* media queries */

@media screen and (min-width: 1600px) {
  :root {
    --fs-700: 2.5rem;
    --fs-600: 2.875rem;
    --fs-500: 1.625rem;
    --fs-body: 1.125rem;
    --fs-btn: 1.125rem;
  }

  .container {
    max-width: 1440px;
  }

  .banner-row {
    max-width: 636px;
  }

  /* .banner-section {
    background-position: left top, right top -38%;
  } */
}

@media screen and (max-width: 1199px) {
  :root {
    --fs-700: 1.75rem;
    --fs-600: 1.75rem;
    --fs-500: 1.5rem;
  }


  .banner-section{
    background-position: left top, right top 4%;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --fs-700: 1.5rem;
    --fs-600: 1.5rem;
    --fs-500: 1.375rem;
  }

  .process-section h2 {
    max-width: 28ch;
    margin: auto;
  }

  .process-text {
    font-size: 1.125rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .banner-section {
    background-position: left top, right top 12%;
}

}

@media screen and (max-width: 767px) {
  .container {
    max-width: 95%;
  }

  .process-text {
    font-size: 1.125rem;
  }

  .bannerImg {
    width: 400px;
    padding-top: 2rem;
  }

  .banner-section {
    background-image: none;
}
}

@media screen and (max-width: 575px) {
  :root {
    --fs-700: 1.375rem;
    --fs-600: 1.375rem;
    --fs-body: 0.938rem;
    --fs-btn: 0.875rem;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: auto;
  }

  .process-text {
    font-size: 16px;
  }
}
