body { font-family: "PT Sans",Arial,sans-serif;  font-size: 18px;     margin: 0;   padding: 0;}
.content { max-width: 1300px;  margin: 0 auto;  padding: 0 100px;}
.flex{display: flex; flex-wrap: wrap}
.verh{justify-content: space-around; font-size: 1.3rem; align-items: center;    padding: 15px;}
.logo{max-width: 220px;}
.tel a{color: #000; text-decoration: none}
.menu div{padding:10px 20px}
.niz .logo{max-width: 150px;}
.niz{background: #011a27; color: #fff; padding: 15px 0;}
.niz a{color: #fff}
.prava{font-size: 1rem}
.ten{background: rgba(1, 26, 39, 0.80); width: 100%; height: 100%; justify-content: center; align-items: center;min-height: 700px }
.fon_osn{background: url("/img/top-bg.jpg"); height: 100%; background-size:cover; min-height: 700px }
#imia3{display: none;}
.btn1 {background: #f0810f;
    padding: 0px 34px;
    height: 50px;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    line-height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    display: inline-block;
    width: 280px;
    box-sizing: border-box;}
.option-input:disabled{background: #333;  cursor: initial;}
.option-input:disabled:hover{background: #333;  cursor: initial;}
.btn1:active {  border-color: rgb(0, 94, 141);  color: rgb(255, 255, 255);  background-color: rgb(0, 94, 141);}
.btn1:hover{ border-color: rgb(0, 94, 141);  color: rgb(255, 255, 255);  background-color: rgb(0, 94, 141);} 
.dis_non{width: 400px;}
.sl_ctr{position:relative; width: 750px;   max-height: 500px;  overflow:hidden; color: #fff  }
.sldr{ position:relative; width:10000px; max-height: 500px;  display: flex;     align-items: center;}
.sldr .bloc{width:750px; padding:30px;  box-sizing:border-box; text-align:center; min-height:450px; display:flex; flex-direction:column;  justify-content:space-between; align-items:center;}
.puncty>div{padding: 5px; font-size: 1.2rem}
.puncty{padding: 30px;    text-align: left;}
.name_bloc{text-align: center; font-size: 1.5rem;text-transform: uppercase;line-height: 2rem;}
.puncty>div>label{cursor: pointer;}
.puncty_vnutri{display: flex; flex-wrap: wrap;padding: 30px 0;    min-width: 400px;}
.puncty_vnutri label{display: block;text-align: left;}
.puncty_vnutri>div{padding: 0 20px;}

.flex.menu>div{cursor: pointer;}
.modal_okno_ten{position: fixed; display: flex; width: 100%; height: 100%; background: rgba(1, 26, 39, 0.80);top: 0; align-items: center; justify-content: center; padding: 20px;box-sizing: border-box;z-index: 9999;}
.bloc_modal{max-width: 500px; padding: 20px; background: #fff;box-sizing: border-box;}
.bloc_modal_name{font-weight: bold;}
.verh_modal{display: flex; justify-content: space-between;   align-items: baseline;}
.close{    font-size: 2rem;    color: #f0810f; line-height: 0; cursor: pointer;}
.modal_okno_ten{top:-1500px}
.fig_mob{font-size: 1rem}
.bloc_modal_text{padding: 20px; box-sizing: border-box}
.fig_mob a{color: #000}
.procent_kalkul{padding: 20px; font-size: 2rem}
.zagruz_kalkul {
    border: 1px solid #ccc;
    display: inline-block;
    width: 50%;
    height: 10px;
    background: #ccc;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.zam_zag_kalkul {
    background: #ff7027;
    height: 100%;
    width: 10%;
}


.p_est{display: none}


select {
  padding: 10px;
  outline: 0px;
  border-image: none;
  color: rgb(0, 0, 0);
  box-shadow: inset 0px 0px 7px rgb(0 0 0 / 20%);
  background-color: white;
  width: 30%;
  box-sizing: border-box;
  max-width: 150px;
  line-height: 37px !important;
  border: 1px solid #ccc;
  font-size: 16px;
}

#phone3{
  padding: 6px 10px;
  outline: 0px;
  border-image: none;
  color: rgb(0, 0, 0);
  box-shadow: inset 0px 0px 7px rgb(0 0 0 / 20%);
  background-color: white;
  box-sizing: border-box;
  width: 50%;
  max-width: 160px;
  line-height: 27px;
  border: 1px solid #ccc;
  font-size: 16px;
}


@keyframes click-wave {
    0% {
      height: 30px;
      width: 30px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      height: 40px;
      width: 40px;
      margin-left: -8px;
      margin-top: -8px;
      opacity: 0;
    }
  }
  
  .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
  }
  .option-input:hover {
    background: #9faab7;
  }
  .option-input:checked {
    background: #f0810f;
  }
  .option-input:checked::before {
    height: 25px;
    width: 25px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 21px;
    text-align: center;
    line-height: 25px;
  }
  .option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #f0810f;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
  }
  .option-input.radio {
    border-radius: 50%;
  }
  .option-input.radio::after {
    border-radius: 50%;
  }
.tel_plash{padding: 20px 0;}




@media (max-width: 750px){

  select {width: 40%;}
  #phone3 {width: 55%;}

    .mob_r>div{padding: 0 3px; font-size: 0.8rem}
    .mob_r{display: flex}
    .komp_r{display: none}
    .fon_osn{height: 100%;min-height: 400px}
    .ten{min-height: 400px }
    .sldr{ max-height: none;  }
    .sl_ctr{width: 500px;max-height: none; }
    .sldr .bloc{width:500px;padding: 30px 10px;}
    .name_bloc {font-size: 1.1rem;line-height: 1.7rem;}
    .puncty>div {font-size: 1rem; padding: 10px;}
    .puncty {  padding: 30px 0;  }
    .btn1 {padding: 0px 24px; width: 200px;font-size: 0.8rem;}
    .dis_non{width: 380px;}
}


@media (max-width: 700px){
  .verh2 .tel{display: none;}
    .menu div{padding:0px 20px 5px 20px;font-size: 1rem;}
    .logo {   max-width: 170px;  }
    .content {    padding: 0 10px;}
    .verh{padding: 10px}
}


@media (max-width: 500px){
    .niz .tel{padding: 10px}
    .puncty_vnutri{min-width: auto;}
   .puncty_vnutri3{padding: 5px 0 10px 0;}
   .disp_non_p{display: none;}
    .bloc>div{width: 100%;}
    .sl_ctr{width: 360px;}
    .sldr .bloc{width:360px; padding: 30px 10px;}
    .btn1 { padding: 0px 5px;   width: 160px;}
    .dis_non { width: 320px; padding: 0px 15px;box-sizing: border-box; }
    .puncty_vnutri label{font-size: 0.8rem;}
}

@media (max-width: 350px){
  .niz .tel{padding: 10px}
  .puncty_vnutri{min-width: auto;}
 .puncty_vnutri3{padding: 5px 0 10px 0;}
 .disp_non_p{display: none;}
  .bloc>div{width: 100%;}
  .sl_ctr{width: 310px;}
  .sldr .bloc{width:310px; padding: 30px 10px;}
  .btn1 { padding: 0px 5px;   width: 120px; font-size: 0.7rem;}
  .dis_non { width: 260px; padding: 0px 15px;box-sizing: border-box; }
  .puncty_vnutri label{font-size: 0.8rem;}
  #phone3 {width: 55%;}
  .bloc_modal_text {
    font-size: 0.8rem;
}
}