header {
  z-index: 100 !important;
}
.content .calculator {
  background: linear-gradient(to bottom, rgba(8,4,125,0), rgba(1,1,10,0.25)) ,url(../assets/img/calculator-main-bg.png);
  background-position-y: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0;
  padding-top: 130px;
}

.calculator-inner {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.calculator-suptitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: #dbdbdb;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calculator-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  
  margin: 0;
  max-width: 630px;
  width: 100%;
}

.calculator-wrapper {
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.calculator-block {
  width: 50%;
}

.calculator-block span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}

.calculator-item {
  margin: 20px 0;
}

.calculator-item input[type=text] {
  font-size: 17px;
  border-radius: 5px;
  font-weight: 400;
  padding: 20px;
  color: #0d0c0c;
  border: none;
  width: 100%;
}

.calculator-item input[type=range] {
  width: 85%;
  -webkit-appearance: none;
}

.calculator-item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #ffa600;
  height: 20px;
  width: 20px;
  margin-top: -10px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-ms-track {
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 8px;
  height: 3px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
}

.calculator-item input[type=range]::-moz-range-thumb {
  background-color: #ffa600;
  height: 30px;
  width: 30px;
  margin-top: -14px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-ms-thumb {
  background-color: #ffa600;
  height: 30px;
  width: 30px;
  margin-top: -8px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
}

.calculator-item input[type=range]::-moz-range-track {
  height: 3px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 8px;
}

.calculator-item__title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.calculator-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-self: flex-end;
  width: 40%;
}

.calculator-info__block {
  padding: 10px;
  border-radius: 3px;
  background-color: #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.calculator-info__block img {
  width: 50px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
}

.calculator-info__block p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 1.35;
}

.yellow-btn {
  text-decoration: none;
  width: 100%;
  padding: 20px;
  color: #000;
  background-color: #ffd337;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 8px 20px 20px rgba(61,56,56,0.3);
}

@media (max-width: 980px) {

  .calculator-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .calculator-block {
    margin-bottom: 20px;
  }

  .calculator-info {
    height: 40%;
  }

  .calculator-info {
    align-self: center;
  }

  .calculator-title {
    font-size: 29px;
    text-align: center;
  }

  .calculator-suptitle {
    text-align: center;
  }
}

@media (max-width: 770px) {

  .calculator-block span{
    font-size: 13px;
  }

  .calculator-info {
    width: 70%;
  }

  .calculator-block {
    width: 80%;
  }

  .calculator-info {
    width: 80%;
  }
}

@media (max-width: 500px) {

  .calculator-info {
    width: 95%;
  }

  .calculator-block {
    width: 95%;
  }
}

/* Checked */

/* Hover */

/* Disabled */