:root {
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --black_medium: #171717;
  --text-color: #333333;
  --heading-color: #1a1a1a;
  --blue: #2e3192;
  --grey: #f2f2f6;
  --blue-bg: #f0f8ff;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font-family);
}
.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);
  background: var(--blue);
  color: var(--white);
  border-radius: 5px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 15px;
  display: inline-flex;
}
.btn_i:hover {
  background: var(--blue);
}
.highlight_text {
  color: var(--blue);
}
.white {
  color: var(--white);
}
.background-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
input.dd-default-input {
  border: 1px solid var(--grey);
  border-radius: 8px;
  outline: none;
  background-color: var(--white);
  padding: 10px 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-family);
}
span.header_search__close svg {
  fill: var(--text-color);
}
.popup-dd {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.popup-dd.active, .main_menu_i.popup-dd.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.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(--text-color);
}
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: 26px;
  font-family: var(--font-family);
}
a {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 42px;
  }
}