body {
    background-color: #292929;
}
.page_main_title {
    height: 100px;
}

.page_main_description {
    font-size: 40px;
    font-weight: 400;
    line-height: 48.41px;   
    color: #fff;
    margin: 60px 0px;
}


.grid {
    width: 100%;
    display: grid;
    background-color: #404040;
    height: auto;
}

.grid-info {
    width: 1360px;
    margin: 0 auto;
    display: flex;
}

.grid-info {
    margin-top: 100px;
}
.grid-info-text {
    margin-top: 70px;
    margin-left: 82px;
    
}

.grid-info h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 77.45px;
    color: #fff;
    margin-bottom: 44px;
}

.grid-info p {
    font-size: 32px;
    font-weight: 400;
    line-height: 38.73px;
    color: #fff;
    display: inline;
    margin-right: 40px;
}

.grid-info-button {
    display: block;
    background: rgba(171, 52, 52, 1);
    color: #fff;
    width: 200px;
    border-radius: 44px;
    margin-top: 50px;
    box-shadow: none;
    text-align: center;
    padding: 20px 0px;
}


.grid-info-button:hover, .grid-info-button a:hover {
    background: rgba(175, 103, 103, 1);
    color: #fff;
}


.grid-page {
    width: 1360px;
    /* border: 1px solid #fff; */
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 10px;
}

.grid-image img {
    margin-right: 10px;
    margin-bottom: 10px;
}

    

.grid-image img {
    transition: transform 0.5s ease; 
    transform-origin: top left; /* Устанавливаем точку трансформации изначально */

}

.grid-image img:hover {
    transform: scale(1.1); /* Увеличение изображения */
}

.exit a {
    color: #fff;
}