* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #F0EFF8;
}

.grid-container {
    display: grid;
    grid-template-columns: 74% 26%; 
    grid-template-rows: 222px 44px 400px;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 30px;
}

.item1 {
    grid-column: 1 / span 1; 
    grid-row: 1 / span 1; 
}

.item1 img {
    width: 100%;
    height: 100%;
}

.item2 {
    grid-column: 2 / span 1; 
    grid-row: 1 / span 3;
    margin-left: 5%;
}
.item2 .bet {
    width: 100%;
    background: #243A48;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}
.item2 .bet p {
    font-family: Helvetica;
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
}
.item3 {
    grid-column: 1 / span 1; 
    grid-row: 2 / span 1; 
    background: linear-gradient(180deg, #5F7FDB 0%, #0CDDFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.item3 button {
    outline: none;
    cursor: pointer;
    background: none;
    margin-right: 5px;
    width: 130px;
    height: 37px;
    padding: 8px 15px 8px 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #243A48 inset;
    border: 1px solid #243A48;
    text-transform: uppercase;
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: #243A48;
}
.item3 button.active {
    background: #243A48;
    color: #fff;
}
.item3 button:hover {
    background: #243A48;
    color: #fff;
}
.item4 {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1; 
}
.item4 .container-item4{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.item4 .container-item4 p {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #6C757D;
    margin-top: 10px;
    margin-left: 10px;
}
.item4 .select {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    padding-left: 10px;
}
.item4 .select button {
    outline: none;
    cursor: pointer;
    background: transparent;
    width: 150px;
    height: 25px;
    color: #243A48;
    border-right: 1px solid #243A48;
    padding: 0px 1px 0px 0px;
    font-family: Helvetica;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
}
.item4 .select button.active {
    background: #243A48;
    color: #fff;
}
.item4 .select button:hover {
    background: #243A48;
    color: #fff;
}
@media(max-width: 576px) {
    .grid-container {
        grid-template-rows: 100px 44px 400px;
    }
    .item3 button {
        width: 100px;
        padding: 3px 8px 6px 8px;
        font-size: 12px;
    }
    .item4 .select {
        padding-left: 0;
    }
}