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

:root {
  --primary: #3a1467;
  --secondary: #0080003b;
  --white: #fff;
  --black: #000;
  --text: #666;
  --grey: #3a146614;
  --container: 1280px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

body, html {
  font-size: 16px;
}

textarea {
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
}

p, strong, a, li {
  color: var(--text);
  line-height: 1.3;
  font-family: "Poppins", serif;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Kugile";
  line-height: 1.3 !important;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid var(--primary);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  font-size: 14px;
}
.btn.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}
.btn.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 14px;
}
.btn.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.heading h3 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary);
}

.fixed-media {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 20px;
}
.fixed-media .btn {
  border-radius: 50px;
  color: var(--white);
}
.fixed-media .wts {
  padding: 8px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s ease;
}
.fixed-media .wts svg {
  width: 24px;
  display: block;
}
.fixed-media .wts svg path {
  fill: var(--white);
}/*# sourceMappingURL=comman.css.map */