@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --color-red: #4d0314;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

.swiper {
  border-radius: 30px;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.875rem, 0.8227rem + 0.197vw, 1rem); 
  /*  font-size: clamp(0.875rem, 0.7275rem + 0.4969vw, 1.125rem); */
  line-height: 1.3;
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-red);
  border-radius: 20px;
}

img {
  object-fit: cover;
  border-radius: 30px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

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

.show_more {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  color: var(--color-red);
  display: block;
  text-align: center;
}

.main_btn {
  color: var(--color-red);
  max-width: 260px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 2px solid var(--color-red);
  transition: 0.4s !important;
  border-radius: 30px;
  font-weight: 600;
}

.main_btn:hover {
  background-color: var(--color-red);
  color: #fff;
}

.main_btn.btn_bg {
  background-color: var(--color-red);
  color: #fff;
}

.arrow_bottom {
  cursor: pointer;
}

.section {
  margin-top: clamp(3.125rem, 1.8165rem + 4.9261vw, 6.25rem);
  margin-bottom: clamp(3.125rem, 1.8165rem + 4.9261vw, 6.25rem);
}

.title_h2 {
  font-size: clamp(1.5rem, 1.2515rem + 0.9357vw, 2rem);
  color: var(--color-red);
  font-family: "Alethia Pro";
  font-weight: 400;
}

.text_standard {
  line-height: 1.4;
}

.wrapper {
  background-color: #fdebd7;
  padding-top: clamp(3.125rem, 1.8165rem + 4.9261vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 1.8165rem + 4.9261vw, 6.25rem);
}
.wrapper .section:first-child {
  margin-top: 0;
}
.wrapper .section:last-child {
  margin-bottom: 0;
}

.small_text {
  font-size: 14px;
  color: var(--color-red);
}

.small_title {
  font-size: clamp(1.5rem, 1.2906rem + 0.7882vw, 2rem);
  font-family: "Alethia Pro";
  font-weight: 400;
  color: var(--color-red);
}

.bg_img {
  position: absolute;
}


.closed {
  height: 300px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.closed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 71.19%,
    rgba(255, 255, 255, 0.8) 118.54%
  );
}