/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

*, *:before, *:after {
  padding: 0;
  margin: 0;
 /* border: none;*/
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  
 
}

.header__logo {
  flex: 0 0 60px;
/*следующие две строки: картинка становится круглой*/
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.header__logo img {
  max-width: 100%;
/*убирает нижнее подрезание для круглой картинки*/
  display: block;
}

.header:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0072bc;
  z-index: 2;
}

.header__body1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 130px;
  align-items: center;
}

.header__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 50px;
  align-items: center;
}

.header__burger {
  display: none;
}

.header__list {
  display: flex;
  position: relative;
  z-index: 2;
}

.header__list li {
  list-style: none;
  margin: 0 0 0 20px;
}

.header__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
}

/*классический вариант: @media (max-width:767px), я беру с запасом*/
@media (max-width:800px) {
  body.lock {
    overflow: hidden;
  }

  .header__body {
    height: 50px;
  }

  .header__logo {
    flex: 0 0 0px;

  }

  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }

  .header__burger span {
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before,
  .header__burger:after {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }

  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__burger.active span {
    transform: scale(0);
  }

  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
/*для прокрутки меню, когда оно не помещается в экран*/
    overflow: auto;   
    background-color: darkcyan;
    padding: 200px 10px 20px 10px;
    transition: all 0.3s ease 0s;
  }

  .header__menu.active {
    top: 0;
  }

  .header__list {
    display: block;
  }

  .header__list li {
    margin: 0 0 20px 0;
  }

  .header__link {
    font-size: 24px;
  }

td.nazvanie1 {
	display: block;
	
	}
	
.nazvanie1 img {
	height: 80px;
	margin-top: 30px;
}

.form_reg_log {
	width: 100%;	
}




}

.content {
  padding: 200px 30px 30px 30px;
}

@media (max-width:800px) {
  .content {
  padding: 200px 30px 30px 30px;
  }
}





.nazvanie {
    color: #fff;
    text-transform: uppercase;   
    text-decoration: none;
	font-size: calc(15px + (18 - 14) * ( (100vw - 480px) / ( 1024 - 480) ));*/
	
	
	justify-content: center;
	align-items: center;
	

}

.table-wrap {
  max-width: 1160px;
  width: 100%;
  overflow: auto;
}
.table {
  width: 1160px;
 
}
/*
.table tr:nth-child(odd) {
  background-color: #ff33cc;
}

.table tr:nth-child(even) {
  background-color: #e495e4;
}
*/



.form_reg_tezis {
  width: 100%;
}

.nowrap {
	display: inline;
	white-space: nowrap;
}

.prog {
	/*display: flex;*/
	vertical-align: top;
}
.prog_k {
	display: inline-block;
	vertical-align: top;
	padding-bottom: 30px;
}