/* 
Typo:
Size: 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
Weight: 
height:
spacing:

----
Clr:
Primary: #0e1133
Accent: #ff3e66 #ff5663
Tint: #eef1f6 #6e7085 ;
Shade: 
Grey: #6c6c72;
----
Shdw:  box-shadow: 0 2.4rem 3rem rgba(110, 112, 133, 0.3);

-----
B-radius:

-------
Space:
 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #0e1133;
}

/**************/
/* Reusables */
/************************/
.container {
  max-width: 130rem;
  padding: 0 6.5rem;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.grid--6-cols {
  grid-template-columns: repeat(6, 1fr);
}

.grid-active {
  grid-column: 1 / 3;
}

.heading-primary {
  font-size: 8rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.05;
}

.heading-secondary {
  font-size: 4.4rem;
  margin-bottom: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.05rem;
}

.supra-heading {
  color: #ff3e66;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sub-heading {
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c6c72;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.how-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  cursor: pointer;
  background: none;
  border: none;
}

.btn--base {
  display: block;
  border: 1px solid #bfbfc2;
  color: #0e1133;
  border-radius: 30px;
  transition: all 0.2s ease-in;
}

.btn--base:hover,
.btn-slider--base:hover {
  color: #bfbfc2;
  background-color: #0e1133;
  transform: scale(1.05);
}

.btn-slider {
  cursor: pointer;
  background: none;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
}

.btn-slider--base {
  color: #0e1133;
  border: 2px solid rgba(191, 191, 194, 0.26);
}

.sub-heading .btn.btn--base {
  display: flex;
  align-items: center;
}

.icon-arr-r {
  font-size: 1.8rem;
}

.icon-arr-r--s {
  font-size: 1.5rem;
}

.white {
  color: #fff !important;
}

.padding-x {
  padding: 0 37rem !important;
}
.center {
  text-align: center !important;
}
