@import url('https://fonts.googleapis.com/css?family=Philosopher&display=swap');

html {
    height:100%;
}

body {
    margin:0;
    background-color: azure;
    height:100%;
    font-family: 'Philosopher', sans-serif;
    line-height: 150%;
    font-size:12pt;
}

.bold {
	font-weight: bold;
	border-bottom: unset;
	color:black;
}

a {
    color:dodgerblue;
    text-decoration: none;
    border-bottom: 1px solid #44A1FF55;
}

div.site {
    background-color: white;
    width:98%;
    margin: 0 auto;
    max-width: 1000px;
    
    
    -webkit-box-shadow: 0px 0px 25px 0px rgba(148,148,148,0.3);
    -moz-box-shadow: 0px 0px 25px 0px rgba(148,148,148,0.3);
    box-shadow: 0px 0px 25px 0px rgba(148,148,148,0.3);
}

.header {
    min-height:250px;
    text-align: center;
    padding:20px;
    margin-bottom: 20px;
}

.logo img {
    width:100px;
    height:100px;
    vertical-align: middle;
}

.logo {
    font-size: 70px;
    text-align: center;
    line-height: 100%;
}

h1 {
    line-height: 150%;
}

.menu {
    padding:20px;
    background-color: coral;
    color:white;
    text-align: center;
    line-height: 250%;
}

.menu img {
    height:0.8em;
    width: auto;
    vertical-align: top;
}

a.tel {
    color:white;
    text-decoration: none;
    border-bottom:1px solid rgba(255,255,255,0.6);
    font-size:1.4em;
}

.menu span {
    display: inline-block;
    padding:0 20px;
}

.text-highlight {
  font-style: normal;
  border-radius: 1em 0 1em 0;
  text-shadow: 1px 1px 1px #fff;
  background-image: 
    linear-gradient(-100deg, 
      rgba(255,250,150,0.15),
      rgba(255,250,150,0.8) 100%, 
      rgba(255,250,150,0.25)
    );
}



.footer {
    text-align: center;
    padding:20px;
}

img.contact-img {
    height:1.4em;
    vertical-align: top;
    
}

.chats a {
    /* border-bottom: none; */
}

.content {
    padding:20px;
}


/* Каталог flex */

div.catalog {
    display: flex;
    
    justify-content: center;
    align-items: center;
    flex-direction: row;
	flex-wrap: wrap;
    
}

.catalog div {
    padding:10px;
    margin:20px;
    width:160px;
    text-align:center;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    -moz-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    vertical-align: top;
	
	
}

/* Каталог flex */

div.andmore {
    display: flex;
    
    justify-content: center;
    align-items: center;
    flex-direction: row;
	flex-wrap: wrap;
    
}

.andmore div.more {
    padding:10px;
    margin:20px;
    width:160px;
    text-align:center;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    -moz-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    vertical-align: top;
	
	
	}

h2 {
    text-align: center;
}

.price {
    font-weight: bold;
}

.discount {
    vertical-align: super;
    font-size:0.8em;
    color:coral;
}

.center {
    text-align: center;
}

.andmore1 {
transform: rotate(15deg) translateY(-20px);
}

.andmore2 {
transform: rotate(5deg) translateY(20px);
}

.andmore3 {
transform: rotate(-5deg) translateY(20px);
}

.andmore4 {
transform: rotate(-15deg) translateY(-20px);
}

@media screen and (max-width:900px) {
.andmore1, .andmore2, .andmore3, .andmore4 {
	transform: none;
	}
}

/* форма */

div.formblock {
width:50%;
max-width: 700px;
margin: 0 auto;
}

input[type=text] {
    padding:10px; 
    border:1px solid #ccc; 
    -webkit-border-radius: 3px;
    border-radius: 3px;
	margin: 5px 0;
	font-size:1em;
	width:100%;
	max-width: 700px;
	font-family: 'Philosopher', sans-serif;
}

input[type=text]:focus {
   /* border-color:#333; */
}

textarea {
	padding:10px; 
    border:1px solid #ccc; 
    -webkit-border-radius: 3px;
    border-radius: 3px;
	margin: 5px 0;
	font-size:1em;
	width:100%;
	max-width: 700px;
	height: 4em;
	font-family: 'Philosopher', sans-serif;
}

input[type=submit] {
    padding:10px 25px; 
    background:coral; 
	color:white;
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 3px;
    border-radius: 3px;
	font-size:1em;
	font-family: 'Philosopher', sans-serif;
	}