.page-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: 1 / 0.5;
}

.page-title h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 235px 0 235px 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.page-title {
    height: 582px;
    margin-bottom: 100px;
}

.section1 .cont1 {display: flex;}
.section1 .cont2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.section1 .group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1 .group span {
    transition: 0.5s;
}

.section1 .group .text1 {
    position: absolute;
    left: 40%;
    transform: translateX(-50%);
    opacity: 0;
}

.section1 .group .text2 {
    left: 0;
    opacity: 1;
}

.section1 .item:hover .text1 {left: 50%; opacity: 1;}
.section1 .item:hover .text2 {left: 20%; opacity: 0}