*,
::after,
::before {
  box-sizing: border-box;
}
/* fonts */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,800;1,900&family=Open+Sans:wght@400;500;700&display=swap");

html {
  font-size: 100%;
} /*16px*/

:root {
  /* colors */
  --primary-100: #e2e0ff;
  --primary-200: #c1beff;
  --primary-300: #a29dff;
  --primary-400: #837dff;
  --primary-500: #645cff;
  --primary-600: #504acc;
  --primary-700: #3c3799;
  --primary-800: #282566;
  --primary-900: #141233;

  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* rest of the colors */
  --black: #000;
  --white: #fff;
  --orange: #ea600a;
  --saffron: #f39837;
  --peru: #c1913d;
  --middle-yellow-red: #e1be77;
  --dark-silver: #726a6a;

  /* fonts  */
  --headingFont: "Montserrat", sans-serif;
  --bodyFont: "Nunito", sans-serif;
  --small-text: 0.875rem;
  --extra-small-text: 0.7em;
  /* rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--dark-silver);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background: var(--backgroundColor);
  font-family: var(--bodyFont);
  font-weight: 400;
  line-height: 1.75;
  color: var(--textColor);
}

p {
  margin-bottom: 1.5rem;
  max-width: 40em;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

small,
.text-small {
  font-size: var(--small-text);
}

a {
  text-decoration: none;
  color: var(--dark-silver)
}
ul {
  list-style-type: none;
  padding: 0;
}

.img {
  width: 100%;
  display: block;
  object-fit: cover;
}
/* buttons */

.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--primary-500);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block;
}
.btn:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-3);
}
.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200);
}
.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700);
}
.btn-block {
  width: 100%;
}

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius);
}

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light);
}
.alert-success {
  color: var(--green-dark);
  background: var(--green-light);
}
/* form */

.form {
  width: 90vw;
  max-width: var(--fixed-width);
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
}
.form-label {
  display: block;
  font-size: var(--small-text);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200);
}

.form-row {
  margin-bottom: 1rem;
}

.form-textarea {
  height: 7rem;
}
::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}
.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
}
/* alert */

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite;
}
.loading {
  margin: 0 auto;
}
/* title */

.title {
  text-align: center;
}

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: -1rem;
}

/* global styles */
.section {
  padding-block: 5rem;
  background: var(--grey-100);
  /* border: 1px solid blue */
}

.section-center {
  width: 90vw;
  max-width: 1720px;
  margin: 0 auto;
  /* border: 1px solid red; */
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 8rem);
  font-weight: bold;
  background: var(
    --orange-gradient,
    linear-gradient(228deg, #e1be77 -4.8%, #f39837 50.56%, #ea600a 115.17%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====================
=======================
Hero
=======================
===================== */

.hero {
  min-height: calc(100vh - 10rem);
  display: grid;
  place-items: center;
  padding-block: 1rem;
}

.hero-center {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
}

.logo {
  max-width: 400px;
  justify-self: center;
  margin-bottom: 2rem
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: bold;
  background: var(
    --orange-gradient,
    linear-gradient(228deg, #e1be77 -4.8%, #f39837 50.56%, #ea600a 115.17%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.hero .info {
  display: grid;
  place-items: center;
}

@media screen and (min-width: 768px) {
  .hero-center {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
  }
}

/* ====================
=======================
Footer
=======================
===================== */
.footer {
  padding: 0;
  height: 10rem;
  /* border: 1px solid blue; */
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}

.footer-center {
  display: grid;
  justify-content: stretch;
  /* border: 1px solid yellow; */
}

.footer .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  /* justify-content: center; */
  /* border: 1px solid green; */
}

.footer .content-1 {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 0.5rem;
}

.footer .content-2 {
  text-align: center;
  
}

.footer p {
  margin: 0;
  padding: 0;
}

.footer a {

  text-decoration: underline;
  transition: var(--transition);
  cursor: pointer;
}

.footer a:hover {
  color: var(--orange);
}

.footer-orange-bar {
  margin-top: 1rem;
  height: 2rem;
  background: var(
    --orange-gradient,
    linear-gradient(228deg, #e1be77 -4.8%, #f39837 50.56%, #ea600a 115.17%)
  );
}

@media screen and (min-width: 768px) {
  .footer .content {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
  }

  .footer .content-1{
    justify-content: start;
  }

  .footer .content-2{
    text-align: right;
    justify-self: end;
  }

}

/* ====================
=======================
Header
=======================
===================== */
.header{
  padding: 0;
  padding-block: 1rem;
}

.header-center{
  display: grid;
  justify-content: center;
  justify-items: center;
}
.header-logo{
  max-width: 300px;
  justify-content: center;
  margin-top: 2rem;
}

@media screen and (min-width: 768px){
  .header-center{
    /* justify-content: end; */
  }
}

/* ====================
=======================
Privacy Policy
=======================
===================== */
.page-content{
  padding-top:1rem;
}

.page-content .content{
  max-width: 800px;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  /* border: 1px solid yellow; */
  margin: 0 auto;
}

.page-content h1{
  text-align: center;
  margin-bottom: 3rem;
}


.page-content p, .page-content ul li{
  max-width: 100%;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--dark-silver);
  padding-bottom: 0;
  margin-bottom:0;
}

.page-content ul{
  list-style-type: disc;
  padding-left: 2.5rem;
}
.page-content li{
  padding-left: .5rem
}

.page-content h2{
  color: var(--orange);
  padding-bottom: 0;
  margin-bottom:0;
  margin-top: 3rem;
  font-size: clamp(1.5rem,3vw, 2rem)
}