
html {
  /* percentage of users browser font size setting */
  /* 10px/16px = 0.625 or 62.5% */
  font-size: 62.5%;
  overflow-x: hidden;
  /* does not work in Safari*/
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.05;
  font-weight:700;
  color: #04121f;
  overflow-x: hidden;
}
.heading-home{
  font-size: 7.4rem;
  line-height: 1;
  margin-bottom: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.heading-primary{
  font-size: 6rem;
  line-height: 1.2;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: capitalize;
}
.heading-secondary {
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4rem;
  line-height: 1.3;
  text-transform: capitalize;
}
.heading-tertiary {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 4.4rem;
  line-height: 1.6;
  text-transform: capitalize;
}
.sub-heading {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #2D60FF;
  font-weight: 700;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.sub-heading-grn {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #00D8A6;
  font-weight: 700;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.copy1{
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1.2px;
  margin-bottom: 4.4rem;
  line-height: 1.6;
}
.copy2{
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.9px;
  line-height: 1.6;
  padding-bottom:2rem;
}
.copy3{
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.9px;
  line-height: 1.4;
}
.btn,
.btn:link,
.btn:visited {
  font-size: 2rem;
  padding: 2rem 3.4rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 240px;
  height:68px;
}
.btn--dark:link,
.btn--dark:visited {
  background-color: #2D60FF;
  color: #fff;
  transition: all 0.8s;
   padding-left: 3.4rem;
  padding-right: 3.4rem;
  width: 240px;
  height:68px;
}

.btn--dark:hover,
.btn--dark:active {
  background-color: #1A4EFF;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn--light{
  background-color: #00D8A6;
  color: #ffffff;
  transition: all 0.8s;
  padding-left: 3.4rem;
  padding-right: 3.4rem;
  width: 240px;
  height:68px;
}

.btn--light:hover,
.btn--light:active {
  background-color: #03b289;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn--form {
  background-color: #333333;
  color: #fef5e6;
  align-self: end;
  padding: 1.2rem;
  transition: all 0.3s;
}
.btn--form:hover {
  background-color: #ffffff;
  border: 1px solid #333333;
  color: #333333;
}
.btn-nav,
.btn-nav:link,
.btn-nav:visited {
  font-size: 1.6rem;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 180px;
  height: 48px;
  background-color: #2D60FF;
  color: #fff;
  transition: all 0.8s;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.link:hover,
.link:active {
  color: #333333;
  border-bottom: 1px solid transparent;
}
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F5F8FF;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.2rem;
}
.container2 {
  max-width: 160rem;
  margin: 0 auto;
  padding: 0 2.2rem;
}

.grid {
  display: grid;
  row-gap: 10rem;
  column-gap: 2.4rem;
}
.grid {
  display: grid;
  row-gap: 4rem;
  column-gap: 2.4rem;
}
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}
.grid--2-col {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20rem;
  text-align:left;
  column-gap: 4.4rem;
}
.grid--2-col-lr {
  grid-template-columns: 1fr 2fr;
  row-gap: 20rem;
  text-align:left;
  column-gap: 4.4rem;
}
.grid--3-col {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4-col {
  grid-template-columns: repeat(4, 1fr);
  padding:auto;
}
.grid--5-col {
  grid-template-columns: repeat(5, 1fr);
}

.grid--center-vertical {
  align-items: center;
}
/*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(0, 216, 166, 0.1);
}
/* START HELPER CLASSES*/

strong {
  font-weight: 500;
}
.margin-bottom-me {
  margin-bottom: 4.8rem !important;
}
.center {
  text-align: center;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}
.list-icon {
  width: 3rem;
  height: 3rem;
  color: #a15300;
}
/* END HELPER CLASSES*/
/* GENERAL CLASS*/
.headline-d{
  letter-spacing: -0.5px;
  margin-bottom: 4.4rem;
  color: #04121f;
  position: relative;
}
.headline-d::after {
      content: "";
      display: block;
      width: 50%;
      opacity:0.8;
      height: 4px;
      margin-top: 8px;
      border-radius: 2px;
      background-image: linear-gradient(to right, #2D60FF, #7D23FE, #00D8A6);
      background-size: 100% 100%;
      animation: growLine 0.6s ease-out forwards;
      animation: growLine 0.6s ease-out forwards;
      transform: scaleX(0);
      transform-origin: left;
}
.headline-l{
  margin-bottom: 4.4rem;
  color: #f0f3f2;
  position: relative;
  text-align:left;

}
.headline-l::after {
      content: "";
      display: block;
      width: 60%;
      opacity:0.8;
      height: 6px;
      margin-top: 8px;
      border-radius: 2px;
      background-image: linear-gradient(to right, #2D60FF, #7D23FE, #00D8A6);
      background-size: 100% 100%;
      animation: growLine 0.6s ease-out forwards;
      animation: growLine 0.6s ease-out forwards;
      transform: scaleX(0);
      transform-origin: left;
}
.headline-d-left{
  margin-bottom: 4.4rem;
  color: #04121f;
  position: relative;
}
.headline-d-left::after {
      content: "";
      display: block;
      width: 20%;
      margin:0 auto;
      opacity:0.8;
      height: 6px;
      margin-top: 10px;
      border-radius: 2px;
      background-image: linear-gradient(to right, #2D60FF, #7D23FE, #00D8A6);
      background-size: 100% 100%;
      animation: growLine 0.6s ease-out forwards;
      animation: growLine 0.6s ease-out forwards;
      transform: scaleX(0);
      transform-origin: left;
}
.headline-l-left{
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 4.4rem;
  color: #f0f3f2;
  position: relative;
  text-align:center;
}
.headline-l-left::after {
      content: "";
      display: block;
      width: 40%;
      margin:0 auto;
      opacity:0.8;
      height: 6px;
      margin-top: 10px;
      border-radius: 2px;
      background-image: linear-gradient(to right, #2D60FF, #7D23FE, #00D8A6);
      background-size: 100% 100%;
      animation: growLine 0.6s ease-out forwards;
      animation: growLine 0.6s ease-out forwards;
      transform: scaleX(0);
      transform-origin: center;
}
@keyframes growLine {
      to {
        transform: scaleX(1);
      }
    }
.copy-d{
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.9px;
  line-height: 1.6;
  padding-bottom:2rem;
  color: #04121f;
  font-weight:300; 
}
.sub-headline{
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #2D60FF;
  font-weight: 600;
  margin-bottom: 2.2rem;
  letter-spacing: 0.75px;
}
.sub-head{
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #2D60FF;
  font-weight: 600;
  margin-bottom: 2.2rem;
  letter-spacing: 0.75px;
}
