

        /* galeria styles */
        .gallery {
            position: relative;

            padding: 80px 0;

            overflow: hidden;

            background: linear-gradient(179.73deg, #D3D3D3 0.23%, #D2D2D2 0.24%, #EDEDED 11.64%, rgba(237, 237, 237, 0) 66.59%, #EDEDED 89.92%, #D5D5D5 99.77%);

        }

        .gallery .background-left {
            position: absolute;

            top: 50%;

            left: 0;

            transform: translateY(-50%);

            width: 320px;

            opacity: .15;

        }

        .gallery .background-right {
            position: absolute;

            top: 50%;

            right: 0;

            transform: translateY(-50%);

            width: 320px;

            opacity: .15;
        }

        .gallery h2 {
            margin: 0;

            text-align: center;

            font-family: "PT Serif", serif;
            font-size: 56px;
            font-weight: 700;

        }

        .gallery .line {
            width: 60px;
            height: 4px;

            margin: 15px auto 60px auto;

            background: #ECB664;
        }

        .gallery .gallery-container {
            display: flex;

            justify-content: center;
            align-items: center;

            gap: 30px;

        }

        .gallery .arrow {
            display: flex;

            justify-content: center;
            align-items: center;

            width: 60px;
            height: 60px;

        }

        .gallery .arrow img {
            width: 30px;
        }

        .gallery .images {
            display: flex;

            gap: 30px;

        }

        .gallery .images img {
            width: 430px;
            height: 270px;

            object-fit: cover;
            object-position: center;

            border-radius: 4px;
        }

        .gallery .button {
            display: flex;

            justify-content: center;
            align-items: center;

            width: 180px;
            height: 55px;

            margin: 50px auto 0 auto;

            text-decoration: none;

            color: black;
            font-size: 20px;
            border-radius: 6px;
            background: #ECB664;
        }
