/* специфическое для всех неглавных страниц сайта */

:root {
  --logo-color: black;
}

/* Лэйаут состава */
.site__layout {
  position: fixed;
  inset: 0 0;
  z-index: -1;
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  min-height: 100vh;
  /*background-attachment: fixed;*/
  /*border: 1px solid red;*/
}

.site__layout-left {
  width: 100%;
  height: 100%;
  /*height: var(--header-height);*/
  background-color: #1e1d1d;
  background-color: #1e1d1d;
  background-image: url(../img/Rachipa.png);
  background-repeat: no-repeat;
  background-position: top calc(var(--header-height) + 10px) center;
  background-size: cover;
  /*background-blend-mode: difference;  */
}

.site__layout-right {
  /*height: var(--header-height);*/
  width: 100%;
  height: 100%;
  background-color: white;
  background-blend-mode: darken;
}

/* main__content */
.site__main {
  padding-top: 60px;
  padding-left: calc(40vw + var(--padding-left-site-content));
}

.site__main-header {
  padding-right: 20px;
  padding-bottom: 25px;
  color: var(--accent-color);
}

.site__main-header span {
  position: relative;
  font-weight: normal;
}

.site__main-header span::before {
  content: "";
  position: absolute;
  top: 1.1em;
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.site__main-intro {
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
  row-gap: 10px;
  column-gap: clamp(0rem, -0.8245rem + 1.6978vw, 0.625rem); /* 0->10 */
}

.site__main-intro-header {
  padding-right: clamp(
    0.875rem,
    -0.0319rem + 1.8676vw,
    1.5625rem
  ); /* 14 -> 25 */
  font-size: clamp(1.125rem, 0.6303rem + 1.0187vw, 1.5rem); /* 18 -> 20 */
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.site__main-intro-text {
  font-size: clamp(0.875rem, 0.0505rem + 1.6978vw, 1.5rem); /* 14 -> 24 */
}

.site__main-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}

.site__main-about-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1em 2em 1em 2.1em;
}

.site__main-about-content li {
  position: relative;
  font-size: clamp(0.8125rem, 0.5652rem + 0.5093vw, 1rem); /* 13-> 16 */
}

.site__main-about-content li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.7em;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.site__main-about-content li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.4em;
  left: calc(-1.7em + 6px);
  display: block;
  width: 1px;
  height: calc(100% + 10px);
  background-color: var(--accent-color);
}

@media (max-width: 750px) {
  .site__layout {
    position: absolute;
    grid-template-columns: 1fr 0px;
    height: 50vh;
    min-height: 50vh;
  }

  .site__main {
    /*padding: calc(70px + 100vh) 10px 25px;*/
    padding: calc(30px + 50vh) 10px 25px;
  }

  .site__layout-left {
    background-position: top 70px center -200px;
  }
}

@media ((orientation: landscape) and (min-width: 500px) and (max-width: 750px)) {
  .site__layout-left {
    position: fixed;
    width: 33vw;
    height: 100vh;
    background-position: top 10px center;
    /*background-size: 33vw;*/
  }

  :root {
    --logo-color: var(--accent-color);
  }

  .site__header .header__menu-button-container {
    /*background-color: red;*/
    margin-left: 5px;
  }

  .site__header {
    position: relative;
  }

  .site__main {
    padding-top: 10px;
    padding-left: calc(33vw + var(--padding-left-site-content));
  }
}
