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

html,
body {
  min-height: 100%;
  font-family: Roboto, sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  background-color: #f6f6f6;
  box-shadow: 0px 0px 10px #000;
  --main-text-size: 13px;
}

.slide {
  min-height: 100vh;
  display: grid;
  grid-template-areas: "a b";
  grid-template-columns: 1fr 1fr;
  height: 100%;
  background-color: #fff;
}

.slide1 .half_a,
.slide1 .half_b {
  height: 100%;
}

.slide1 .half_a {
  grid-area: a;
}

.slide1 .half_b {
  grid-area: b;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.slide1 .half_a {
  background: url(./images/1.jpg) center / cover no-repeat;
}

.slide1 .half_b {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(./images/3.jpg) center / cover no-repeat;
  padding: 30px;
}

.slide1 .half_b .title {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  mix-blend-mode: difference;
  text-shadow: 0 0 5px #000;
}

.slide2 .half_a {
  display: grid;
  grid-template-columns: 60px 1fr;
}

.slide2 .half_a .line {
  align-self: flex-start;
  height: 25%;
  width: 100%;
  background-color: rgb(167 96 74);
}

.slide2 .half_a .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 80px;
}

.slide2 .half_b {
  display: grid;
  grid-template-columns: 1fr 60px;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.slide2 .half_b .bg {
  height: 101%;
  width: 100%;
  background: url(./images/4.png) center/ cover no-repeat;
}

.slide2 .half_b .line {
  align-self: flex-end;
  height: 75%;
  width: 100%;
  background-color: #000;
}

.slide2 .title {
  font-family: Rpbptp, sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-align: left;
  color: #000;
  text-transform: uppercase;
}

.slide2 .title2 {
  color: rgb(167 96 74);
}

.slide3 .half_a {
  padding-left: 60px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-rows: auto minmax(50px, 1fr) auto;
  grid-template-areas: "preview" "." "content";
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./images/5.jpg) center / cover no-repeat;
}

.slide3 .half_a .preview {
  grid-area: preview;
  padding-top: 100%;
  width: 100%;
  background: url(./images/6.jpg) center/cover no-repeat;
}

.slide3 .half_a .content {
  grid-area: content;
  margin-left: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.slide3 .half_b {
  padding-left: 100px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
}

.slide3 .half_b .title {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.slide3 .half_b .title b {
  font-family: Roboto, sans-serif;
  font-weight: 600;
}

.slide3 .half_b .subtitle1 {
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgb(168, 97, 71);
}

.slide3 .half_b .subtitle2 {
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

.slide3 .half_b .text {
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
}

.slide3 .half_b .explanation {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: #7f8080;
}

.slide3 .half_b .feature {
  margin-bottom: 40px;
}

.slide4 .half_a {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-rows: auto minmax(50px, 1fr) auto;
  grid-template-areas: "content" "." "preview";
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./images/5.jpg) center / cover no-repeat;
}

.slide4 .half_b {
  padding-left: 100px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
}

.slide4 .half_a .content {
  grid-area: content;
}

.slide4 .half_a .title {
  margin-bottom: 50px;
  max-width: 280px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.slide4 .half_a .text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
  color: #fff;
  line-height: 150%;
}

.slide4 .half_a .preview {
  grid-area: preview;
  max-width: 100%;
  object-fit: cover;
}

.slide4 .half_b .features {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}

.slide4 .half_b .features .feature .title {
  font-family: Roboto, sans-serif;
  font-size: 48px;
  font-weight: 400;
}

.slide4 .half_b .features .feature .title .num {
  color: rgb(168, 97, 71);
}

.slide4 .half_b .features .feature .text {
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
}

.slide.slide5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
  background-color: #fff;
}

.slide5 > .title {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.slide5 .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.slide5 .content .feature {
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide5 .content .feature.feature1 {
  background-color: #000;
  color: #fff;
}

.slide5 .content .feature.feature2 {
  background-color: rgb(168, 97, 71);
  color: #fff;
}

.slide5 .content .feature.feature3 {
  border: 1px solid rgb(168, 97, 71);
  background-color: #fff;
  color: #000;
}

.slide5 .content .feature .title {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.slide5 .content .feature .text {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
}

.slide5 .explanation div {
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
  color: #7f8080;
}

.slide5 .explanation .title {
  color: #000;
  font-weight: 500;
}

.slide6 .half_a {
  grid-area: a;
  padding-left: 60px;
  padding-right: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./images/5.jpg) center / cover no-repeat;
}

.slide6 .half_a .preview {
  grid-area: preview;
  padding-top: 100%;
  width: 100%;
  background: url(./images/6.jpg) center/cover no-repeat;
}

.slide6 .half_a > .title {
  margin-bottom: 50px;
  max-width: 400px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.slide6 .half_a table,
.slide6 .half_a th,
.slide6 .half_a td {
  border-collapse: collapse;
}

.slide6 .half_a th,
.slide6 .half_a td {
  padding: 3px;
  height: 60px;
}

.slide6 .half_a tr {
  border-bottom: 1px solid white;
}

.slide6 .half_a .content .title {
  font-family: Roboto, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  word-wrap: break-word;
}

.slide6 .half_a .content .value {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.slide6 .half_a .content .value.plus {
  color: rgb(168, 97, 71);
}

.slide6 .half_b {
  grid-area: b;
  width: 100%;
  min-width: 100%;
  padding-left: 100px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
}

.slide6 .half_b .preview {
  max-width: 100%;
}

.slide6 .half_b table,
.slide6 .half_b th,
.slide6 .half_b td {
  border-collapse: collapse;
}

.slide6 .half_b th,
.slide6 .half_b td {
  padding: 3px;
  height: 60px;

  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #010202;
  text-align: left;
}

.slide6 .half_b tr {
  border-bottom: 1px solid rgb(168, 97, 71);
}

.slide7 {
  display: block;
  position: relative;
  z-index: 10;
}

.slide7 .bg {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./images/5.jpg) center / cover no-repeat;
}

.slide7 .content {
  position: relative;

  padding-left: 60px;
  padding-right: 60px;
  padding-top: 100px;
  padding-bottom: 100px;

  min-height: inherit;
  height: inherit;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(50px, 1fr) auto minmax(50px, 1fr) auto;
  grid-template-areas: "title ." ". ." "subtitle1 subtitle2" ". ." "half_a half_b";
}

.slide7 .titles {
  grid-area: title;
}

.slide7 .subtitle1 {
  grid-area: subtitle1;
}

.slide7 .subtitle2 {
  grid-area: subtitle2;
}

.slide7 .half_a {
  grid-area: half_a;
}

.slide7 .half_b {
  grid-area: half_b;
}

.slide7 .half_a {
  padding-right: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide7 .half_a .feature {
  margin-bottom: 30px;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
  color: rgb(90, 90, 90);
}

.slide7 .half_a .feature .date {
  font-weight: 700;
  color: #000;
}

.slide7 .title {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.slide7 .subtitle1 .subtitle_1 {
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.slide7 .subtitle1 .subtitle_2 {
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: rgb(168, 97, 71);
}

.slide7 .subtitle2 .subtitle_1 {
  padding-left: 60px;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}

.slide7 .subtitle2 .subtitle_2 {
  padding-left: 60px;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: rgb(168, 97, 71);
}

.slide7 .half_b {
  padding-right: 100px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide7 .half_b .feature {
  margin-bottom: 30px;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
  color: rgb(199, 199, 199);
}

.slide7 .half_b .feature .date {
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.slide8 .half_a,
.slide8 .half_b {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.slide8 .half_a .content {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(50px, 1fr) auto minmax(50px, 1fr) auto;
  grid-template-areas: "title" "." "text" "." "preview";
}

.slide8 .half_a .title {
  grid-area: title;
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  color: #010202;
}

.slide8 .half_a .text {
  grid-area: text;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  column-gap: 75px;
  font-family: Roboto, sans-serif;
  font-size: var(--main-text-size);
  font-weight: 400;
  color: #010202;
  line-height: 150%;
}

.slide8 .half_a .preview {
  grid-area: preview;
}

.slide8 .half_a .preview .img {
  max-width: 100%;
  object-fit: cover;
}

.slide8 .half_a .preview .img_title {
  margin-top: 30px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #010202;
}

.slide8 .half_b {
  background-color: #010202;
}

.slide8 .half_b .preview {
  margin: 0 auto;
  display: block;
  max-width: 98%;
  object-fit: cover;
}

.slide9 {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: none;
  grid-template-areas: none;
  justify-content: center;
  background-color: #010202;
  background: url(./images/11.jpg) center / cover no-repeat;
}

.slide9 .titles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slide9 .title {
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}

.slide9 .interesting_button {
  margin-top: 50px;
  min-width: 240px;
  height: 62px;
  left: 30px;
  width: 150px;
  border-radius: 16px;
  text-transform: uppercase;
  background: linear-gradient(270deg, #fb7103, #ee5153);
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  box-shadow: 0 0 3px rgb(0 0 0);
  cursor: pointer;
  transition: all 0.3s;
}

.slide9 .interesting_button:hover {
  box-shadow: 0 0 30px rgba(214, 56, 56);
  background-color: rgba(214, 56, 56, 0.9);
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 2, 2, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_box {
  display: flex;
  flex-direction: column;
  padding: 30px;
  max-width: 80%;
  max-height: 80%;
  border: 1px solid rgb(168, 97, 71);
  background-color: rgba(216, 216, 216, 0.95);
  border-radius: 20px;
}

.input_name,
.input_tel {
  width: 250px;
  height: 30px;
  padding: 10px;
  margin-bottom: 15px;
  border: unset;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.input_submit {
  width: 250px;
  height: 30px;
  border: unset;
  border-radius: 5px;
  background-color: rgb(168, 97, 71);
  color: #fff;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.phone_button_container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  z-index: 100;
}

.phone_button {
  pointer-events: none;
  opacity: 0;
  position: relative;
  padding: 10px;
  top: 30px;
  left: 30px;
  min-width: 240px;
  height: 62px;
  left: 30px;
  width: 150px;
  border-radius: 16px;
  text-transform: uppercase;
  background: linear-gradient(270deg, #fb7103, #ee5153);
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  box-shadow: 0 0 3px rgb(0 0 0);
  cursor: pointer;
  transition: all 0.3s;
}

.phone_button.show {
  pointer-events: unset;
  opacity: 1;
}

.phone_button:hover {
  box-shadow: 0 0 30px rgba(214, 56, 56);
  background-color: rgba(214, 56, 56, 0.9);
}
