body {

margin:0;
font-family:'Montserrat',Arial,sans-serif;
color:#303030;
background:#f5f6f7;

}


header {

height:80px;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 8%;

}


.logo {

font-size:32px;
font-weight:700;
letter-spacing:2px;

}


nav a {

margin-left:25px;
text-decoration:none;
color:#34495e;

}



.hero {

min-height:600px;

background:
linear-gradient(
rgba(255,255,255,.8),
rgba(255,255,255,.8)
),
url("images/sklad-shin.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;

padding:0 8%;

}


.hero h1 {

font-size:48px;
font-weight:700;

}


.hero p {

font-size:20px;
max-width:600px;

}



.button {

display:inline-block;
background:#34495e;
color:white;
padding:15px 35px;
margin-top:20px;
text-decoration:none;

}



section {

padding:70px 8%;

}


h2 {

font-size:36px;
text-align:center;

}



.gallery {

display:flex;
gap:30px;
justify-content:center;

}


.gallery img {

width:45%;
border-radius:10px;

}



.cards {

display:flex;
gap:30px;

}


.cards div {

background:white;
padding:30px;
border-radius:12px;
flex:1;

}



.map {

height:350px;
background:#ddd;
display:flex;
align-items:center;
justify-content:center;
margin-top:30px;

}


footer {

background:#252525;
color:white;
padding:30px;
text-align:center;

}



@media(max-width:700px){

.hero h1{
font-size:32px;
}

.cards,
.gallery{
flex-direction:column;
}

.gallery img{
width:100%;
}

}