:root{
	--color-main:#cffad3; /* основной цвет */
	--color-main-bg:#ece9e9; /* основной прозрачный */
	--color2:#5bc5ba;/* тёмный основной */
	--color3:gray; /* штриховка, ссылки */
	--color4:#337B43; /* акцент (заголовки) */
	--color4-bg:rgba(156,189,164,0.7); /* фон заголовков прозрачный */
	--color-bg:white; /* фон контента */
	--w-main:1000px; /* ширина страницы */
}


/*************************** header **************************/

.header__logo2{
	position:relative;
	right:0px; 
	top:40px;
}
.header{
	background:var(--color-main);
	height:200px;
	box-shadow:0 4px 0 var(--color-main),0 6px 2px rgba(0,0,0,0.5);
	display:flex;
	justify-content: flex-end;
	padding:0 calc(50% - var(--w-main) / 2);
}
.header__sitename{
	flex-basis: 300px;
    flex-grow: 3;
    margin:50px 20px;
    text-align: center;
	font-family:'Arial';
	font-style:italic;
	font-weight: bold;
	font-size:4.85em;
	text-shadow:-1px -1px 1px rgba(0,0,0,0.5),1px 1px 1px rgba(255,255,255,.5);
	color:var(--color4);
	letter-spacing:0.2em;
	font-weight:100;
}
/*************************** search form **************************/
.search-form{
	display:flex;
	align-items: center;
	background:white;
	height:30px; width:250px;
	align-self:center;
	border-radius:15px;
	box-shadow:inset 2px 2px 2px rgba(0,0,0,0.5);
}
.search-form input{
	border:none;
	padding:0; margin:0;
	margin-left:10px
}
.search-form input[type=text]{
	outline:none;
	width:200px;
}
.search-form input[type=submit]{
	width:16px; height:16px;
	border-radius:50%;
	background:white;
	border:var(--color3) 2px solid;
	display:none;
}


/*************************** main **************************/
.main{
	display: flex;
	flex-direction: column;
    gap: 40px;
	background:var(--color-main-bg);
	min-height:calc(100vh - 209px - 180px);
	width:var(--w-main);
	margin:auto;
	margin-top:-25px;
	padding:30px 10px 10px 10px;
	box-shadow:0 4px 0 var(--color-main-bg),0 4px 0 white,0 6px 2px rgba(0,0,0,0.5);
	position: relative;
    z-index: 10;
	box-sizing:border-box;
}
p{
	font-family: 'Arial';
    font-size: 20px;
	text-align:center;
	padding:0;
	
}

.ser{
	list-style-type:none;
	padding:0px;
}


.ser img{
	display:inline-block;
	width: 90%;
	height: 70%;
	margin: 0 5%;
}

ul:before{
	content:"";
	display:block;
	border:5px green double;
	position:absolute;
	height:480px;
	width:890px;
	border-left-color:transparent;
	border-right-color:transparent;
	top:175px;
	left:50px;
}

ul:after{
	content:"";
	display:block;
	border:5px green double;
	position:absolute;
	height:510px;
	width:850px;
	border-top-color:transparent;
	border-bottom-color:transparent;
	top:160px;
	left:70px;
}
.text_form{
	text-decoration: none;
	
}



/********************** link-list *************************/
.link-list{
	width:max-content;
	list-style-type:none;
	font-size:0.9rem;	
}
.link-list a{
	color:var(--color3);
	text-decoration:none;
}
.link-list_long li{
	margin:10px;
} 
/*************************** footer **************************/
.footer{
	background:var(--color-main);
	height:180px;
	display:flex;
	justify-content: space-around;
	gap:5px;
	background:var(--color-main);
	padding:0 calc(50% - var(--w-main) / 2);
}
.footer section{
	flex-basis:23%;
}
/*************************** head **************************/
.head{
	font-size: 1.2rem;
    color: var(--color4);
	margin-bottom:10px;
}

.panel-book {
    display: flex;
    margin: auto;
    height: 50px;
	width:var(--w-main);
}
.wrapper2 {
	background-size: contain;
    background-position: 100px;
    background-repeat: repeat-x;
	justify-content: space-around;
	position: relative;
    flex: 1.5;
}




