#footer {
  padding: 30px 0;
  background-color: #202935;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-container .logo img {
  width: 200px;
  height: auto;
}
.footer-container .logo p {
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}
.f-block {
  color: #fff;
  margin-left: 10px;
}
.f-block a {
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}
.f-block.time-table {
  max-width: 375px;
}
.f-block.dev-logo img {
  width: 30px;
  height: auto;
}

/* modal */
.modalDialog {
  position: fixed;top: 0;right: 0;bottom: 0;left: 0;background: rgba(0,0,0,0.8);z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;display: none;pointer-events: none;overflow: scroll;
}
.modalDialog:target {
  display: block;
  pointer-events: auto;
}
.modalDialog > .modal-container {
  margin:10% 20%;
  margin-left: 20%;
  width: auto;
  height: auto;
  padding: 40px;
  position: relative;
  border-radius: 10px;
  background-color:rgba(255,255,255,1);
}

.modal__close {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -30px;
  right: -30px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.modal__close span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.modal__close span {
  position: absolute;
  top: 25px;
  left: 20px;
}
.modal__close span:nth-child(1){
  left: -200%;
  -webkit-transform: translate(-60%, -50%);
      -ms-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
  display: none;
}
.modal__close span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-80%, -50%) rotate(45deg);
  -ms-transform: translate(-80%, -50%) rotate(45deg);
  transform: translate(-80%, -50%) rotate(45deg);
  transform-origin: center;
}
.modal__close span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-80%, -50%) rotate(-45deg);
  -ms-transform: translate(-80%, -50%) rotate(-45deg);
  transform: translate(-80%, -50%) rotate(-45deg);
  transform-origin: center;
}
.modal__title {
  font-size: 28px;
  display: block;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}
.modal__subtitle {
  margin-bottom: 20px;
  text-align: center;
}
.modalDialog #contactform {
  width: 100%;
  max-width: 370px;
  padding: 10px 25px;
  margin: 0 auto;
}
.modalDialog #contactform .form-group .form-group__item {
  margin-bottom: 30px;
}
.modalDialog #contactform .form-group__item input[type="text"],
.modalDialog #contactform .form-group__item input[type="tel"] {
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(41,41,41,0.6);
  line-height: 1.5;
  font-size: 18px;
}
.modalDialog #contactform .form-group__item input[type="submit"] {
  width: 100%;
  height: 60px;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 30px;
  color: #fff;
  padding: 0;
  margin: 0;
  background: rgb(33,40,78);
  box-shadow: 0px 3px 10px 1.11px rgba(4, 86, 88, 0.47);
  transition: all 0.3s;
}
.modalDialog #contactform .form-group__item input[type="submit"]:hover,
.modalDialog #contactform .form-group__item input[type="submit"]:active {
  background: transparent;
  border-color: rgb(33,40,78);
  color: #333;
  transition: all 0.3s;
}

@media (max-width: 900px){
  .modalDialog > .modal-container{
    margin: 10px;
  }
  .modal__close {
    top: 20px;
    right: 20px;
  }
  .modal__close span {
    background-color: #292929;
  }
  .modal__close:hover span {
    background-color: #000;
  }
}
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.7);
  transition: color 200ms, transform 500ms;
}
@media (max-width: 900px){
  .close{top: 20px;right: 20px;
    }
  }
.close:hover {
 color: #000;
 transform: rotate(360deg);
}
/* / modal */
/* quiz */
.car__icons.legkovue,
.car__icons.gruzovue,
.car__icons.avtobusy,
.car__icons.selhozteh,
.car__icons.tehnika,
.car__icons.samosvaly,
.car__icons.jd,
.car__icons.turbo {
  display: none;
}
.legkovue .car__icons.legkovue,
.gruzovue .car__icons.gruzovue,
.avtobusy .car__icons.avtobusy,
.selhozteh .car__icons.selhozteh,
.tehnika .car__icons.tehnika,
.samosvaly .car__icons.samosvaly,
.jd .car__icons.jd,
.turbo .car__icons.turbo {
  display: flex;
}
main.__active__overlay {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition: all .4s;
}
.__overlay {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: -200%;
  top: 0;
  transition: all 0.3s;
}
.quiz-overlay.active {
  left: 0%;
  z-index: 1000;
  transition: all 0.3s;
}
.quiz {
  width: calc(100% - 100px);
  margin: 20px auto 20px;
  background-color: rgba(248, 248, 248, 1);
  padding: 70px 100px;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  max-width: 1680px;
  min-height: 700px;
  transition: all 0.3s;
}
.quiz .quiz__close-btn {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.quiz .quiz__close-btn span {
  width: 25px;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.quiz .quiz__close-btn span {
  position: absolute;
  top: 25px;
  left: 20px;
}
.quiz .quiz__close-btn span:nth-child(1){
  left: -200%;
  -webkit-transform: translate(-60%, -50%);
      -ms-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
  display: none;
}
.quiz .quiz__close-btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-80%, -50%) rotate(45deg);
  -ms-transform: translate(-80%, -50%) rotate(45deg);
  transform: translate(-80%, -50%) rotate(45deg);
  transform-origin: center;
}
.quiz .quiz__close-btn span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-80%, -50%) rotate(-45deg);
  -ms-transform: translate(-80%, -50%) rotate(-45deg);
  transform: translate(-80%, -50%) rotate(-45deg);
  transform-origin: center;
}
.quiz__title .h2 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
.quiz__title p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 20px;
  text-align: center;
}
.progress-bar {
  width: 100%;
  border-radius: 10px;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #045658;
  overflow: hidden;
  position: relative;
  margin: 40px 0 50px;
  float: none;
}
.progress-bar .progress-bar__slider {
  display: block;
  width: 25%;
  height: 100%;
  background-image: -moz-linear-gradient( 0deg, rgb(71,128,43) 0%, rgb(81,166,38) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(71,128,43) 0%, rgb(81,166,38) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(71,128,43) 0%, rgb(81,166,38) 100%);
  position: absolute;
  left: 0;
  top: 0;
  transition: all .5s;
}
.progress-bar.fifty::before {
  width: 50%;
  transition: all .5s;
}
.progress-bar.seventyfive::before {
  width: 75%;
  transition: all .5s;
}
.progress-bar.hundred::before {
  width: 100%;
  transition: all .5s;
}
.progress-bar .progress-bar__content {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding: 0 5px;
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 1.3;
}
.quiz__question-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}
.quiz-btn {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.quiz__next-btn {
  display: block;
  width: 190px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 10px;
  background-image: -moz-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  box-shadow: 0px 6px 35.89px 1.11px rgba(38, 34, 186, 0.47);
  border-radius: 25px;
  position: relative;
  padding-right: 25px;
  box-sizing: border-box;
  border: none;
}
.quiz__next-btn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 17px;
  background-image: url('../img/icons/arrow.png');
  background-position: center;
  background-size: contain;
  margin-left: 10px;
  padding-bottom: 4px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  position: absolute;
  top: 52%;
  right: 50px;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
  filter: brightness(0) invert(1);
}
.quiz__prev-btn {
  display: block;
  width: 190px;
  height: 50px;
  line-height: 48px;
  color: #47802B;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 10px;
  background-color: rgba(248, 248, 248, 1);
  box-shadow: 0px 6px 35.89px 1.11px rgba(38, 34, 186, 0.47);
  border-radius: 25px;
  position: relative;
  padding-left: 25px;
  box-sizing: border-box;
  border: 2px solid #47802B;
}
.quiz__prev-btn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 17px;
  background-image: url('../img/icons/arrow.png');
  background-position: center;
  background-size: contain;
  margin-right: 10px;
  padding-bottom: 4px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  position: absolute;
  top: 52%;
  left: 50px;
  transform: translateY(-50%);
}
.quiz .question {
  display: none;
}
.quiz .question.active {
  display: block;
}

.question-body.group-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.question-body.group-list .group-list__label {
  width: calc(100% / 10 - 5px);
  margin-right: calc(5px * 10 / 9);
  margin-bottom: 40px;
}
.question-body.group-list .group-list__label:nth-child(10n) {
  margin-right: 0;
}

.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
}
.group-list__label {
  display: flex;
  align-items: center;
}
.radio.radio-btn {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  border-radius: 50%;
  border: 1px solid #47802B;
  display: inline-block;
  position: relative;
}
.radio.radio-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #47802B;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: all .2s;
}
.radio.radio-btn:checked::before {
  opacity: 1;
  transition: all .2s;
}
.radio.radio-btn:focus {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(61,204,89,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(61,204,89,1);
  box-shadow: 0px 0px 5px 0px rgba(61,204,89,1);
  transition: all .2s;
  outline: 0;
}
.final-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.final-body .left-side,
.final-body .right-side {
  width: calc(100% / 2 - 10px);
}
.final-body .left-side .h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
.final-body .right-side {
  width: 40%;
}
.final-body .right-side img {
  width: 100%;
  height: auto;
}
.quiz-group {
  max-width: 400px;
}
.quiz-group__item {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.quiz-group__item:last-child {
  margin-bottom: 0;
}
.quiz-group__item .coast-tel {
  width: 100%;
  height: 64px;
  line-height: 64px;
  border-radius: 32px;
  background-color: #f0f0f0;
  font-size: 18px;
  color: #6d6d6d;
  padding: 0 32px 0 70px;
}
.quiz-group__item.quiz-group__tel::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../img/icons/phone.png');
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.quiz-group__item .coast-submit {
  width: 100%;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 32px;
  border: none;
  background: rgb(81,166,38);
  background: -moz-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  background: -webkit-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  background: -ms-linear-gradient( 0deg, rgb(81,166,38) 0%, rgb(71,128,43) 100%);
  padding: 0 80px 0 20px;
  box-sizing: border-box;
}
.quiz-group__item.quiz-group__submit {
  position: relative;
}
.quiz-group__item.quiz-group__submit::after {
  content: '';
  display: block;
  width: 10px;
  height: 17px;
  background-image: url('../img/icons/arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 52%;
  right: 100px;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
}

@media (max-width: 1300px) {
  .question-body.group-list .group-list__label {
    width: calc(100% / 8 - 5px);
    margin-right: calc(5px * 8 / 7);
    margin-bottom: 40px;
  }
  .question-body.group-list .group-list__label:nth-child(10n) {
    margin-right: calc(5px * 8 / 7);
  }
  .question-body.group-list .group-list__label:nth-child(8n) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .quiz {
    padding: 50px;
    width: calc(100% - 50px);
  }
  .final-body .left-side {
    width: 60%;
  }
  .final-body .left-side .h2 {
    font-size: 25px;
    line-height: 1.4;
  }
  .quiz__title .h2 {
    font-size: 27px;
  }
  .quiz__title p {
    font-size: 16px;
  }
  .progress-bar .progress-bar__content {
    font-size: 18px;
  }
  .quiz__question-title {
    font-size: 21px;
  }
  .question-body.group-list .group-list__label {
    width: calc(100% / 4 - 5px);
    margin-right: calc(5px * 4 / 3);
    margin-bottom: 40px;
  }
  .question-body.group-list .group-list__label:nth-child(10n) {
    margin-right: calc(5px * 4 / 3);
  }
  .question-body.group-list .group-list__label:nth-child(8n) {
    margin-right: calc(5px * 4 / 3);
  }
  .question-body.group-list .group-list__label:nth-child(4n) {
    margin-right: 0;
  }
  .quiz__next-btn,
  .quiz__prev-btn {
    width: 140px;
  }
  .quiz__prev-btn::after {
    left: 25px;
    height: 15px;
  }
  .quiz__next-btn::after {
    right: 25px;
    height: 15px;
  }
  .quiz-group__item .coast-submit {
    padding: 0 50px 0 20px;
  }
  .quiz-group__item.quiz-group__submit::after {
    right: 60px;
  }
}
@media (max-width: 560px) {
  .final-body .left-side {
    width: 100%;
  }
  .final-body .left-side .h2 {
    font-size: 21px;
  }
  .final-body .right-side {
    display: none;
  }
  .question-body.group-list .group-list__label {
    width: calc(100% / 2 - 5px);
    margin-right: calc(2px * 2);
    margin-bottom: 40px;
  }
  .question-body.group-list .group-list__label:nth-child(10n) {
    margin-right: calc(2px * 2);
  }
  .question-body.group-list .group-list__label:nth-child(8n) {
    margin-right: calc(2px * 2);
  }
  .question-body.group-list .group-list__label:nth-child(4n) {
    margin-right: calc(2px * 2);
  }
  .question-body.group-list .group-list__label:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .quiz {
    padding: 30px 30px 25px;
    width: calc(100% - 20px);
  }
  .quiz__title .h2 {
    font-size: 21px;
  }
  .quiz-group__item.quiz-group__submit::after {
    right: 35px;
  }
  .quiz .quiz__close-btn {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }
  .quiz__question-title {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .quiz {
    margin: 10px auto 10px;
  }
  .progress-bar .progress-bar__content {
    font-size: 16px;
  }
  .final-body .left-side .h2 {
    font-size: 18px;
  }
  .quiz-group__item.quiz-group__tel::before {
    display: none;
  }
  .quiz-group__item .coast-tel {
    padding: 0 32px;
  }
}

.quiz-succsess {
  width: calc(100% - 20px);
  max-width: 400px;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  background-color: #FDAC07;
  -webkit-box-shadow: 0px 0px 10px -2px rgba(255,255,255,0.5);
  -moz-box-shadow: 0px 0px 10px -2px rgba(255,255,255,0.5);
  box-shadow: 0px 0px 10px -2px rgba(255,255,255,0.5);
  padding: 30px 20px;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 10px;
}
.quiz-succsess.unactive {
  display: none;
}
.quiz-succsess p {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}
/* /quiz */
/* banner */
.banner__overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(1, 59, 97, 0.8);
  overflow-y: scroll;
  z-index: -1;
  opacity: 0;
  transition: all .3s;
}
.banner__overlay.active {
  z-index: 1000;
  opacity: 1;
  transition: all .3s;
}
.banner__close {
  position: absolute;
  top: 50px;
  right: 40px;
  background-color: transparent;
  font-size: 30px;
  color: #fff;
  transform: rotate(45deg);
}
.promo-banner {
  height: 100%;
}
.banner-body {
  height: 100%;
  padding: 50px 0;
  box-sizing: border-box;
}
.banner-text-container {
  max-width: 600px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.banner__img {
  width: 100%;
  height: auto;
}
.banner__title {
  color: #fff;
  font-size: 36px;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  font-family: 'Franklingotic';
  letter-spacing: 3px;
  line-height: 1.4;
}
.banner__text {
  color: #fff;
  letter-spacing: 3px;
  font-size: 25px;
  line-height: 1.5;
  display: block;
  margin-top: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  font-family: 'Franklingotic';
  
}

.leave-reply {
  font-size: 25px;
  color: #fff;
  font-weight: 900;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  height: 60px;
  line-height: 60px;
  background-color: #47802B;
  display: block;
  margin: 30px auto 0 auto;
  border-radius: 10px;
  border: none;
  font-family: 'Franklingotic';
  text-align: center;
}
/* /banner */
