.prizes-page {
    position: relative;
    background: 
        repeating-linear-gradient(
        to right,
        rgba(213, 223, 1, 0.5) 0px,
        rgba(213, 223, 1, 0.5) 2px,
        transparent 2px,
        transparent 20px
    ),
    var(--gradient1);
    overflow: hidden;
}

.prizes-page-wrapper {
    display: flex;
    gap: 230px;
    padding-top: 142px;
    padding-bottom: 103px;
    position: relative;
    min-height: calc(100vh - 64px);
}

.intro-text-prizes {
    width: fit-content;
}

.intro-text-prizes img,
.intro-text-prizes picture {
    width: 246px;
    height: 130px;
    min-width: 246px;
}

.intro-text-prizes > p {
    margin-top: 20px;
    white-space: nowrap;
}

.exact-prizes {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 40px;
}

.prizes-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.prizes-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.prizes-text > p,
.prizes-text > a {
    text-align: center;
}

.prizes-text > a {
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 8px;
    background-color: var(--white1);
    padding: 16px 32px;
    align-items: center;
    transition: 0.3s ease all;
}

.prizes-text > a svg {
    transition: 0.3s ease all;
}

.prizes-text > a:hover svg {
    transform: rotate(45deg);
    transition: 0.3s ease all;
}

.prizes-text > a:hover {
    background-color: var(--green2);
    transition: 0.3s ease all;
}

.prizes-bottom-left {
    position: absolute;
    left: 93px;
    bottom: 0px;
}

.prizes-top-right {
    position: absolute;
    top: 0px;
    right: 25%;
}

.prizes-bottom-right {
    position: absolute;
    right: -150px;
    bottom: -78px;
}

@media screen and (max-width:1350px) {
    
    .prizes-page-wrapper {
        gap: 100px;
    }
}

@media screen and (max-width:1200px) {
    
    .prizes-page-wrapper {
        gap: 50px;
    }
}

@media screen and (max-width:1150px) {
    
    .prizes-page-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .prizes-bottom-left {
        display: none;
    }

    .prizes-images {
        justify-content: center;
        gap: 50px;
    }

    .prizes-top-right {
        top: 50px;
        right: 15%;
    }

    .exact-prizes {
        margin-top: 0px;
    }
}

@media screen and (max-width:768px) {

    .prizes-images img,
    .prizes-images picture {
        width: 270px;
        height: 295px;
    }

    .exact-prizes {
        margin-top: 30px;
    }

    .prizes-bottom-right {
        display: none;
    }

    .prizes-text > a {
        width: 100%;
        padding: 14px 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .prizes-page-wrapper {
        padding-bottom: 100px;
        padding-top: 115px;
    }

    .intro-text-prizes img, .intro-text-prizes picture {
        width: 143px;
        height: 75.29px;
        min-width: 143px;
    }

    .intro-text-prizes > p {
        margin-top: 6px;
    }

    .prizes-top-right {
        right: 3%;
        top: 0px;
    }
}

@media screen and (max-width:600px) {

    .prizes-images {
        flex-direction: column;
        gap: 44px;
        align-items: center;
    }

    .prizes-page-wrapper {
        gap: 32px;
    }

    .exact-prizes {
        margin-top: 0px;
    }
}

@media screen and (max-width:520px) {

    .prizes-top-right {
        right: -14%;
    }
}