html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
.logo{
    float:left;
    width: 688px;
    height: 190px;
    padding-left:20px;
}
@media screen and (max-width: 1337px) {
    .logo{
        height: 187px;
    }   
}
.wrapper {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-content: center;
    content-visibility: auto;
    position: relative;
    top: 183.8px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* content-visibility: auto; */
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: #29d;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    /* -webkit-transform: translateX(100%) translateY(-100%) rotate(45deg); */
    transform: translateX(100%) translateY(-100%) rotate(45deg);
    pointer-events: none;
}

.pace.pace-active .pace-activity {
    /* -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg); */
    transform: translateX(0%) translateY(0%) rotate(180deg);
}

.pace .pace-activity::before,
.pace .pace-activity::after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 47%;
    left: 50%;
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
    content: '';
}

.pace .pace-activity::before {
    margin-left: -40px;
    width: 80px;
    height: 80px;
    border-right-color: rgba(0, 0, 0, .2);
    border-left-color: rgba(0, 0, 0, .2);
    -webkit-animation: pace-theme-corner-indicator-spin 3s linear infinite;
    animation: pace-theme-corner-indicator-spin 3s linear infinite;
}

.pace .pace-activity::after {
    bottom: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    border-top-color: rgba(0, 0, 0, .2);
    border-bottom-color: rgba(0, 0, 0, .2);
    -webkit-animation: pace-theme-corner-indicator-spin 1s linear infinite;
    animation: pace-theme-corner-indicator-spin 1s linear infinite;
}

@-webkit-keyframes pace-theme-corner-indicator-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes pace-theme-corner-indicator-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@media screen and (max-width: 846px) {
    .wrapper {grid-template-columns: auto auto auto auto;}
}