/* - Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --col-pr: #a84300;
  --col-sc: #18036a;
  --col-dr: #040012;
  --col-dr2: #4f4d59;
  --col-lt: #eae6f7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-size: 2.4rem;
  overflow-x: hidden;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

::selection {
  background-color: var(--col-lt);
  /* Change this to your desired highlight color */

  color: black;
  /* Change this to your desired text color */
}

.link:is(:link, :visited) {
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: min-content;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--col-dr);
}

.link:is(:hover, :active) {
  cursor: pointer;
}

.link.btn {
  border: none;
  position: relative;
  align-items: center;
  gap: 2.4rem;
  font-size: 3rem;
  padding: 2rem 6.4rem;
  border-radius: 0.8rem;
  color: #fff;
  overflow: hidden;
  z-index: 3;
}

.link.btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  border-radius: 50% 50% 0 0;
  background: var(--col-sc);
  transform: scale(1.1);
  width: 100%;
  height: 0;
  transition: height 0.5s;
  z-index: -1;
}

.link.btn:hover::after {
  height: 180%;
}

.link.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--col-pr);
  z-index: -2;
}

.nav-link {
  position: relative;
}

.nav-link:is(:link, :visited) {
  padding: 1rem 0;
  transition: all 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5rem;
  background: var(--col-pr);
  transition: all 0.3s;
}

.nav-link:is(:hover, :active) {
  color: var(--col-pr);
}

.nav-link:is(:hover, :active).nav-link::after {
  width: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 12.8rem 8rem;
}

.section-heading-s {
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--col-pr);
}

.section-heading-l {
  text-transform: capitalize;
  line-height: 1;
  font-size: 4.4rem;
  font-weight: 600;
  color: var(--col-dr);
  margin-bottom: 6.4rem;
}

.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0.8rem 2rem #00000020;
  height: 12rem;
  background-color: white;
}
