/* ========= All FONTS ========= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

/* ========= Global CSS ========= */
:root {
  --primary-app-color: #8071b3;
  --secondary-app-color: #ffcc4f;
  --light-primary-app-color: #95d2f3;
}
html,
body {
  font-family: Quicksand-Regular, sans-serif, Helvetica;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.center {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}
a {
  color: aliceblue;
}
a:hover {
  color: var(--primary-app-color);
}
.color-primary-text {
  color: var(--primary-app-color);
  font-family: Quicksand-Regular, sans-serif, Helvetica;
}

/* Navigation */
.navbar {
  font-family: "Montserrat", sans-serif;
}
.custom-btn-color {
  background-color: var(--primary-app-color);
  color: #fff;
}
.custom-btn-color:hover {
  color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
.custom-btn-color-secondary {
  background-color: #444549;
  color: #fff;
}
.custom-btn-color-secondary:hover {
  color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
/* Herosection */
.herosection-section {
  padding-block: 13rem;
}
.herosection-heading {
  font-weight: 700;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
/* Our Shop */
.custom-card {
  border-top-left-radius: 25%;
  border-bottom-right-radius: 25%;
  overflow: hidden;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.ourshop-section {
  background: #e7ebee;
}
/* In the Press Section */
.in-the-press-section {
  padding-bottom: 5rem;
  background: #f0f1f4;
}
.headings {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 30px;
}
.sub-headings {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
/*============= TOP SCROLL =============*/
.top-scroll {
  background-color: #acacac;
  padding-inline: 1rem;
  padding-block: 0.5rem;
}
.top-scroll svg.svg-inline--fa {
  font-size: 3rem;
  height: 1.7rem;
  color: #53595f;
  background: white;
}
a.top-scroll {
  right: 1.2rem;
  bottom: 1.2rem;
  position: fixed;
  opacity: 0.8;
  z-index: 1000;
  display: none;
}
a.top-scroll:hover {
  opacity: 0.5;
}
.custom-active {
  color: var(--primary-app-color);
}
/* ========= Footer ========= */
.custom-footer {
  font-family: "Quicksand", sans-serif;
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #444549;
  color: #fff;
  font-size: 16px !important;
}
.socket {
  width: 30%;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 0;
}

/* ========= MEDIA QUERIES ========= */
/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .for-mobile {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
  }
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* // XX-Large devices (larger desktops) */
/* // No media query since the xxl breakpoint has no upper bound on its width */
