/* FONT IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ROOT VARIABLES */
:root {
  --var-main-font: "Outfit";
  --var-text-color: #333;
  --var-white-color: #fff;
  --var-primary-color: #003566;
  --var-accent-color: #ffd60a;
}

/* GENERAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--var-main-font), sans-serif;
}

a,
button {
  text-decoration: none !important;

  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  color: #333;
  background: var(--var-accent-color);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  align-items: center;
  justify-content: center;

  position: relative;
}
.theme-btn:hover {
  background: var(--var-accent-color);
  color: #333;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}
.header.sticky {
  filter: drop-shadow(0px 12px 12px rgba(37, 37, 37, 0.7));
}
/* HEADER */
