:root {
  --grid_1: 12.5vw;
  --grid_1_small: 21vw;
  --grid_2: 15vw;
}

html {
  font-size: 0.66vw;
  font-family: "polymath-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  scroll-behavior: smooth;
}

body {
  background-image: url(../bg_large.svg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #000;
}

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

.h2 {
  flex: 1;
  width: 100%;
  position: relative;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 900;
  color: #000;
  text-align: right;
  display: inline-block;
}

.h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  background-color: #000;
  text-align: right;
}

.h4 {
  font-family: "polymath", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
}

.col {
  padding: 1.6rem 2.4rem;
  box-sizing: border-box;
}

.grid {
  display: grid;
  grid-template-columns: var(--grid_1) var(--grid_2) repeat(4, 1fr);
  font-size: 1rem;
}

#social_side {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 10.8rem;
  background-image: url(../social_bg.svg?v=2);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 500;
  gap: 1em;
  box-sizing: border-box;
  padding-top: 2.4rem;
}
#social_side a img {
  width: 2.4rem;
  height: auto;
  display: block;
}
#social_side a ._hover {
  display: none;
}
#social_side a:hover ._hover {
  display: block;
}
#social_side a:hover ._main {
  display: none;
}

#drop_menu {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #000;
}
#drop_menu ._top {
  display: grid;
}
#drop_menu ._top .nav._1 {
  background-color: #fff;
  padding: 1.2rem 2.4rem;
  border: none;
}
#drop_menu ._top .nav._2 {
  background-color: #16d56f;
  border: none;
}
#drop_menu .wrapper {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow: auto;
}
#drop_menu #close {
  cursor: pointer;
  background: #16d56f;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
#drop_menu #close span {
  font-size: 3.6rem;
}

.secondary_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 1rem;
  grid-column: auto/span 4;
}
.secondary_grid .col {
  min-height: 18.5vw;
  padding: 2.4rem;
  box-sizing: border-box;
  border-right: solid 1px;
  border-bottom: solid 1px;
}
.secondary_grid ._desc {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  display: flex;
  gap: 0.51em;
  align-items: flex-start;
}
.secondary_grid ._text {
  line-height: 1.4;
}
.secondary_grid h4 {
  min-height: 6vw;
}

.span-1 {
  grid-column: auto/span 1;
}

.span-2 {
  grid-column: auto/span 2;
}

.span-4 {
  grid-column: auto/span 4;
}

#burger {
  display: none;
}

.logo img {
  width: 100%;
}

#top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: solid 1px #16d56f;
  background: #16d56f;
}
#top ._2 img {
  width: 100%;
}

#top .nav,
#drop_menu .nav {
  background-color: #000;
  height: 100%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.12;
  font-family: "polymath", sans-serif;
  box-sizing: border-box;
  border-right: solid 1px #16d56f;
  position: relative;
}
#top .nav._1,
#drop_menu .nav._1 {
  background-color: #fff;
  padding: 1.2rem 2.4rem;
  border: none;
}
#top .nav._1::before,
#drop_menu .nav._1::before {
  display: none;
}
#top .nav._2,
#drop_menu .nav._2 {
  background-color: #16d56f;
  border: none;
}
#top .nav._2::before,
#drop_menu .nav._2::before {
  display: none;
}
#top .nav._6,
#drop_menu .nav._6 {
  border: none;
}
#top .nav span,
#drop_menu .nav span {
  position: relative;
  z-index: 5;
  transition: color 0.2s, delay 0.3s;
}
#top .nav::before,
#drop_menu .nav::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #16d56f;
  z-index: 0;
  transition: width 0.8s ease-out;
}
#top .nav:hover span,
#drop_menu .nav:hover span {
  color: #000;
}
#top .nav:hover::before,
#drop_menu .nav:hover::before {
  width: 100%;
}

#banner {
  aspect-ratio: 14/8;
  background-image: url(../bg.jpg?v=123);
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  margin-top: 7.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#banner::before {
  content: " ";
  background-color: #16d56f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 14/8;
  mix-blend-mode: multiply;
}
#banner h1 {
  color: #fff;
  max-width: 75vw;
  position: relative;
  font-size: 5.6vw;
  letter-spacing: -0.005em;
  line-height: 0.92;
  font-weight: 900;
  padding: 5rem;
  text-align: left;
  display: inline-block;
}
#banner ._bottom {
  margin-top: auto;
  position: relative;
  z-index: 10;
}
#banner ._bottom .col {
  background-color: #16d56f;
  grid-column: 2/span 1;
  height: 10vh;
}

._sticky {
  position: sticky;
  top: 8.5rem;
}

#about {
  background-color: #fff;
}
#about .h2 {
  align-self: flex-start;
}
#about #moto_vertical {
  background-color: #16d56f;
  flex: 1;
  width: 100%;
  position: relative;
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 500;
  color: #000;
  text-align: left;
  display: inline-block;
}
#about .about_main {
  grid-column: 3/span 3;
  height: 100%;
  flex: 1;
  width: 100%;
  position: relative;
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: "polymath", sans-serif;
  color: #000;
  text-align: left;
  display: inline-block;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-bottom: 8em !important;
}
#about .col {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

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

._link {
  color: #16d56f;
  gap: 0.05em;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 2rem;
  font-family: "polymath", sans-serif;
  box-sizing: border-box;
  font-size: 2rem;
  height: 100%;
  border-left: solid 1px;
  position: relative;
}
._link span {
  position: relative;
  z-index: 2;
}
._link ._icon {
  font-size: 2.4rem;
}
._link::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #16d56f;
  transition: width 0.25s ease-out;
  z-index: 0;
}
._link:hover {
  color: #000;
}
._link:hover::before {
  width: 100%;
}

#equipment_header {
  background-color: #000;
  z-index: 50;
  align-items: center;
}
#equipment_header .h2 {
  color: #000;
  background-color: #16d56f;
}
#equipment_header ._link {
  grid-column: -1/span 1;
  margin-left: auto;
}

#equipment .equipment_item {
  position: relative;
  background-color: #fff;
}
#equipment .equipment_item ._arrow {
  font-size: 2.4rem;
}
#equipment .equipment_item ._arrow span {
  font-size: inherit;
}
#equipment .equipment_item::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #000;
  transition: width 0.25s ease-out;
}
#equipment .equipment_item:hover * {
  color: #fff;
  z-index: 5;
  position: relative;
}
#equipment .equipment_item:hover .h4 {
  color: #16d56f !important;
}
#equipment .equipment_item:hover::before {
  width: 100%;
}
#equipment .equipment_item:hover ._link_icon {
  opacity: 1;
  visibility: visible;
  color: #16d56f !important;
}
#equipment .equipment_item:hover ._link_icon span {
  font-size: inherit;
  color: inherit;
}
#equipment .equipment_item:hover ._link_icon:hover {
  color: #fff;
}
#equipment ._link_icon {
  font-size: 2.4rem;
  color: #16d56f;
  position: absolute !important;
  bottom: 2.4rem;
  right: 2.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
#equipment ._link_icon span {
  font-size: inherit;
  color: inherit;
}
#equipment .empty {
  background-color: #16d56f;
}
#equipment .chapter {
  /*  background-image: url(../diag.svg?v=2.0);
      background-repeat: repeat;
      background-size: contain;
  */
}
#equipment h3.col {
  padding-top: 0.9em;
  padding-bottom: 0.9em;
  height: 50%;
  max-height: 9.5vw;
  background-color: #000;
}

#cv {
  background-color: #fff;
}
#cv .cv_data {
  background: #000;
  color: #fff;
  grid-column: auto/span 5;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#cv .cv_data .col {
  padding-top: 0;
  padding-bottom: 0;
}
#cv ._row {
  display: grid;
  grid-template-columns: var(--grid_2) 1fr;
  font-family: "polymath", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}
#cv ._row h3 {
  font-family: "polymath-display", sans-serif;
  grid-column: 2;
  font-size: 2.8rem;
  font-weight: 500;
}
#cv ._row strong {
  font-weight: 400;
  text-align: right;
}
#cv ._row span.col {
  width: 80%;
}

#cv_header {
  z-index: 500;
}
#cv_header ._empty {
  background: #16d56f;
  grid-column: 2/span 1;
}
#cv_header .h2 {
  grid-column: 1/span 2;
  text-align: left;
  color: #000;
  background: #16d56f;
  font-family: "polymath", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  text-align: right;
}
#cv_header ._actions {
  grid-column: auto/span 3;
}

#work {
  grid-column: 2/span 5;
}
#work .grid {
  grid-template-columns: var(--grid_2) repeat(4, 1fr);
}
#work .h3 {
  color: #16d56f;
  background-color: #000;
  padding-bottom: 5.2rem !important;
}
#work ._actions {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #16d56f;
}
#work .title {
  background-color: #16d56f;
}
#work .grid.lg_padding .col {
  padding: 2.4rem;
}
#work .flex-box {
  display: flex;
  flex-direction: column;
  grid-column: auto/span 4;
  width: 100%;
}
#work .work_item {
  display: grid;
  grid-template-columns: repeat(2, 45%);
  font-family: "polymath", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  border-bottom: solid 1px #16d56f;
  position: relative;
}
#work .work_item._single {
  grid-template-columns: 1fr;
}
#work .work_item._single ul {
  list-style: initial;
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.61em;
}
#work .work_item::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../corner.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
#work .work_item > div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#work .work_item .h4 {
  font-weight: inherit;
  font-weight: 600;
  font-style: italic;
}
#work .work_item .h5 {
  font-weight: inherit;
  font-weight: 600;
}
#work ._right ._desc {
  display: grid;
  align-items: start;
  grid-template-columns: 30% 1fr;
  gap: 1em;
}
#work ._right ._desc h5 {
  text-align: right;
}
#work ._right ._desc ._text {
  font-weight: 600;
}

#contact .h2 {
  background-color: #000;
  color: #fff;
}
#contact .cv_data {
  background: #16d56f;
  color: #000;
  grid-column: auto/span 5;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#contact .cv_data .col {
  padding-top: 0;
  padding-bottom: 0;
}
#contact ._row {
  display: grid;
  grid-template-columns: var(--grid_2) 1fr;
  font-family: "polymath", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}
#contact ._row h3 {
  font-family: "polymath-display", sans-serif;
  grid-column: 2;
  font-size: 2.8rem;
  font-weight: 500;
}
#contact ._row strong {
  font-weight: 400;
  text-align: right;
  color: #fff;
}
#contact ._row span.col {
  width: 80%;
}

#footer .logo_bottom {
  padding-top: 50vh;
  padding-bottom: 10vh;
  /*  background-image: url(../diag.svg);
    background-size: contain;
    background-repeat: repeat;*/
  grid-column: auto/span 2;
  display: flex;
}
#footer .logo_bottom img {
  width: 80%;
  margin: auto;
}
#footer .bottom_menu {
  padding-top: 54.5vh;
  font-family: "polymath", sans-serif;
  font-size: 1.8rem;
  grid-column: auto/span 4;
  display: flex;
  flex-direction: column;
  background-color: #000;
}
#footer .bottom_menu h5 {
  font-size: inherit;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1em;
}
#footer .bottom_menu .navigation {
  display: flex;
  flex-direction: column;
  gap: 0.51em;
}
#footer .bottom_menu .navigation a {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  padding: 0;
}
#footer .bottom_menu .copyright {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1em;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .secondary_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-2 {
    grid-column: auto/span 1;
  }
  .span-4 {
    grid-column: auto/span 2;
  }
  #work .work_item {
    grid-template-columns: repeat(2, 50%);
  }
}
@media (max-width: 980px) {
  html {
    font-size: 10px;
  }
  .grid {
    grid-template-columns: var(--grid_1_small) 21rem 1fr;
  }
  #burger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }
  #burger img {
    width: 2.2rem;
  }
  #top .anchor {
    display: none;
  }
  #top .nav,
  #drop_menu .nav {
    border-right: none;
  }
  #banner {
    aspect-ratio: 5/3;
  }
  #banner::before {
    aspect-ratio: 5/3;
  }
  #banner ._bottom {
    display: none;
  }
  #about #moto_vertical {
    display: none;
  }
  #about .about_main {
    grid-column: auto/span 2;
  }
  #equipment .empty {
    display: none;
  }
  #equipment .secondary_grid {
    grid-column: auto/span 2;
  }
  #cv ._row {
    grid-template-columns: var(--grid_1_small) 1fr;
  }
  #cv_header .h2 {
    text-align: left;
  }
  #cv_header ._empty {
    display: none;
  }
  #work .flex-box {
    grid-column: auto/span 5;
    width: 100%;
  }
  #work .empty {
    display: none;
  }
  #work .title {
    grid-column: 1/-1;
  }
  #work .h3 {
    text-align: left;
  }
  .h2 {
    text-align: left;
  }
  .h3 {
    text-align: left;
  }
  #cv h3 {
    text-align: left;
  }
  #cv ._row {
    display: flex;
    flex-direction: column;
  }
  #cv ._row strong {
    text-align: left;
  }
  #footer .logo_bottom {
    grid-column: auto/span 1;
  }
  #footer .bottom_menu {
    grid-column: auto/span 2;
  }
  body.show_drop #drop_menu {
    display: block;
  }
  .copyright {
    margin-top: 5rem !important;
  }
  #contact ._row {
    grid-template-columns: 17rem 1fr;
  }
  #contact .h2 {
    grid-column: 1/-1;
  }
}
@media (max-width: 800px) {
  #top .grid,
  #drop_menu .grid {
    grid-template-columns: 17rem 21rem 1fr;
    align-items: center;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .secondary_grid {
    grid-template-columns: 1fr;
  }
  .secondary_grid .col {
    min-height: auto;
  }
  #work .work_item {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  #work ._right ._desc {
    display: flex;
    gap: 0.61em;
  }
  #work ._right ._desc h5 {
    text-align: left;
  }
  #about .col {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  #banner h1 {
    padding: 2.4rem;
    max-width: 90vw;
    font-size: 7vw;
  }
  #footer .logo_bottom {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  #footer .logo_bottom img {
    max-width: 25rem;
    margin-left: 0;
    padding-left: 2.4rem;
  }
  #footer .bottom_menu {
    grid-column: auto/span 1;
    padding-top: 5vh;
  }
  ._sticky {
    top: 8rem;
  }
  #about .h2 {
    background-color: #fff;
    z-index: 10;
  }
  #cv_header .h2 {
    grid-column: 1/span 4 !important;
  }
  #cv .cv_data {
    grid-column: 1/-1;
  }
  #cv .h2 {
    grid-column: 1/-1;
    width: 100%;
    background-color: #fff;
    z-index: 4;
  }
  #work {
    grid-column: 1/-1;
  }
  #work ._actions {
    grid-column: auto/-1;
  }
  #work .h2 {
    background-color: #16d56f;
  }
  #equipment .h3.col {
    height: 100%;
    max-height: 100%;
  }
}
@media (max-width: 600px) {
  /* ._sticky {
       position: relative;
       top: 0;
   }*/
  html {
    font-size: 8px;
  }
  #banner {
    aspect-ratio: 1/1;
  }
  #banner::before {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 8px;
  }
  ._moto {
    display: none;
  }
  #drop_menu #close {
    grid-column: auto/span 2;
  }
  #top .nav._moto {
    grid-column: 1/-1;
    grid-row: 2;
    display: none;
  }
  #top .grid {
    grid-template-columns: 17rem 1fr;
  }
  #burger {
    grid-column: auto/span 1;
  }
  #banner h1 {
    font-size: 7vw;
  }
  #work .grid {
    grid-template-columns: 1fr;
  }
  #work ._actions {
    justify-content: flex-start;
    border-bottom: solid 1px #16d56f;
    grid-column: 4/span 1;
  }
  #contact ._row {
    display: flex;
    flex-direction: column;
    gap: 0.21em;
  }
  #contact ._row strong {
    text-align: left;
  }
  #cv_header {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  #cv_header .h2 {
    grid-column: 1/span 3 !important;
  }
}/*# sourceMappingURL=general.css.map */