/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

html, body{
	font-family: Comic Sans MS;
	height: 110vh;
	background-image: url(../img/backAva.jpg);
}

ul {
    margin: 10px;
}

a {
	color: #000000;
}

h1 {
	font-size: 52px;
	font-weight: 700;
	/*color: #fcd9b1;*/
	color: #E5E5E5;
	text-shadow: 1px 1px 1px #000000;
	text-align: center;
	margin-top: 100px;
}

span{
	font-size: 32px;
	color: #fcd9b1;
	text-shadow: 1px 1px 1px #000000;
}

.navigations{
	display: flex;
    min-width: 100%;
    background: #fcd9b1;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.hkpt{
	font-size: 28px;
	text-align: center;
	padding: 0 25px 0 0;
	border-right: 3px solid black;
	display: inline-block;
	margin: 10px;
}

.Logo{
	margin: 0 0 0 10px;
	width: 60px;
	height: 50px;
}

.table{
	display: flex;
}

.mainSP{
	text-align: right;
}

.sp{
	font-size: 26px;
	display: inline-block;
	background: #fcd9b1;
	margin: 8px 30px 8px 30px;
}

.sp:hover {
  opacity: 0.3;
}

.vp{
	font-size: 26px;
	display: inline-block;
	background: #fcd9b1;
	margin: 10px 30px 10px 30px;
}


/* Стили для кнопки */
.dropbtn {
	font-size: 26px;
	display: inline-block;
	background: #fcd9b1;
	margin: 10px;
}

/* Стили для выпадающего списка */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Стили для содержимого выпадающего списка */
.dropdown-content {
	display: none;
	position: absolute;
	background: #fcd9b1;
	border: 3px solid black;
}

.vptxt{
}

/* Стили для ссылок в выпадающем списке */
.dropdown-content a {
	display: block;
	padding: 10px;
	/*border-bottom: 3px solid black;
	border-right: 3px solid black;*/
}

/* Стили для ссылок при наведении */
.dropdown-content a:hover {
	/*opacity: 0.3;*/
	background-color: #fff;
}

/* Показать содержимое выпадающего списка при наведении на кнопку */
.dropdown:hover .dropdown-content {
	display: block;
}

/* Стили для выпадающего списка при открытии */
.dropdown-content.show {
	display: block;
}

.back{
	background-image: url(../img/backAva.jpg);
}

.avatar{
	border-radius: 50%;
	object-fit: cover;
	height: 200px;
	width: 200px;
}

.blockava{
	text-align: center;
	margin: 30px 0 0 0;
}

.name{
	text-align: center;
	font-size: 24px;
	color: #E5E5E5;
	text-shadow: 1px 1px 1px #000000;
}

.text{
	font-size: 26px;
	margin: 10px;
	text-align: justify;
	text-indent: 30px;
	line-height: 40px;
}

.text1{
	font-size: 26px;
	/*border: 3px solid #fcd9b1;*/
	margin: 10px;
	text-align: justify;
	text-indent: 30px;
	/*(background-color: #e5e5e5;*/
	line-height: 40px;
}

.text i{
	margin: 10px;
	display: block;
}

.text i:hover{
	opacity: 0.3;
}

.dobro{
	font-size: 32px;
	font-weight: 700;
	color: #fcd9b1;
	text-shadow: 1px 1px 1px #000000;
}

.content{
	margin: 0 auto;
	width: 80%;
	background: #E5E5E5;
	/*border-top: 2px solid black;
	border-bottom: 2px solid black;*/
	border-radius: 10px;
	box-shadow:
   	inset rgba(0,0,0,.5) -3px -3px 8px,
   	inset rgba(255,255,255,.9) 3px 3px 8px,
   	rgba(0,0,0,.8) 3px 3px 8px -3px;
}

.zakrmod{
	margin: 10px;
	padding: 10px;
	font-size: 26px;
}

.zakrmod a:hover{
	opacity: 0.3;
}

.zakrmod2{
	margin: 10px;
	padding: 10px;
	font-size: 22px;
}

.zakrli{
	margin: 5px;
	padding: 5px;
	list-style: decimal;
}

.zakrli a:hover{
	opacity: 0.3;
}

/*Бургер-меню*/
.menu-btn{
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right:0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
 
.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition-duration: .25s;
}
.menu-btn > span::before {
  content: '';
  top: -8px;
}
.menu-btn > span::after {
  content: '';
  top: 8px;
}
 
.menubox{
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #fcd9b1;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  transition-duration: .25s;
}

.project{
	display: flex;
	border: 5px solid #fcd9b1;
	border-radius: 10px;
	background: #E5E5E5;
}

.slide{
	width: 50%;
	height: 700px;
}
.projFile{
	width: 50%;
	height: 700px;
}

.projFile i{
	margin-left: 25px;
	margin-top: 120px;
	padding: 20px;
	display: inline-block;
	background: #F7F7F7;
	border-radius: 30px;
}

.font_weight{
	font-weight: 700;
}

.projFile i: hover{
	opacity: 0.3;
}

.video{
	display: flex;
  	align-items: center;
  	justify-content: center;
  	border-right: 5px solid #fcd9b1;
  	border-left: 5px solid #fcd9b1;
  	border-bottom: 5px solid #fcd9b1;
  	padding: 10px;
}
  
#menu-toggle{
  opacity: 0;
}
 
#menu-toggle:checked ~ .menu-btn > span{
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before{
  top: 0;
  transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after{
  top: 0;
  transform: rotate(90deg);
}
#menu-toggle:checked ~ .menubox{
  visibility: visible;
  left: 0;
}

.burger-menu{
	display: none;
}

.footer{
	border-top: 1px solid black;
	background: #EEE;
	padding: 30px;
	display: flex;
	font-size: 18px;
}
.footer img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: inline-block;
}
.footer u{
	text-decoration: none;
}
.questions{
	width: 80%;
	text-align: center;
	display: flex;
}
.Zs{
	width: 20%;
	text-align: center;
	margin: auto;
}

.onequest{
	width: 50%;
	line-height: 30px;
}

.twoquest{
	width: 50%;
	line-height: 30px;
}

.copy{
	text-align: center;
	background: #E5E5E5;
	display: block;
	width: 100%;
	padding: 10px 0 10px 0;
}

@media screen and (max-width: 1920px){
	.hkpt{
		font-size: 26;
	}
	.sp{
		margin: 10px;
		margin-left: 50px;
		font-size: 24px;
	}
	.vp{
		margin: 10px;
		font-size: 24px;
	}
	.dropbtn{
		font-size: 24px;
	}
	.slide{
		height: 700px;
	}
	.projFile{
		height: 700px;
	}
	.projFile i{
		margin-top: 120px;
	}
}

@media screen and (max-width: 1695px){
	.sp{
		margin: 10px;
		margin-left: 50px;
		font-size: 22px;
	}
	.vp{
		margin: 10px;
		font-size: 22px;
	}
	.dropbtn{
		font-size: 22px;
	}
	.slide{
		height: 600px;
	}
	.projFile{
		height: 600px;
	}
	.projFile i{
		margin-top: 100px;
	}
}

@media screen and (max-width: 1602px){
	.sp{
		margin: 10px;
		font-size: 24px;
	}
	.vp{
		margin: 10px;
		font-size: 24px;
	}
	.dropbtn{
		font-size: 24px;
	}
	.hkpt{
		font-size: 28px;
	}
	.slide{
		height: 500px;
	}
	.projFile{
		height: 500px;
	}
	.projFile i{
		margin-top: 80px;
	}
}

@media screen and (max-width: 1525px){
	.sp{
		margin: 10px;
		font-size: 22px;
	}
	.vp{
		margin: 10px;
		font-size: 22px;
	}
	.dropbtn{
		font-size: 22px;
	}
	.hkpt{
		font-size: 26px;
	}
	.slide{
		height: 500px;
	}
	.projFile{
		height: 500px;
	}
	.projFile i{
		margin-top: 80px;
	}

}



@media screen and (max-width: 1440px){
	.sp{
		margin: 10px;
		font-size: 30px;
	}
	.vp{
		margin: 10px;
		font-size: 30px;
	}
	.dropbtn{
		font-size: 30px;
	}
	.scissors{
		border-right: 3px solid black;
	}
	.Logo{
	margin: 0 0 18px 40px;
	}
	.hkpt{
	border-right: 0px solid black;
	display: flex;
	}
	h1{
		margin-top: 155px;
	}
	.slide{
		height: 500px;
	}
	.projFile{
		height: 500px;
	}
	.projFile i{
		margin-top: 80px;
	}

}

@media screen and (max-width: 1087px){
	.sp{
		margin: 10px;
		font-size: 24px;
	}
	.vp{
		margin: 10px;
		font-size: 24px;
	}
	.dropbtn{
		font-size: 24px;
	}
	.scissors{
		border-right: 3px solid black;
		height: 79px;
	}
	.Logo{
	margin: 0 0 0 40px;
	width: 50px;
	height: 40px;
	}
	.hkpt{
	border-right: 0px solid black;
	display: flex;
	font-size: 24px;
	margin-top: 8px;
	}
	h1{
		margin-top: 155px;
	}
	.slide{
		height: 400px;
	}
	.projFile{
		height: 400px;
	}
	.projFile i{
		margin-top: 40px;
	}

}

@media screen and (max-width: 913px){
	.sp{
		margin: 10px;
		font-size: 18px;
	}
	.vp{
		margin: 10px;
		font-size: 18px;
	}
	.dropbtn{
		font-size: 18px;
	}
	.scissors{
		border-right: 2px solid black;
		height: 79px;
	}
	.Logo{
	margin: 0 0 0 40px;
	width: 50px;
	height: 40px;
	}
	.hkpt{
	border-right: 0px solid black;
	display: flex;
	font-size: 20px;
	margin-top: 8px;
	margin-left: 18px;
	}
	h1{
		margin-top: 155px;
	}
	.slide{
		height: 300px;
	}
	.projFile{
		height: 300px;
	}
	.projFile i{
		margin-top: 20px;
		padding: 20px;
		font-size: 14px;
	}

}

@media screen and (max-width: 735px){
	.table{
		display: none;
	}

	.mainSP{
		display: none;
	}

	.sp{
		margin: 10px;
		font-size: 18px;
	}
	.vp{
		margin: 10px;
		font-size: 18px;

	}
	.dropbtn{
		font-size: 18px;
	}
	.scissors{
		border-right: 2px solid black;
		height: 79px;
	}
	.Logo{
		margin: 0 0 0 40px;
		width: 50px;
		height: 40px;
	}
	.hkpt{
		border-right: 0px solid black;
		display: flex;
		font-size: 20px;
		margin-top: 8px;
		margin-left: 18px;
	}
	h1{
		margin-top: 90px;
		font-size: 32px;
	}
	.dobro{
		font-size: 28px;
	}
	.text{
		font-size: 18px;
	}
	.text1{
		font-size: 18px;
	}

	.burger-menu{
		display: inline-block;
	}
	.menu-btn{
		margin: 20px 20px 0 0;
	}
	.menubox{
		width: 225px;
	}
	.slide{
		height: 150px;
	}
	.projFile{
		height: 150px;
	}
	.projFile i{
		margin-top: 6px;
		padding: 6px;
		font-size: 8px;
	}
	.footer{
		font-size: 14px;
	}
	.footer img{
		width: 40px;
		height: 40px;
	}
}

