* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-grid {
    display: grid;
    grid-template-columns:
        1fr repeat(2, minmax(auto, 25em)) 1fr;
}

body {
    font-size: 30px;
    font-family: 'Courier New', Courier, monospace;
}

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);
    color: white;
    grid-column: 1 / -1;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: rgb(107, 114, 109);
    transition: 0.5s;
}

.banner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner h1 {
    font-size: 80px;
}

.banner p {
    font-size: 30px;
    text-align: center;
    max-width: 40%;
    padding: 50px 0;
}

.button {
    background: rgb(255, 255, 255);
    color: rgb(63, 71, 68);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
}

.button:hover {
    cursor: pointer;
    background: rgba(67, 99, 76, 0.7);
    color: white;
    transition: 0.5s;
}

.clothes {
    grid-column: 2 / -2;
    display: flex;
    height: 15vh;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 150px;
}

.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_overlay {
    background: rgba(0, 0, 0, 0.5);
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 2;
    display: grid;
    justify-items: center;
    align-items: center;
    color: white;
}

.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:hover .item_img {
    transform: scale(1.15);
    transition: 0.5s;
}


footer {
    grid-column: 1 / -1;
    height: 30vh;
    background: rgb(89, 100, 94);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p {
    padding: 30px 0;
}

.social_contacts {
    display: flex;
    justify-content: space-around;
    width: 10vw;
}

.social_contacts a:hover {
    cursor: pointer;
    color: orange;
    transition: 0.5s;
}

.tiles_team .description{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tiles_team .item{
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
}

.tiles_team{
    grid-column: 2 / -2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 100px;
    margin-bottom: 100px;
}

.tiles_team .item p{
    margin: 25px 0;
}
.tiles_team .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
}
.team_name{
    font-size: 30px;
}
.position{
    font-size: 20px;
    color: gray;
}

.description {
    grid-column: 2 / -2;
    text-align: center;
    padding: 80px 40px;
    border-bottom: 2px solid white;
}

.description h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: dimgray  ;
}

.description p{
    font-size: 18px;
    color: grey;
    line-height: 1.6;
    max-width: 600px;
    margin: 30px auto;
}

.ContentInfo{
    grid-column: 2 / -2;
    text-align: center;
    padding: 60px 40px;
}

.ContentInfo h1{
    font-size: 45px;
    margin-bottom: 20px;
    color: dimgrey;
}

.ContentInfo p{
    font-size: 18px;
    margin-bottom: 40px;
    color: grey;
}

.tiles_team .item_image{
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tiles_team .item_info{
    background: white;
    padding: 30px 20px;
    text-align: center;
}

.description hr{
    width: 80% !important;
    margin: 20px auto !important;
}