
*::-webkit-scrollbar {
  width: 8px;
}
textarea::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #6f0000;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #A90218;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
html, body {
  margin: 0px;
  padding: 0px;
  font-family: 'Montserrat';
  background-color: #070914;

  --max-width: 1450px;
  --side-padding: 25px;
  --header-height: 100px;
  --text-accent: #ffffff;
  --text-color: #B7B7B7;
  --accent-color: #A90218;
  --bg-transparent: rgba(16,16,16,0.5);
  --border-color: #323232;
  --glow-color: rgba(169, 2, 24, 0.5);
  --page-blur: blur(3px);
  --noscroll-padding: 8px;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
body.noscroll {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
body.modal-open {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
p {
  color: var(--text-color);
}
.header_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
  transition: 0.5s;
  background-color: rgba(7,9,20, 0.6);
}
.header_wrapper.scrolled {

}
.header_wrapper.mobmenu_active {
  filter: var(--page-blur);
}
.header {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px var(--side-padding) 25px var(--side-padding);
  box-sizing: border-box;
}
.header .header_logo {
  display: flex;
  text-decoration: none;
}
.header .header_logo svg {
  width: auto;
  height: 50px;
}
.header_phone {
  display: flex;
  align-items: center;
  font-weight: 100;
  font-size: 22px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: var(--text-accent);
  font-family: 'Montserrat';
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.header_phone svg {
  width: auto;
  height: 19px;
  fill: #E5BC15;
  margin-right: 15px;
}
.header_mail {
  display: flex;
  align-items: center;
  font-weight: 100;
  font-size: 22px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: var(--text-accent);
  font-family: 'Montserrat';
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.header_mail svg {
  width: auto;
  height: 19px;
  fill: #E5BC15;
  margin-right: 15px;
}


.page_block_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.main_wrapper {
  padding-top: var(--header-height);
  transition: 0.5s;
  position: relative;
}
.page_block_wrapper.first {
  box-sizing: border-box;
  padding: 100px 0px;
}


.page_block {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: center;
  padding: 0px var(--side-padding);
  box-sizing: border-box;
}



h2.title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  text-transform: uppercase;
}
h2.title.center {
  text-align: center;
}
p {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  margin-bottom: 25px;
}
p:last-child {
  margin-bottom: 0px;
}
p.bold {
  font-weight: 500;
  color: var(--text-accent);
}
h3.title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px;
}
ul {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  padding-left: 47px;
  list-style: none;
  margin-bottom: 25px;
}
ul:last-child {
  margin-bottom: 0px;
}
ul li {
  position: relative;
  margin-bottom: 10px;
}
ul li:last-child {
  margin-bottom: 0px;
}
ul li::after {
  position: absolute;
  content: '';
  left: -22px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.first_block_content {
  width: 100%;
}
.plug_usl_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 50px;
}

.plug_usl_item {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 50px;
}
.plug_usl_list .list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  padding-left: 25px;
  padding-bottom: 25px;
  box-sizing: border-box;
  position: relative;
}
.plug_usl_list .list::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100%;
  border-left: 1px solid #E5BC15;
  border-bottom: 1px solid #E5BC15;
}
.plug_usl_list .list div {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
}

.site_in_work_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(7,9,20, 0.6);
  height: 100px;
  position: relative;
  z-index: 10;
}
.site_in_work {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0px;
}

.main_video {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.main_video::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(7,9,20, 0.7);
}
._fb_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}









/* ========================================================================== */
