@keyframes sweep {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes order-button {

  form,
  to {
    box-shadow: 0px 0px 10px #6969696c;
  }

  50% {
    box-shadow: 0px 0px 10px 5px #6969696c;
  }
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url(./fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url(./fonts/Montserrat-Light.ttf);
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(./fonts/Montserrat-Bold.ttf);
}


header.main {
  display: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat-Bold';
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-family: 'Montserrat-Regular';
  position: relative;
}

main section,
nav.anticor-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
}

.anticor-from-order.active {
  padding: 0;
}

span.anticor-line {
  width: 100%;
  height: 3px;
  display: block;
  background: linear-gradient(269deg, #000000 20%, #ffcd00 50%, #000000 80%);
}

section.anticor-banner {
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  background-color: #0000008c;
  padding: 0;
  overflow: hidden;
}

section.anticor-banner video {
  position: relative;
  z-index: -1;
}

section.anticor-banner h1 {
  font-size: 50px;
  text-align: right;
  position: absolute;
  right: 5%;
  top: 5%;
  width: 50%;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Montserrat-Bold';
}

section.anticor-banner img {
  max-width: 5%;
  position: absolute;
  top: 5%;
  left: 5%;
}

section.anticor-info-text {
  background: linear-gradient(to top, #000000 50%, #00000000 100%);
  position: relative;
  margin-top: -250px;
  padding: 0;
}

section.anticor-info-text h2 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  width: 70%;
  margin-top: 80px;
  color: #ffcd00;
}

section.anticor-info-text p {
  font-size: 18px;
  margin: 0;
  color: #fff;
  width: 70%;
  text-align: justify;
  font-family: 'Montserrat-Regular';
}

section.anticor-info-text ul {
  line-height: 1.7;
  font-size: 17px;
}

nav.anticor-menu {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  position: relative;
  padding: 50px 0 100px;
  flex-wrap: nowrap;
  background-color: #000000;
}

nav.anticor-menu a {
  padding: 15px 15px;
  text-decoration: none;
  color: #ffcd00;
  background-color: #1f1f1f;
  background-image: linear-gradient(to bottom, transparent, transparent 50%, #ffcd00 50%, #ffcd00);
  background-position: 0 0;
  background-size: 100% 195%;
  transition: all .5s ease-in;
  margin: 0 30px;
  cursor: pointer;
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
}

nav.anticor-menu a:hover {
  text-decoration: none;
  color: #000;
  transition: .5s;
  background-position: 0 100%;
  background-size: 100% 200%;
}

img#topline {
  position: absolute;
  width: 100%;
  bottom: -1px;
}

img#topline_black {
  position: absolute;
  width: 100%;
  top: -1px;
}

section.anticor-cars-block {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  background: linear-gradient(0deg, #000000 0%, #383838 35%, #000000 100%);
}

div.all-cars {
  display: flex;
  width: 90%;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: baseline;
}

section.anticor-cars-block h1 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

section.anticor-cars-block div.car {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.anticor-cars-block div.car img {
  width: 80%;
}

span.car-name {
  display: none;
}

section.anticor-cars-block p.price {
  font-size: 18px;
  position: relative;
  cursor: pointer;
}

section.anticor-cars-block p.price span {
  color: #fff;
  font-family: 'Montserrat-Regular';
}


section.anticor-options h1 {
  width: 100%;
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

section.anticor-cars-block p.price span::before {
  height: 15px;
  width: 15px;
  border: 2px solid #ffcd00;
  border-radius: 100%;
  left: -30px;
  margin-top: 3px;
  content: "";
  position: absolute;
  background-color: #00000000;
  box-shadow: inset 0px 0px 0px 2px #00000000;
}

section.anticor-cars-block p.price span.active {
  color: #ffcd00;
  font-weight: bold;
}

section.anticor-cars-block p.price span.active::before {
  background-color: #ffcd00;
  box-shadow: inset 0px 0px 0px 2px #333;
}

section.anticor-cars-block span.old,
form#anticorform span.old {
  text-decoration: line-through;
  font-size: 16px;
}

section.anticor-cars-block button.order {
  margin-top: 15px;
  border: none;
  background-color: #ffcd00;
  color: #000;
  font-size: 15px;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: 0.5s;
  cursor: pointer;
  font-family: 'Montserrat-Regular';
}

section.anticor-cars-block button.order:hover,
form#anticorform button[type="submit"]:hover {
  background-color: #ffdc4e;

  transition: 0.5s;
}

section.anticor-from-order {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000000b3;
  justify-content: center;
  align-items: center;
  align-self: center;
  display: none;
}

section.anticor-from-order.active {
  display: flex;
}

form#anticorform {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 400px !important;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #fff;
  padding: 20px 20px 10px 20px;
  border-radius: 35px;
  box-shadow: 1px 2px 20px 3px #000;
}

a.button-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: #ffcd00;
  height: 25px;
  width: 25px;
  font-size: 20px;
  border-radius: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
  transform: rotate(45deg);
  cursor: pointer;
}

form#anticorform div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
  margin-left: 30px;
}

form#anticorform span {
  margin: 10px 0;
}

span.name-model-car,
span.price {
  font-size: 20px;
  font-weight: bold;
}

form#anticorform span.price {
  color: green;
}

input#theme,
input#anticor {
  display: none;
}

input#phone,
input#model {
  border: none;
  border-radius: 10px;
  background-color: #ececec;
  color: #000;
  width: 90%;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 10px;
}

form#anticorform button[type="submit"] {
  width: auto;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 16px;
  background-color: #ffcd00;
  ;
  transition: 0.5s;
  padding: 5px 10px;
}

div.otvet a.button-close {
  position: relative;
  top: -45px;
  right: 45px;
}

section.anticor-advantages {
  position: relative;
  background-color: #000000;
  padding: 50px 0;
}

section.anticor-advantages .gray-bg {
  color: #fff;
  background: none;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 0;
}

.fa {
  background-color: #3330 !important;
  font-size: 30px !important;
  width: 35px !important;
}

span.ns-grat-text {
  font-size: 16px;
  line-height: 4em;
  font-family: 'Montserrat-Regular';
}

section.anticor-advantages h3 {
  font-size: 40px;
  color: #fff;
}

section.anticor-advantages h3 b {
  font-family: 'Montserrat-Bold';
}

section.anticor-options {
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  background-color: #000;
}

section.anticor-options div {
  width: 35%;
  display: flex;
  flex-direction: column;
}

div.first-processing {
  margin-right: 20px;
}

section.anticor-options details summary::-webkit-details-marker,
section.anticor-answer details summary::-webkit-details-marker {
  display: none;
}

section.anticor-options details[open] summary~* {
  animation: sweep 1s ease-in-out;
  color: #fff;
  font-family: 'Montserrat-Regular';
}

section.anticor-options details>summary {
  list-style: none;
  font-size: 18px;
  background-color: #1f1f1f;
  padding: 25px 20px;
  color: #ffcd00;
  margin: 5px 0;
  cursor: pointer;
  border-left: 5px solid #ffcd00;
  background-image: linear-gradient(to left, transparent, transparent 50%, #ffcd00 50%, #ffcd00);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: all .25s ease-in;
  outline: 0;
  position: relative;
  font-family: 'Montserrat-Regular';
}

section.anticor-options details>summary:hover,
section.anticor-options details[open] summary {
  color: #000;
  transition: all .25s ease-in;
  background-position: 0 0;

}

section.anticor-options details summary:before {
  content: "+";
  margin-right: 8px;
  font-weight: bold;
  font-size: 22px;
}

section.anticor-options details[open] summary:before {
  content: "-";
  font-weight: bold;
}

section.anticor-options summary:after,
section.anticor-answer summary:after {
  right: 0.3em;
  color: transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTYuNTkgOC41OUwxMiAxMy4xNyA3LjQxIDguNTkgNiAxMGw2IDYgNi02eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=") no-repeat 50% 50% / 1.5em 1.5em;
  width: 32px;
  height: 25px;
  content: "";
  position: absolute;
  transition: transform 0.5s;
}

section.anticor-options details[open]>summary:after,
section.anticor-answer details[open]>summary:after {
  transform: scale(1, -1);
}

section.anticor-answer {
  align-items: center;
  position: relative;
  background-color: #000000;
}

section.anticor-answer h1 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

section.anticor-answer details {
  padding: 30px;
  margin-bottom: 5px;
  background-color: #1b1b1b;
  width: 65%;
  position: relative;
  font-size: 20px;
  transition: 0.5s;
  color: #fff;
  cursor: pointer;
}

section.anticor-answer summary:after {
  right: 20px;
  border-radius: 5px;
  border: 1px solid #ffcd00;
  background-color: #ffcd00;
  width: 30px;
  height: 30px;
  top: 23px;
  transition: 0.5s;
}

section.anticor-answer details[open],
section.anticor-answer details:hover {
  box-shadow: 0px 1px 20px 0px #c5c5c594;
  transition: 0.5s;
}

section.anticor-answer details:hover summary:after,
section.anticor-answer details[open] summary:after {
  transition: 0.5s;
}

section.anticor-answer details p {
  font-size: 18px;
  margin-top: 30px;
  font-family: 'Montserrat-Regular';
}

section.anticor-answer details>summary {
  list-style: none;
  font-family: 'Montserrat-Regular';
}

footer {
  display: none;
  background-color: #000000;
}

p.footnote {
  font-family: 'Montserrat-Regular';
  color: #fff;
  background-color: #000000;
  width: 60%;
  margin: 40px auto;
}

form h2 {
  color: #000;
}

#akcia_desc,
.results.hidden .container {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
}

section.anticor-order-button {
  padding: 0;
  justify-content: flex-end;
  align-items: flex-end;
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: -1;
  opacity: 0;
  transition: 1s;
}

section.anticor-order-button.active {
  display: flex;
  z-index: 9;
  opacity: 1;
  transition: .5s;
}

section.anticor-order-button a {
  text-decoration: none;
  color: #ffcd00;
  font-size: 18px;
  background-color: #1b1b1b;
  padding: 10px 30px;
  box-shadow: 0px 0px 10px #6969696c;
  border: 1px solid #ffcd00;
  transition: 0.5s;
  animation: order-button 2s infinite ease-in-out;
  position: relative;
  z-index: 9;
}

section.anticor-order-button a:hover {
  background-color: #ffcd00;
  color: #000;
  box-shadow: 0px 0px 10px 5px #69696928;
  transition: 0.5s;
}

@media screen and (max-width: 1400px) {
  section.anticor-banner h1 {
    font-size: 45px;
  }

  section.anticor-info-text h2 {
    font-size: 22px;
  }

  section.anticor-info-text p {
    font-size: 16px;
  }

  nav.anticor-menu a,
  span.ns-grat-text {
    font-size: 15px;
    line-height: 1em;
  }

  section.anticor-advantages h3,
  section.anticor-options h1,
  section.anticor-cars-block h1 {
    font-size: 30px;
  }

  section.anticor-options details>summary {
    font-size: 16px;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 1200px) {

  main,
  input#phone {
    width: 100%;
  }

  nav.anticor-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 0;
  }

  nav.anticor-menu a {
    padding: 20px 15px;
    margin: 15px 0;
    width: 50%;
    font-size: 16px;
  }

  section.anticor-info-text {
    background: linear-gradient(to top, #000000 60%, #00000000 90%);
    margin-top: -200px;
  }
}

@media screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }

  section.anticor-options details>summary {
    font-size: 15px;
  }

  section.anticor-banner h1 {
    font-size: 20px;
    width: 70%;
  }

  nav.anticor-menu {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
  }

  nav.anticor-menu a,
  section.anticor-options div,
  section.anticor-cars-block div.car {
    width: 70%;
  }

  section.anticor-answer details {
    width: 80%;
    font-size: 16px;
  }

  section.anticor-info-text h2 {
    font-size: 18x;
    text-align: center;
    font-weight: bold;
    width: 85%;
    margin-top: 40px;
    color: #ffcd00;
  }

  section.anticor-banner img {
    max-width: 10%;
  }

  .fa {
    font-size: 20px !important;
    width: 20px !important;
  }

  section.anticor-advantages h3,
  section.anticor-options h1,
  section.anticor-cars-block h1 {
    font-size: 25px;
  }

  nav.anticor-menu a {
    background-size: 100% 210%;
  }
}

@media screen and (max-width: 650px) {

  section.anticor-order-button {
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 0;
  }

  section.anticor-cars-block div.car,
  section.anticor-options div {
    width: 95%;
  }

  section.anticor-options h1,
  section.anticor-answer h1,
  section.anticor-cars-block h1 {
    padding: 0;
  }

  section.anticor-banner video {
    width: auto;
    height: auto;
    right: 50%;
    object-fit: cover;
  }

  section.anticor-answer details>summary {
    padding-right: 50px;
    font-size: 13px;
  }

  section.anticor-answer details {
    width: 75%;
  }

  div.first-processing {
    margin-right: 0;
  }

  section.anticor-cars-block {
    justify-content: center;
  }

  section.anticor-answer {
    padding: 50px 0 100px;
  }

  section.anticor-cars-block div.car img {
    width: 100%;
  }

  section.anticor-info-text {
    background: linear-gradient(to top, #000000 80%, #00000000 100%);
    margin-top: -150px;
  }
}

@media screen and (max-width: 350px) {
  section.anticor-banner h1 {
    font-size: 17px;
    width: 65%;
  }
}

header {
  padding: 10px 0;
  background: #000;
  display: flex;
  justify-content: space-between;
  padding-right: 5%;
}


header div a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: .1s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat-Bold';
  font-size: 12px;
}

header div:first-child {
  position: relative;
}

header div a::before {
  display: block;
  width: 18px;
  fill: #fff;
}

header div a:first-child:after {
  display: block;
  content: '';
  width: 1px;
  height: 18px;
  background: #fff;

}

header div a:first-child:before {
  content: url('../img/phone-outline.svg');
}

header div a:last-child::before {
  content: url('../img/10999648851580817583.svg');
}

header div:last-child a:hover {
  text-decoration: underline;
}


header div:last-child {
  display: flex;
  gap: 10px;
}

.modal {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.644);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  box-sizing: border-box;
}

.modal.disabled{
  z-index: -1111;
}

.modal__wrapper {
  position: fixed;
  top: calc(50% - 123px);
  box-sizing: border-box;
  max-width: 500px;
  width: 100%;
  padding: 0 10px;

}

.modal__wrapper form {
  box-shadow: 0 0 0 1px black;
  background: #fff;
  box-sizing: border-box;
}

.modal__wrapper form div:first-child {
  position: relative;
  padding: 10px 0 0 0;
}

.modal__wrapper form div:first-child span {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-form {
  padding: 10px !important;
}

.modal__wrapper form div:first-child span div {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0;
}

.modal__wrapper form div:first-child span div::before,
.modal__wrapper form div:first-child span div::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 2px;
  background: #000;
}

.modal__wrapper form div:first-child span div::before {
  transform: rotate(45deg);
}

.modal__wrapper form div:first-child span div::after {
  transform: rotate(-45deg);
}

.modal__wrapper form h5 {
  text-align: center;
  font-size: 20px;
  font-family: 'Montserrat-Bold';
  margin-bottom: 10px;
  border-bottom: solid 1px rgba(128, 128, 128, 0.5);
  padding-bottom: 10px;
  margin-bottom: 0;
  color: #fff;
}

.modal__wrapper form input {
  margin: 5px 0;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
}

.modal__wrapper form input:focus {
  outline: none;
}

.input-form {
  padding-bottom: 20px !important;
  border-bottom: solid 1px rgba(128, 128, 128, 0.5);
  margin-bottom: 10px;
}

.modal__wrapper form p {
  font-size: 12px;
  font-weight: bold;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-send {
  width: 100%;
  margin: 10px;
  background: #ffcd00;
  border: none;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.btn-send.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.btn-send:hover {
  width: 100%;
  margin: 10px;
  background: #e2b500;
  border: none;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

/* <form  method="post">
        <input type="text" placeholder="Имя">
        <input type="tel" placeholder="Имя">
        <button type="button">Отправить</button>
    </form>
</div>
</div> */