* {
    margin: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
    font-size: 24px;
}
a {
    text-decoration: none;
    color: white;
}
header {
    background-image: url(./images/header_back.jpg);
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    grid-column: 1/-1;
    height: 100vh;
    color: white;

}
nav {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    height: 100%;
}

.menu ul {
    display: flex;
    list-style: none;
}
.menu ul li {
    padding: 1em 2em;
}
.menu ul li a {
    color: white;
    text-decoration: none;
}
.menu ul li a:hover {
    color: orange;
    transition: 0.9s;
}

.banner{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-size: 72px;
}

.banner p {
    font-size: 22px;
    text-align: center;
    max-width: 40%;
    padding: 50px 0;
}
.button {
    background: #c49300;
    color: white;
    padding: 15px 50px;
}
.button:hover {
    background: #8c6900;
    transition: 0.9s;
}

.clothes {
    grid-column: 2/ -2;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 100px;
}

.clothes p {
    padding: 20px;
    text-align: center;
}

.tiles {
    grid-column: 2/-2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 100px;
}
.item {
   display: grid;
   grid-template-columns: 1;
   grid-template-rows: 1;
   overflow: hidden;
}
.item_img {
    grid-column: 1/-1;
    grid-row: 1/-1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item_overlay {
    background: rgba(0,0,0, 0.5);
    grid-column: 1/-1;
    grid-row: 1/-1;
    display: grid;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
}

.item:hover .item_img {
    transform: scale(1.2);
    transition: 0.5s;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;

}
.social-contacts {
    display: flex;
    width: 10vw;
    justify-content: space-around;
}
.social-contacts i {
    color: rgb(255, 255, 255);
}

.social-contacts i:hover {
    color: orange;
    transition: 0.9s;
}

footer {
    grid-column: 1/-1;
    height: 30vh;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p {
    padding: 30px 0;
}
@media (max-width: 1024px) {
    .tiles, .tiles_team {
        grid-template-columns: repeat(3, 1fr);
    }
    nav {
        flex-direction: column;
        height: auto;
    }
    .menu ul {
        flex-direction: column;
        align-items: center;
    }
    .menu ul li {
        padding: 0.5em 1em;
    }
    .banner h1 {
        font-size: 48px;
    }
    .logo {
        width: 15%;
        align-self: start;
    }
}

@media (max-width: 768px) {
    .tiles, .tiles_team {
        grid-template-columns: 1fr;
        padding: 0px 30px;
    }
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }
    .menu ul {
        flex-direction: column;
        align-items: center;
    }
    .menu ul li {
        padding: 0.5em 1em;
    }
    .banner h1 {
        font-size: 48px;
    }
    .logo {
        width: 15%;
        align-self: start;
    }
    .social-contacts a{
        padding-right: 20px;
    }

}