.info-section {
    background: #1B204C;
}

.info-section-wrapper {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
    padding: 29px 14px 10px 28px
}

.info-section-wrapper .left {
    width: 732px;
    font-family: Myriad Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: white;
}
.info-section-wrapper .left h3{
    font-family: Myriad Pro;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    margin-bottom: 12px;
    color: white;
}

.info-section-wrapper .right {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.info-section-wrapper .right .item {
    width: 404px;
    font-family: Myriad Pro;
    font-size: 44px;
    font-weight: 700;
    line-height: 47.52px;
    text-align: right;
    color: white;
}

.info-section-wrapper .right .item:nth-of-type(2) {
    opacity: 0.32;
}

.info-section-wrapper .right .item:nth-of-type(3) {
    opacity: 0.11;
}

@media screen and (max-width:1024px) {
    .info-section {
        background: #1B204C;
    }
    
    .info-section-wrapper {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        gap: 20px;
    }
    
    .info-section-wrapper .left {
        width: 100%;
        font-family: Myriad Pro;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: white;
    }
    .info-section-wrapper .left h3{
        font-family: Myriad Pro;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        text-align: left;
        margin-bottom: 12px;
        color: white;
    }
    
    
    .info-section-wrapper .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .info-section-wrapper .right .item {
        width: 100%;
        font-family: Myriad Pro;
        font-size: 34px;
        font-weight: 700;
        line-height: 37.52px;
        text-align: center;
        color: white;
    }
    
    .info-section-wrapper .right .item:nth-of-type(2) {
        opacity: 0.32;
    }
    
    .info-section-wrapper .right .item:nth-of-type(3) {
        opacity: 0.11;
    }
}