body {
	margin-left: 10%;
	margin-right: 10%;
	font-size: 30px;
	font-family: sans-serif;
}
h1 {
    font-size: 48px;
}
h2 {
    font-weight: normal;
    font-size: 35px;
}
em {
	font-family: 'Circe',Arial,sans-serif;
}
.ppp {
    background: aliceblue;
    width: 100%;
    font-size: 25px;
    padding: 30px;
    border-radius: 15px;
}
.ulll li {
    margin-bottom: 40px;
}
.pkpk {
    text-align: center;
    background: black;
    color: #fff;
    padding: 10px;
}
.ggrey {
    background: #d7d7d7;
    width: 100%;
    font-size: 25px;
    padding: 30px;
    border-radius: 15px;
	font-weight: bold;
}
.scrutili {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
	font-size: 25px;
}
.scrutili2 {
    font-size: 22px;
}
.vntr {
    background: #e0e3e6;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 28px;
    padding: 10px 30px 10px 30px;
}
.tprd {
	margin-top: 50px;
    border-radius: 15px;
    background: #e0e3e6;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 28px;
    padding: 10px 30px 10px 30px;
}
.button {
    display: inline-block !important;
    text-decoration: none !important;
    background-color: #ffdf23 !important;
    color: #000000 !important;
    border: 0px solid #006089 !important;
    border-radius: 25px !important;
    font-size: 40px !important;
    padding: 35px 100px !important;
}
.button:hover{
    text-decoration: none !important; 
    background-color: #f7d516 !important;
    color: #000000 !important;
    border-color: #006089 !important;
}


/* Стили всплывающего окна по-умолчанию */
.modal {
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); /* фон */
    z-index: 1050;
    opacity: 0; /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in; 
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in; /* анимация перехода */
    pointer-events: none; /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
}
/* При отображении модального окно */
.modal:target {
    opacity: 1; /* делаем окно видимым */
	  pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}
/* ширина модального окна и его отступы от экрана */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 80%;
      margin: 30px auto; /* отображение окна по центру */
  }
}
/* Стили для блока с контентом окна */ 
.modal-content {
font-family: math;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
@media (min-width: 768px) {
  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}
/* Стили заголовка окна */
.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0 0 0;
}
.modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}
/* Стили кнопки "х" ("Закрыть")  */
.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}
/* Стили для закрывающей кнопки в фокусе или наведении */
.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}
/* Стили блока основного содержимого окна */
.modal-body {
  position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    overflow: auto;
}
@media (max-width: 992px) {
.mobibr {
display:none;
}
}