* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
  font-family: "inter";
}

body {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text);
}

h1 {
  font-size: clamp(1.875rem, 1.475rem + 2vw, 3.875rem);
  line-height: 1.3;
  font-family: "cinzel";
  font-weight: 700;
  color: var(--gray98);
}

h2,
.h2 {
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  line-height: 1.3;
  font-family: "cinzel";
  font-weight: 700;
  color: var(--primary);
}

h3,
.h3 {
  font-size: clamp(1.625rem, 1.525rem + 0.5vw, 2.125rem);
  line-height: 34px;
  font-family: "cinzel";
  font-weight: 700;
  color: var(--black);
}

h4,
.h4 {
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  line-height: 34px;
  font-weight: 600;
  color: var(--secondary);
}

h5,
.h5 {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
}

h6,
.h6 {
  font-size: 18px;
}

p,
.p {
  font-size: 16px;
}

.fs-13 {
  font-size: 13px;
  line-height: 24px;
}

.fs-12 {
  font-size: 12px;
  line-height: 24px;
}

a {
  text-decoration: none;
}

.btn-orange {
  background: var(--orange);
  color: var(--gray98);
  margin-top: 24px;
  border-radius: 16px;
  padding: 12px 24px;
}
@media all and (min-width: 768px) {
  .btn-orange {
    padding: 18px 32px;
  }
}

.overlay {
  position: relative;
}
.overlay::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

@media all and (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-orange {
  color: var(--orange);
}

.text-black {
  color: var(--black);
}

.text-gray {
  color: var(--text);
}

.text-gray98 {
  color: var(--gray98);
}

.text-lightgray {
  color: var(--lightgray);
}

.text-lightSlateGray {
  color: var(--lightslategray);
}

.text-balticsea {
  color: var(--balticsea);
}

.text-solitude {
  color: var(--solitude);
}

.text-cmGray {
  color: var(--cm-gray);
}

.bg-balticsea {
  background: var(--balticsea);
}

.bg-gray98 {
  background: var(--gray98);
}

.font-cinzel {
  font-family: "cinzel";
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.container {
  padding-inline: 30px;
}
@media all and (min-width: 576px) {
  .container {
    padding-inline: 12px;
  }
}/*# sourceMappingURL=global.css.map */