:root {
  --color-primary: #ff0000;
  --color-secondary: #e00000;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-dark: #2b2b2b;
  --color-bg-light: #f5f5f5;
  --font-main: 'Onest', sans-serif;
  --ix: calc(1vw + 1vh);
  --1b: calc(100% - var(--md) * 2);
  --2b: calc(100% / 2 - var(--md) * 2);
  --3b: calc(100% / 3 - var(--md) * 2);
  --4b: calc(100% / 4 - var(--md) * 2);
  --5b: calc(100% / 5 - var(--md) * 2);
  --6b: calc(100% / 6 - var(--md) * 2);
  --12b: calc(100% / 12 - var(--md) * 2);
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0;}
body, html { font-size: 100%; padding: 0; margin: 0; line-height: 1;}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-black);
  color: var(--color-white);
}

* {
  box-sizing: border-box;
}

a {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    color: var(--color-primary);
  text-decoration: none;

}

a:hover {
    opacity: 0.9;
}

h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1470px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title {
  position: relative;
  color: var(--color-white);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.5;
  padding-top: 50px;
  margin-bottom: 60px;
  text-align: center;
}

.section-title:before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: calc(50% - 45px);
  width: 90px;
  height: 10px;
  background-color: var(--color-primary);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  padding: 20px 40px;
  transition: opacity 0.3s ease;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn:hover {
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .container {
  }
  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-title:before {
    bottom: -30px;
    left: calc(50% - 25px);
    width: 50px;
    height: 5px;
  }
  .btn {
    font-size: 18px;
    padding: 20px 30px;
  }
}

/* CSS for section section:Header */
.header {
  position: relative;
}

.header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 300px;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav-mobile {
  display: none;
}

.main-nav {

}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-white);
}
.main-nav a:hover {
  color: var(--color-white);
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #000;
    padding-bottom: 30px;
  }

  .main-nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

  .main-nav-mobile {
    display: block;
  }
}

/* CSS for section section:Hero */
.hero {
  width: 100%;
  color: var(--color-white);
}
.hero-img {
  width: 100%;
  height: auto;
}


/* --------------------------------- */
.team {
  margin-top: -250px;
  margin-bottom: 100px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 150px;
  padding-bottom: 50px;
}

.team-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15%;
}

.team-item:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  background-color: #666666;
}

.team-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.team-item-h {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 30px;
  text-align: center;
}

.team-item-t {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 30px;
  text-align: center;
}

.team-mini-text {
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  margin-top: 0px;
  margin-bottom: 100px;
}

@media (max-width: 1200px) {
  .team {
    margin-top: -150px;
  }
}

@media (max-width: 1000px) {
  .team {
    margin-top: -100px;
  }

  .team-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-top: 100px;
    padding-bottom: 50px;
  }

  .team-item-h {
    font-size: 18px;
  }

}

@media (max-width: 600px) {
  .team {
    margin-top: 0px;
  }
}

/* --------------------------- */
.bronner {

}
.bronner-h {
  padding-top: 50px;
  padding-bottom: 50px;
}
.bronner-h img {
  width: 100%;
  height: auto;
}

.bronner-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.bronner-info-img {
  display: flex;
  width: 100%;
  height: 100%;
}

.bronner-info-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bronner-info-text {
  display: flex;
  align-items: center;
  padding: 50px;
}

.bronner-lq .bronner-info-text {
  justify-content: flex-start;
}

.bronner-spl .bronner-info-text {
  justify-content: flex-end;
}

.bronner-info-text-b {
  max-width: 690px;
}

.bronner-info-text h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.bronner-info-text h3 span {
  font-size: 36px;
  white-space: nowrap;
}

.bronner-info-text p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 10px;
}
.bronner-info-text ul li {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 30px;
  background: url(images/li.png) no-repeat 0 50%;
}
.bronner-spl .bronner-info-text ul li {
  background: url(images/li2.png) no-repeat 0 50%;
}
@media (max-width: 1000px) {
  .bronner-info {
    display: flex;
    flex-direction: column;
  }
  .bronner-info-img {
    width: 100%;
    height: auto;
  }
  .bronner-spl .bronner-info-text {
    order: 2;
  }
  .bronner-spl .bronner-info-img {
    order: 1;
  }

  .bronner-spl .bronner-info-text {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .bronner-info-text {
    padding: 30px;
  }

  .bronner-info-text-b {
    max-width: 100%;
  }

  .bronner-info-text h3 {
    font-size: 14px;
  }

  .bronner-info-text h3 span {
    font-size: 20px;
  }

  .bronner-info-text p {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .bronner-info-text ul li {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* --------------------------------- */
.qr {
  margin-bottom: 100px;
}

.qr-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.qr-content-block {
  display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.qr-content-img {
  width: 160px;
  height: auto;
  margin-bottom: 30px;
}

.qr-content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-content-text {
  font-size: 20px;
  line-height: 1.5;
	text-align: center;
}

@media (max-width: 1000px) {
  .qr-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .qr-content-img {
    width: 80px;
  }

  .qr-content-text {
    font-size: 14px;
  }

}

/* ------------------------------ */
.reg {
  padding-top: 100px;
}

.reg-h {
  position: relative;
  color: var(--color-white);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 50px;
  text-align: center;
}

.reg-but {
  display: flex;
  align-items: center;
  justify-content: center;
}


.copyright {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}

@media (max-width: 760px) {

  .reg-h {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .copyright {
    font-size: 12px;
  }

}
















.form-w {
    display: none;
    min-width: 260px;
    max-width: 500px !important;
    height: auto;
}

.form-block {
    position: relative;
    width: 100%;
    height: 100%;
}

.form-block-d-h {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}

.form-block-d-t {
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

.form-block-ft {
  font-size: 12px;
  margin-bottom: 5px;
}

.form-block-f input, .form-block-f select {
    width: 100%;
    font-size: 22px;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-left: 60px;
}

.form-checkbox {
  margin: var(--md);
}

.form-block .form-checkbox {
  margin: 0 0 20px;
}

.c-checkbox {
  height: 20px;
}

.c-checkbox > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.c-checkbox > span {
  display: inline-block;
  position: relative;
    font-size: 12px;
    line-height: 1.3;
    padding-left: 30px;
}

.c-checkbox > span::before {
  position: absolute;
  top: -2px;
  left: 0;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 3px solid #fff;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.form-block .c-checkbox > span::before {
    border: 3px solid #eee;
    background-color: #eee;
}

.c-checkbox > span a {
    border-bottom: 1px solid;
}

.c-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #fff;
}

.c-checkbox>input:not(:disabled):active+span::before {
    background-color: #fff;
    border-color: #fff;
}

.c-checkbox>input:focus+span::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.c-checkbox>input:focus:not(:checked)+span::before {
    border-color: #80bdff;
}

.c-checkbox>input:checked+span::before {
    border-color: #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23912c3b' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.c-checkbox>input:disabled+span::before {
    background-color: #e9ecef;
}

input[name=name] {
  background: url(images/form-man.png) no-repeat 20px 50%;
}

input[name=phone] {
  background: url(images/form-phone.png) no-repeat 20px 50%;
}

input[name=e_mail] {
  background: url(images/form-mail.png) no-repeat 20px 50%;
}


.form-block-btn input[type=submit] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    letter-spacing: 2.2px;
    padding: 25px 60px;
    cursor: pointer;
    width: 100%;
    border-radius: 40px;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    background-color: var(--color-accent);
}

.form-block-mes {
    font-size: 20px;
    text-align: center;
    padding: 15px;
    background-color: #eee;
    text-align: center;
    margin-bottom: 20px;
}

.b-top {
  z-index:12;
  position:fixed;
  right:20px;
  bottom:80px;
  width:64px;
  opacity: 0.6;
  filter:alpha(opacity=60);
}

.b-top:hover {
  opacity:1;
  filter:alpha(opacity=100);
  cursor:pointer;
}

.b-top-but {
  z-index:2600;
  position:absolute;
  display:block;
  left:0px;
  font-size: 12px;
  bottom:0;
  margin:0 0 0 0;
  padding:32px 12px 10px;
  color:white;
  background: #2a2e43 url(images/b-j-top.png) no-repeat 50% 11px;
  border-radius:3px;
}



@media screen and (min-width:1201px) {
  :root {
    --md: 15px;
    --pd: 15px;
  }
}

@media screen and (max-width:1200px) {
  :root {
    --md: 10px;
    --pd: 10px;
  }
}

@media screen and (min-width:1440px) {
  .b {
    width: 1440px;
  }

  .header-block-nav-mob, .f-inf-nav-mob {
    display: none;
  }
}

@media screen and (min-width:1201px) and (max-width:1439px) {
  .b {
    width: 1200px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (min-width:961px) and (max-width:1200px) {
  .b {
    width: 960px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (min-width:720px) and (max-width:960px) {
  .b {
    width: 720px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (max-width:719px) {
  body {
    font-size: 14px;
  }

  .b {
    width: 320px;
  }

  input[type=submit], form button, .but {
    min-width: 240px;
    padding: 0 20px;
    font-size: 16px;
  }

  .form-block-d-h {
    font-size: 20px;
  }

  .form-block-d-t {
    font-size: 14px;
  }

}