/*Font*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --red: #ff3838;
  --text-dark: #2f2f2f;
  --text-muted: #5f6368;
  --surface: #ffffff;
  --radius-md: 1.2rem;
  --shadow-soft: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.14);
}

section {
  padding: 6rem 9% 4.5rem;
}

.heading {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.2;
  padding: 1rem 0 2.4rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.heading span {
  color: var(--red);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  list-style: none;
  outline: none;
  text-transform: capitalize;
  transition: all 0.2s ease;
}

*::selection {
  background: var(--red);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background-color: #f7f7f7;
  color: var(--text-dark);
  line-height: 1.6;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 56, 56, 0.35);
  outline-offset: 2px;
}

/* .loader-container{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loader-container.fade-out{
    top: -120%;
} */

/*Media Queries*/
