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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #14171F;
  overflow-x: hidden;
}
:root{
  --primary-color:#fff;
  --secoundry-color:#232126;
  --tertiary-color:#3D455C;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 5rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  margin-bottom: 3.2rem;
  text-transform: capitalize;
  color: var(--primary-color);
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: var(--secoundry-color);
}
.section-title{
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.6;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.btn{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 1rem;
}
.jalso-primary-btn{
  color: #fff;
  background-color:#9F52F4 ;
  padding: 1.2rem 3.6rem;
  
}
.jalso-primary-btn:hover{
  color: #fff;
}

.jalso-secoundry-btn{
  color: #9F52F4;
  background-color:#fff;
  padding: 1.6rem 5.6rem;
}
.jalso-secoundry-btn:hover{
  color: #9F52F4;
}


/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}

.dark-color{
  color: var(--secoundry-color);
}
.white-color{
  color: #fff !important;
}

.link-mb{
  margin-bottom: 1.6rem;
}