@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* Local Font - Calisto MT */
@font-face {
  font-family: "Calisto MT";
  src: url("../font/calist.ttf") format("truetype"),
    url("../font/Calisto MT Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font Family */
  --font-family-primary: "Manrope", sans-serif;
  --font-family-secondary: "Calisto MT", serif;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  --font-size-4xl: 52px;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --white: #ffffff;
  --black: #000000;
  --black_medium: #171717;
  --text-color: #333333;
  --heading-color: #1a1a1a;
  --blue: #2e3192;
  --grey: #e2e2e2;
  --blue-bg: #f0f8ff;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font-family-primary);
}
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.btn_i {
  font-family: var(--font-family-primary);
  background: var(--black);
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 50%, #adadad 100%);
  border: none;
  color: var(--black);
  border-radius: 0px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 35px;
  display: inline-flex;
}
.btn_lg {
  padding: 18px 75px;
  font-size: 18px;
  line-height: 28px;
}
.btn_black {
  background-color: var(--black);
}
.btn_gold {
  background: linear-gradient(180deg, #ffee99 0%, #ebc503 45%, #ba9b00 100%);
}
.btn_i:hover {
  /* background: var(--blue); */
}
.highlight_text {
  background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 50%, #adadad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text_gold {
  background: linear-gradient(180deg, #ffee99 0%, #ebc503 45%, #ba9b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.white {
  color: var(--white);
}
.background-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.img_overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000063;
  position: absolute;
  z-index: 1;
}

h1,
h2 {
  font-size: 52px;
  line-height: 62px;
  font-weight: 700;
  color: var(--black);
}
h2 {
  font-size: 40px;
  line-height: 50px;
}
h3,
.post_title h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
p {
  font-size: 16px;
  line-height: 25px;
  font-family: var(--font-family-primary);
}
a {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 42px;
  }
}
