section.content-box-block {
    padding: 100px 0;
    position: relative;
    background-size: 100%;
    background-position: center;
}
section.content-box-block .container, section.content-box-block .container-md {
    position: relative;
    z-index: 2;
}
section.content-box-block .container-md {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.content-box-left {
    width: 50%;
}
.content-box-right {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    width: calc(50% - 80px);
}
.content-box-left h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: normal;
}
.content-box-left h6 {
    color: #8574B0;
    font-family: 'Roboto';
    font-weight: normal;
    margin-bottom: 40px;
}
.content-box-left p {
    color: #fff;
    margin-bottom: 40px;
}

.content-box-block .button-style-1 {
    background-color: #00B4CD;
    border-color: #00B4CD;
    background-image: url(../../images/pdf-icon.svg);
    background-repeat: no-repeat;
    background-position: 20px center;
    padding-left: 60px;
}
.content-box-block .button-style-1:hover {
    background-color: #8574B0;
    border-color: #8574B0;
    color: #fff;
}

.content-box-each {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    position: relative;
    width: calc(50% - 16px);
    padding: 40px;
}
.content-box-each::after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.content-box-each::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url(../../images/rectangle-left.svg);
    background-repeat: no-repeat;
    background-position: left top;
}
.content-box-each-bg{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url(../../images/rectangle-right.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
}
.content-box-each h5 {
    font-size: 20px;
    line-height: 24px;
    color: #FFD23B;
    font-weight: 500;
    font-family: 'Roboto';
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.content-box-each p {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    z-index: 2;
    color: #fff;
}
@media (max-width:1566px) {
}

@media (max-width:1440px) {
}

@media (max-width:1380px) {
    .content-box-each {
        padding: 30px 30px;
    }

}

@media (max-width:1366px) {
}

@media only screen and ( max-width: 1199px) {
    .content-box-each {
        padding: 20px 30px;
    }
}

@media only screen and ( max-width: 961px) {
    section.content-box-block {
        padding: 60px 0;
    }
    .content-box-left h6,
    .content-box-left p {
        margin-bottom: 30px;
    }
    section.content-box-block .container-md {
        gap: 50px;
    }
    .content-box-left {
        width: 42%;
    }
    .content-box-right {
        display: flex;
        gap: 25px;
        width: calc(58% - 50px);
    }
    .content-box-each {
        width: calc(50% - 12.5px);
    }
}

@media only screen and ( max-width: 768px) {
    .content-box-left,
    .content-box-right {
        width: 100%;
    }
    .content-box-left {
        text-align: center;
    }
    .content-box-left h6,
    .content-box-left p {
        margin-bottom: 20px;
    }
    .content-box-block .button-style-1 {
        margin-top: 10px;
    }
}

@media only screen and ( max-width: 560px) {

}