@font-face {
  font-family: "UTM Clarendon";
  src: url("../fonts/UTMClarendon.woff2") format("woff2"), url("../fonts/UTMClarendon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-font: "Inter", serif;
  --font-clarendon: "UTM Clarendon", serif;
  --font-gentium: "Gentium Book Plus", serif;
  --white: #ffffff;
  --black: #000000;
  --gray: #4f4f4f;
  --red: #f20022;
  --dark-red: #330202;
  --container: 100%;
}
@media (min-width: 576px) {
  :root {
    --container: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

p {
  margin-bottom: 1rem;
  margin-top: 0;
}

.container {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.container-fluid {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

img {
  display: block;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
@media (min-width: 992px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
  }
}

.readmore {
  display: inline-block;
  padding: 3vw 6vw;
  border-radius: 8px;
  background: rgba(242, 0, 34, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 3vw;
  line-height: 1.375;
  color: var(--red);
  text-decoration: none;
}
@media (min-width: 576px) {
  .readmore {
    font-size: 16px;
    padding: 12px 32px;
  }
}
.readmore:hover {
  background: rgba(242, 0, 34, 0.5);
  color: var(--dark-red);
}

/*# sourceMappingURL=common.css.map */
