/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}

ul[class],
ol[class] {
  list-style: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: inherit;
}

button {
  border: 1px solid transparent;
}

@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url(../fonts/IBMPlexSerif-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url(../fonts/IBMPlexSerif-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url(../fonts/IBMPlexSerif-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url(../fonts/IBMPlexSerif-Bold.ttf);
  font-weight: 700;
}
html.open,
html.open-popup {
  overflow: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: #313F2D;
  background-color: #FFFCF6;
}

.btn {
  color: #313F2D;
  font-family: "IBM Plex Serif";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: 0.3s linear;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #BFA77B;
  cursor: pointer;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}
.btn:hover {
  background-color: #9A855E;
}
.btn:disabled {
  background-color: #A4A3A2;
}
@media screen and (max-width: 767.9px) {
  .btn {
    padding: 20px 10px;
    max-width: 100%;
  }
}

.logo {
  display: block;
}
.logo img {
  max-width: 100%;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.socials a {
  width: 48px;
  height: 48px;
}
.socials a:hover circle {
  fill: #A3926B;
}
.socials svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.socials svg circle {
  transition: 0.3s linear;
}

.contact {
  display: flex;
  gap: 10px;
  flex-direction: column;
  color: #FFF6E4;
}
.contact a,
.contact div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  font-family: "Manrope";
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .contact a,
.contact div {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .contact a,
.contact div {
    word-break: break-all;
  }
}
.contact a svg,
.contact div svg {
  width: 48px;
  height: 48px;
}
.contact a:hover,
.contact div:hover {
  color: #BFA77B;
}

.socials a,
.socials div,
.contact a,
.contact div {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}

.mb-m {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .mb-m {
    margin-bottom: 140px;
  }
}

.title-justify {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .title-justify {
    flex-direction: row;
    align-items: end;
  }
}
@media screen and (max-width: 767.9px) {
  .title-justify {
    text-align: center;
  }
}
.title-justify h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  max-width: 640px;
}
@media screen and (min-width: 768px) {
  .title-justify h2 {
    font-size: 38px;
  }
}

.center-title {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.center-title h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #313F2D;
}
@media screen and (min-width: 768px) {
  .center-title h2 {
    font-size: 38px;
  }
}
@media screen and (min-width: 768px) {
  .center-title {
    margin-bottom: 60px;
  }
}

.slider-btn {
  width: 47px;
  height: 47px;
  cursor: pointer;
}
.withoutSlider .slider-btn {
  display: none;
}
.slider-btn svg {
  width: 100%;
  height: 100%;
}
.slider-btn svg rect {
  transition: 0.3s linear;
}
.slider-btn:hover rect {
  fill: #A3926B;
}
.slider-btn.swiper-button-disabled:hover {
  cursor: not-allowed;
}
.slider-btn.swiper-button-disabled:hover rect {
  fill: #B0B4B9;
}
.slider-btn.swiper-button-disabled rect {
  fill: #B0B4B9;
}

.slider__btns {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
}

.breadcrumbs {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF9EF;
  padding-top: 92px;
  margin-bottom: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #313F2D;
}
.breadcrumbs.singe-breadcrumbs {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding-top: 50px;
    margin-bottom: 100px;
  }
  .breadcrumbs.singe-breadcrumbs {
    padding: 60px 0;
  }
}
.breadcrumbs__container {
  background-color: #313F2D;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  z-index: 1;
}
.singe-breadcrumbs .breadcrumbs__container {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__container {
    padding: 40px 60px;
  }
}
.breadcrumbs__container h1 {
  color: #FFF9EF;
  font-family: "IBM Plex Serif";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  color: #FFF9EF;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__container h1 {
    font-size: 40px;
  }
}
.singe-breadcrumbs .breadcrumbs__container h1 {
  text-align: center;
}
.breadcrumbs__links {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.singe-breadcrumbs .breadcrumbs__links {
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__links {
    font-size: 14px;
  }
}
.breadcrumbs__links a {
  transition: 0.3s linear;
}
.breadcrumbs__links a:hover {
  color: #FFF;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  form {
    gap: 20px;
  }
}
form input,
form fieldset {
  border: none;
  outline: none;
}
form fieldset {
  padding: 0;
}
form input:not([type=submit], [type=checkbox]),
form select {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 249, 239, 0.2);
  max-width: 100%;
  width: 100%;
  color: #FFF9EF;
  background-color: transparent;
  line-height: 140%;
  color: #FFF9EF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
form input:not([type=submit], [type=checkbox])::-moz-placeholder, form select::-moz-placeholder {
  color: #FFF9EF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.5;
}
form input:not([type=submit], [type=checkbox]):-ms-input-placeholder, form select:-ms-input-placeholder {
  color: #FFF9EF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.5;
}
form input:not([type=submit], [type=checkbox])::placeholder,
form select::placeholder {
  color: #FFF9EF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.5;
}
form input:not([type=submit], [type=checkbox]):focus-visible,
form select:focus-visible {
  opacity: 1;
}
form .wpcf7-list-item-label {
  display: none;
}
form input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  width: 100%;
  font-family: "IBM Plex Serif";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background-color: #BFA77B;
  color: #313F2D;
  max-width: 100%;
  width: 100%;
  padding: 20px 30px;
  cursor: pointer;
  border-radius: 0;
  transition: 0.3s linear;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  form input[type=submit] {
    margin: 0 auto;
  }
}
form input[type=submit]:hover {
  background-color: #9A855E;
}
form fieldset {
  color: rgba(255, 249, 239, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}
form fieldset label {
  display: flex;
  gap: 8px;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
form fieldset input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 10px;
  max-height: 10px;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  z-index: 1;
  margin: 0;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 249, 239, 0.5);
  background-color: transparent;
}
form fieldset input[type=radio]:after {
  content: "";
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  max-width: 10px;
  max-height: 10px;
  width: 10px;
  height: 10px;
  position: relative;
  z-index: 0;
}
form fieldset input[type=radio]:checked {
  border-color: #FFF9EF;
}
form fieldset input[type=radio]:checked:after {
  background-color: #FFF9EF;
}

input.wpcf7-form-control.wpcf7-not-valid {
  border-bottom: 1px solid red;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  margin: 0;
  border: none;
  color: #fff;
  position: absolute;
  bottom: 10px;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .wpcf7 form .wpcf7-response-output {
    position: static;
    padding: 0;
  }
}

.wpcf7-spinner {
  position: absolute;
  bottom: 15px;
}
@media screen and (max-width: 767px) {
  .wpcf7-spinner {
    bottom: 0;
  }
}

.space {
  width: 100%;
  height: 1px;
  background-color: #BFA77B;
  position: relative;
}
.space::after, .space::before {
  content: "";
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: #BFA77B;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%) rotate(44.954deg);
}
.space:before {
  left: 0;
  transform: translate(-50%, -50%) rotate(44.954deg);
}
.space::after {
  right: 0;
  transform: translate(50%, -50%) rotate(44.954deg);
}

.accord {
  display: flex;
  flex-direction: column;
}

.accord-item {
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.accord-item-top {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  transition: 0.3s linear;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 367px) {
  .accord-item-top {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    white-space: pre-wrap;
  }
}
.accord-item-bottom {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.3s linear;
  padding: 80px 0px 0px 0px;
  position: relative;
  z-index: 0;
  margin-top: -80px;
}
.accord-item-bottom p {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .accord-item-bottom {
    padding: 50px 0px 0px 0px;
    margin-top: -50px;
  }
}

.icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
}

.accord-item.active .accord-item-bottom {
  opacity: 1;
  max-height: 100%;
  overflow: visible;
  padding: 80px 0px 0px 0px;
  z-index: -1;
  position: relative;
  margin-top: -46px;
  z-index: 0;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .accord-item.active .accord-item-bottom {
    padding: 70px 0px 0px 0px;
    margin-top: -50px;
  }
}

.header {
  z-index: 50;
  position: relative;
}
@media screen and (max-width: 1023.9px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
  }
}
.header__top {
  background-color: #2A3428;
  padding: 5px 0;
}
@media screen and (max-width: 1023.9px) {
  .header__top {
    display: none;
  }
}
.header__linkpoint {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.header__menu .header__linkpoint {
  flex-direction: column-reverse;
  align-items: start;
}
@media screen and (min-width: 1023.9px) {
  .header__menu .header__linkpoint {
    display: none;
  }
}
.header__menu .header__linkpoint__contact {
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .header__linkpoint__socials a {
    width: 29px;
    height: 29px;
  }
}
.header__linkpoint__contact {
  flex-direction: row;
  gap: 40px;
}
.header__linkpoint__contact a {
  font-size: 14px;
  gap: 3px;
}
.header__linkpoint__contact a svg {
  width: 34px;
  height: 34px;
}
.header__bottom {
  background: linear-gradient(90deg, #313F2D 0%, #41543D 100%);
  padding: 20px 0;
  transition: 0.3s linear;
  z-index: 500;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: forwards;
          animation-iteration-count: forwards;
}
.header__bottom.fixed-header-nav {
  top: 0;
  position: fixed;
  width: 100%;
}
@-webkit-keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes removeSmoothScroll {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes removeSmoothScroll {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header__bottom .logo {
  max-width: 150px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media screen and (min-width: 1024px) {
  .header__bottom .logo {
    max-width: 200px;
  }
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 1140px) {
  .header__menu {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .header__menu {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1023.9px) {
  .header__menu {
    flex-direction: column;
    position: fixed;
    align-items: flex-start;
    left: -100%;
    top: 70px;
    background: linear-gradient(90deg, #313F2D 0%, #41543D 100%);
    width: 100%;
    height: calc(100% - 70px);
    overflow: hidden;
    overflow-y: auto;
    padding: 20px;
    transition: 0.3s linear;
    gap: 50px;
  }
  .open .header__menu {
    left: 0;
  }
}
.header__menu nav {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header__menu nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.header__menu nav ul {
  display: flex;
  align-items: center;
  width: 100%;
  color: #FFF6E4;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.28px;
}
@media screen and (min-width: 1240px) {
  .header__menu nav ul {
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1239.9px) {
  .header__menu nav ul {
    gap: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header__menu nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.header__menu nav ul li {
  position: relative;
  transition: 0.3s linear;
}
.header__menu nav ul li:hover {
  color: #BFA77B;
}
@media screen and (max-width: 1023.9px) {
  .header__menu nav ul li {
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    letter-spacing: 0.18px;
  }
}
.header__menu .btn {
  max-width: 195px;
  padding: 16px 40px;
}
@media screen and (max-width: 1023.9px) {
  .header__menu .btn {
    max-width: 100%;
    width: 100%;
  }
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 6px;
}
.burger span {
  width: 25px;
  height: 2px;
  background-color: #C5AC73;
  transition: 0.3s linear;
}
.open .burger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 3px) scale(1.1);
}
.open .burger span:nth-of-type(2) {
  opacity: 0;
}
.open .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px) scale(1.1);
}
@media screen and (min-width: 1023.9px) {
  .burger {
    display: none;
  }
}

.hero {
  position: relative;
  background: url(../images/hero-img-bg.webp) center center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .hero {
    height: calc(100vh - 135px);
  }
}
.hero__img {
  width: 100%;
  height: 50vh;
  aspect-ratio: 360/346;
  overflow: hidden;
  position: relative;
  background-color: #313F2D;
}
.hero__img:after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
  position: absolute;
}
.hero__img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hero__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero__container {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__container {
    height: calc(100vh - 135px);
  }
}
@media screen and (max-width: 767.9px) {
  .hero__container {
    margin-left: -20px;
    margin-right: 20px;
    width: 100vw;
  }
}
.hero__content {
  padding: 30px 20px;
  background-color: #313F2D;
  max-width: 753px;
  color: #FFF9EF;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .hero__content {
    padding: 60px 40px;
  }
}
.hero__content h1 {
  color: #FFF9EF;
  font-family: "IBM Plex Serif";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hero__content h1 {
    font-size: 40px;
  }
}
.hero__content .space {
  margin-bottom: 20px;
}
.hero__content .space::before, .hero__content .space::after {
  width: 14px;
  height: 14px;
}
.hero__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  margin-bottom: 40px;
}

.advantages {
  padding: 80px 0;
  background: url(../images/advantages-img.webp);
  position: relative;
}
@media screen and (min-width: 768px) {
  .advantages {
    padding: 160px 0;
  }
}
.advantages__container h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .advantages__container h2 {
    font-size: 38px;
  }
}
@media screen and (min-width: 768px) {
  .advantages__container h2 {
    margin-bottom: 60px;
  }
}
.advantages__items {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.advantages__items:after {
  content: "";
  max-height: 220px;
  background-color: #41C126;
  max-width: 220px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(125px);
  z-index: 0;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #D6D4C8;
  background: #FFF9EF;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
	overflow-y: auto;
}
@media screen and (max-width: 550px) {
  .advantages__item {
    aspect-ratio: 1;
  }
}
@media screen and (min-width: 1024px) {
  .advantages__item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .advantages__item {
    aspect-ratio: 325/348;
  }
  .advantages__item:nth-of-type(even) {
    margin-top: 140px;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1023.9px) {
  .advantages__item {
    width: 50%;
  }
}
.advantages__item__count {
  font-family: "IBM Plex Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
	display: flex;
	flex-wrap:wrap;
}
.advantages__item__count span {
	font-size: 50px;
}
.advantages__item__count div {
	width: 100%;
}
.advantages__item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.14px;
}


.team {
  padding: 70px 0 0 0;
  background: radial-gradient(50% 50% at 50% 50%, #465941 0%, #313F2D 100%);
  overflow: hidden;
}
.team h2 {
	font-family: "IBM Plex Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px; 
	color: #fff;
}
@media screen and (min-width: 768px) {
    .team h2 {
        font-size: 38px;
		margin-bottom: 60px; 

    }
	
}
@media screen and (min-width: 768px) {
  .team {
    padding: 100px 0 0 0;
  }
}
.team__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  color: #FFF9EF;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .team__content {
    gap: 40px;
    flex-direction: row;
  }
}
.team__content h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .team__content h2 {
    font-size: 38px;
  }
}
.team__content__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  width: 100%;
	padding: 32px 0;
}
@media screen and (max-width: 1024px) {
	.team__content__text {
		padding: 0;
	}
}
.team__content__text div {
	display: flex;
	flex-direction: column;
	gap: 24px; 
}
.team__content__text div p {
	padding-top: 24px;
	border-top: 1px solid #BFA77B;
	font-size: 14px;
}

.team .space {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .team .space {
    margin-bottom: 30px;
  }
}
.team__img {
  max-width: 1085px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	border: 1px solid #BFA77B;
}
@media screen and (min-width: 1200px) {
	.team__img {
		max-width: 558px;
	}
}
@media screen and (min-width: 1024px) {
  .team__content__text {
    max-width: 710px;	  
  }
	.team__img {
		min-width: 528px;
	}
}
.command__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .command__title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .command__slider__btns {
    display: none;
  }
}
.command__item {
  display: flex;
  flex-direction: column;
  height: auto;
}
.command__item__img {
  height: 380px;
  background: radial-gradient(50% 50% at 50% 50%, #E7D1AC 0%, #C0A87D 100%);
}
.command__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.command__item__content {
  padding: 20px;
  background: linear-gradient(90deg, #313F2D 0%, #41543D 100%);
  color: #FFF9EF;
  flex-grow: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
}
@media screen and (min-width: 768px) {
  .command__item__content {
    padding: 40px;
  }
}
.command__item__content__top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFF9EF;
}
.command__item__name {
  font-family: "IBM Plex Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .command__item__name {
    font-size: 28px;
  }
}
.command__item__bottom {
  padding-top: 20px;
}
.command .commandSlider {
  padding-bottom: 50px;
}
.command .swiper-pagination-progressbar {
  top: inherit;
  bottom: 0px;
  background-color: #D6D4C8;
}
.command .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #BFA77B;
}

.services {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .services {
    margin-bottom: 80px;
  }
}
.services__container {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .services__container {
    margin-bottom: 80px;
  }
}
.services__items {
  display: grid;
	grid-template-columns: repeat(2,1fr);

  gap: 10px;
}
@media screen and (min-width: 768px) {
  .services__items {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
	.services__items {
		display: flex;
		flex-direction: column;
/* 		overflow-x: auto;
		gap: 20px; */
	}
}
.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
	height: 100%;
}
@media screen and (min-width: 1024px) {
  .services__item {
    display: flex;
    flex-direction: column;
  }
}
.services__item__img {
  width: 100%;
}
.services__item__img {
	height: fit-content;
}
@media screen and (min-width: 1024px) {
  .services__item__img {
/*     max-height: 380px;
    height: calc(100% - 25px); */
  }
}
.services__item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 270px;

}
@media screen and (min-width: 767px) {
}
.services__item__content {
  width: 100%;
  border: 1px solid #D6D4C8;
  background: var(--White-orange, #FFF9EF);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
	height:100%;
}
@media screen and (min-width: 768px) {
  .services__item__content {
    padding: 20px;
	  display: flex;
	  flex-direction: column;
/* 	      max-height: 275px;
	  overflow: hidden; */
  }
	.services__item__content p:has(button) {
		margin-top: auto
	}
	.services__item__content > div{
/* 		overflow: auto;
		display: flex;
		flex-direction: column;
		height: 100%;
		padding-bottom: 100px; */
	}
	button.services__item__content__link {
		margin-top: auto;
/* 		width: calc(60% - 2px);
    justify-content: center;
    position: fixed;
    bottom: 1px;
    right: 1px; */
	}
}
.services__item__content h3,
.services__item__content h2 {
  font-family: "IBM Plex Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D4C8;
}
.services__item__content ul {
	list-style: inside;
	margin-bottom: 20px;
}
.services__item__content ul li {
	margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .services__item__content h3,
.services__item__content h2 {
    font-size: 28px;
  }
}
.services__item__content p,
.services__item__content li {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
	margin-bottom: 20px;
}
.services__item__content__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  background: none;
  padding: 0;
  cursor: pointer;
	transition: all .5s;
/*   color: #313F2D; */
	background-color: #BFA77B;
	    color: #313F2D;
	    padding: 10px 0;
		width: 100%;
	text-align: center;
	justify-content: center;
}
.services__item__content__link:hover {
	    background-color: #9A855E;
}
@media screen and (min-width: 768px) {
  .services__item__content__link {
    margin-top: 60px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  .services__item__content__link {
    text-align: center;
  }
}
.services__item__content__link:after {
  content: "";
  width: 11px;
  height: 9px;
  background: url(../images/arrow.svg) center center/cover no-repeat;
  transition: 0.3s linear;
}
.services__item__content__link:hover:after {
  transform: translateX(10px);
}

.news__item {
  display: flex;
  flex-direction: column;
  height: auto;
}
.news__item__img {
  display: flex;
  flex-grow: 1;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__item__img {
    min-height: 280px;
    max-height: 280px;
  }
}
@media screen and (max-width: 767.9px) {
  .news__item__img {
    aspect-ratio: 1;
  }
}
.news__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__item__content {
  padding: 40px 20px;
  border: 1px solid #D6D4C8;
  background: #FFF9EF;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .news__item__content {
    padding: 40px;
  }
}
.news__item__content__title h3,
.news__item__content__title h2 {
  white-space: normal;
  margin-bottom: 10px;
  font-family: "IBM Plex Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.news__item__content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  margin-bottom: 20px;
  color: #7C8979;
}
.news__item__content a:not([class]) {
  margin-top: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 767.9px) {
  .news__slider__btns {
    display: none;
  }
}

.news .newsSlider,
.partners .partnersSlider{
  padding-bottom: 50px;
}
.news .swiper-pagination-progressbar,
.partners .swiper-pagination-progressbar{
  top: inherit;
  bottom: 0px;
  background-color: #D6D4C8;
}
.news .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.partners .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
  background: #BFA77B;
}
.partners .swiper-wrapper {
	width: fit-content;
    margin: 0 auto;
}
.partners .swiper-slide {
	border-radius: 50%;
    overflow: hidden;
    background: rgb(255, 249, 239);
    border: 0.78px solid rgb(214, 212, 200);
	aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners .swiper-slide img{ 
	padding: 40px 64px;
}
.all__news {
  margin-bottom: 90px;
}
.all__news__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .all__news__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .all__news__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .all__news__container {
    display: grid;
  }
}

.faq {
  padding: 80px 0;
  background: radial-gradient(50% 50% at 50% 50%, #465941 0%, #313F2D 100%);
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 120px 0;
  }
}
.faq__title h2 {
  color: #FFF9EF;
  text-transform: uppercase;
}
.faq__item {
  transition: 0.3s linear;
}
.faq__item:hover .faq__item__top {
  background-color: #BFA77B;
}
.faq__item__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #FFF9EF;
  border: 1px solid #313F2D;
}
@media screen and (min-width: 768px) {
  .faq__item__top {
    padding: 30px 30px;
    gap: 20px;
  }
}
.active .faq__item__top {
  background-color: #BFA77B;
}
.faq__item__top p {
  font-family: "IBM Plex Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767.9px) {
  .faq__item__top p {
    font-size: 16px;
  }
}
.faq__item-bottom-wrap {
  color: #FFF9EF;
  padding: 0 40px 40px 40px;
  background-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
}
.faq__item-bottom-wrap p {
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.28px;
}
@media screen and (min-width: 768px) {
  .faq__item-bottom-wrap p {
    font-size: 16px;
  }
}
.faq__item-bottom-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style-type: disc;
  list-style-position: inside;
}
.faq__item-bottom-wrap ul li::marker {
  color: #FFF9EF;
}
.faq__count {
  display: flex;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  font-family: "IBM Plex Serif", sans-serif;
}
@media screen and (min-width: 768px) {
  .faq__count {
    font-size: 20px;
  }
}
.faq__count:after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #313F2D;
}
.faq-icon-wrapper {
  background-color: #313F2D;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .faq-icon-wrapper {
    min-width: 40px;
    min-height: 40px;
  }
}
.faq-icon-wrapper svg {
  width: 15px;
  height: 10px;
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  .faq-icon-wrapper svg {
    width: 20px;
    height: 15px;
  }
}
.active .faq-icon-wrapper svg {
  transform: rotate(90deg);
}

.contacts {
  position: relative;
  background-color: #FFF;
}
.contacts__frame {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .contacts__frame {
    height: 360px;
  }
}
@media screen and (max-width: 768.9px) {
  .contacts__frame {
    aspect-ratio: 1;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}
.contacts__frame iframe {
  width: 100%;
  height: 100%;
}
.contacts__container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .contacts__container {
    padding: 160px 0;
  }
}
.contacts__content {
  z-index: 1;
  background-color: #FFF9EF;
  border: 1px solid #D6D4C8;
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .contacts__content {
    max-width: 526px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__content {
    padding: 40px;
  }
}
.contacts__content h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 23px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .contacts__content h2 {
    font-size: 38px;
  }
}
.contacts__content .contact {
  padding: 23px 0;
  border-top: 1px solid #D6D4C8;
  border-bottom: 1px solid #D6D4C8;
  margin-bottom: 23px;
}
.contacts__content .contact a {
  color: #313F2D;
}
.contacts__content .contact a:hover {
  color: #BFA77B;
}
.contacts__content .contact a svg {
  width: 48px;
  height: 48px;
}
.contacts__content .socials {
  margin-bottom: 23px;
}
.contacts__content .socials a {
  max-width: 64px;
  max-height: 64px;
  border: 1px solid #313F2D;
  border-radius: 50%;
  transition: 0.3s linear;
}
.contacts__content .socials a:hover {
  border-color: #A3926B;
}
.contacts__content .btn {
  max-width: 100%;
  width: 100%;
}

.footer {
  background-color: #313F2D;
  margin-top: auto;
}
.footer__wrapper {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 1240px) {
  .footer__wrapper {
    gap: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__wrapper {
    flex-direction: row;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 120px 0 100px 0;
  }
}
.footer__wrapper .logo {
  min-width: 258px;
  max-width: 258px;
}
.footer__wrapper .logo img {
  max-width: 100%;
}
.footer__column:not(:nth-last-of-type(1)) {
  position: relative;
  height: auto;
}
@media screen and (min-width: 1240px) {
  .footer__column:not(:nth-last-of-type(1)) {
    padding-right: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__column:not(:nth-last-of-type(1)) {
    padding-right: 40px;
  }
  .footer__column:not(:nth-last-of-type(1)):after {
    content: "";
    width: 1px;
    background-color: rgba(255, 252, 246, 0.3);
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.footer nav {
  color: #FFF9EF;
}
.footer nav ul li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer nav ul li a:not(.sub-menu li a) {
  color: #BFA77B;
  font-family: "IBM Plex Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.footer nav ul .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 252, 246, 0.3);
}
.footer nav ul .sub-menu li a {
  transition: 0.3s linear;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
}
.footer nav ul .sub-menu li a:hover {
  color: #BFA77B;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact__title {
  font-family: "IBM Plex Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: #BFA77B;
}
.footer__contacts {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 252, 246, 0.3);
}
.footer__copy {
  padding: 20px 0;
  background-color: #2A3428;
}
.footer__copy__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF9EF;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__copy__wrap {
    flex-direction: row;
  }
}
.footer__copy__wrap span {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
}
.footer__copy__wrap .lumios {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s linear;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
}
@media screen and (max-width: 767px) {
  .popup {
    padding-top: 20px;
  }
}

.open-popup .popup {
  opacity: 1;
  visibility: visible;
}

.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  opacity: 1;
}

.popup-wrapper {
  height: 100%;
  overflow-y: auto;
  text-align: center;
  position: relative;
  transition: 0.5s linear;
}
.popup-wrapper::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.popup-wrap {
  vertical-align: middle;
  text-align: left;
  display: inline-block;
  gap: 5px;
  padding: 30px 20px;
  background-color: #313F2D;
  opacity: 1;
  z-index: 2;
  max-width: 578px;
  position: relative;
  width: 90vw;
}
@media screen and (min-width: 768px) {
  .popup-wrap {
    padding: 60px 40px;
  }
}
.popup-wrap .close {
  position: absolute;
  top: 0;
  right: -48px;
  padding: 15px;
  outline: none;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .popup-wrap .close {
    top: -32px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
.popup-wrap .close svg {
  width: 48px;
  height: 48px;
}
.popup-wrap div:not([class]) {
  font-family: "IBM Plex Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #FFF9EF;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .popup-wrap div:not([class]) {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap div:not([class]) {
    font-size: 17px;
  }
}
.popup-wrap p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #FFF9EF;
  margin-bottom: 30px;
  opacity: 0.5;
}

.error__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 0;
  text-align: center;
}
.error__container img {
  max-width: 400px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}
.error__container h1 {
  text-transform: uppercase;
  color: #FFF9EF;
  font-family: "IBM Plex Serif";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  color: #313F2D;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .error__container h1 {
    font-size: 40px;
  }
}
.error__container p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: 0.2px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .error__container p {
    font-size: 20px;
  }
}
.error__container .btn {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .error__container .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.article {
  margin: 0 auto;
  margin-bottom: 80px;
  max-width: 900px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .article {
    margin-bottom: 160px;
  }
}
.article h2 {
  font-family: "IBM Plex Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .article h2 {
    font-size: 38px;
  }
}
@media screen and (min-width: 768px) {
  .article h2 {
    margin-bottom: 37px;
  }
}
.article p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: 0.2px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .article p {
    font-size: 20px;
    margin-bottom: 37px;
  }
}
.article h3 {
  font-family: "IBM Plex Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .article h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .article h3 {
    margin-bottom: 37px;
  }
}
.article h4 {
  font-family: "IBM Plex Serif";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .article h4 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .article h4 {
    margin-bottom: 37px;
  }
}
.article ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .article ul {
    margin-bottom: 37px;
  }
}
.article ul li {
  padding-left: 46px;
  position: relative;
}
.article ul li:before {
  content: url(../images/list-arrow.svg);
  width: 24px;
  height: 24px;
  top: 0;
  left: 8px;
  position: absolute;
}
.article a {
  color: #1F44FF;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.2px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.article blockquote {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.2px;
  padding: 30px 30px 30px 25px;
  border-left: 8px solid #C5AC73;
  background-color: #FFF8E7;
}
@media screen and (min-width: 768px) {
  .article blockquote {
    font-size: 20px;
  }
}

.publication-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .publication-date {
    flex-direction: row;
  }
}
.publication-date span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .publication-date {
    margin-bottom: 75px;
  }
}
.publication-date:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #313F2D;
  opacity: 0.5;
  position: absolute;
  bottom: -30px;
}
@media screen and (min-width: 768px) {
  .publication-date:after {
    bottom: -37px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 25px 0;
}

.page-numbers {
  transition: all 0.5s;
}
.page-numbers.current {
  color: #BFA77B;
}
.page-numbers:hover {
  color: #BFA77B;
}/*# sourceMappingURL=style.css.map */