.fast-track__wrapper {
    background:  #DEF4FF;
    padding: 169.5px 0;
    position: relative;
}

.fast-track__wrapper::before {
    content: '';
    position: absolute;
    background-image: url('../images/boxes-background.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 332px;
    height: 332px;
    left: 0;
    bottom: 0;
    transform: rotate(270deg);

    z-index: 1;
}

.fast-track__wrapper::after {
    content: '';
    position: absolute;
    background-image: url('../images/boxes-background.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 332px;
    height: 332px;
    right: 0;
    top: 0;

    z-index: 1;
    transform: rotate(90deg);
}

.fast-track {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fast-track__title {
    color:  #000;
    text-align: center;
    font-size: 64px;
    font-family: ABC Favorit;
    font-weight: 350;
    line-height: 82px;
    margin-bottom: 24px;
    z-index: 10;
}

.fast-track__description {
    text-align: center;
    color: #000;
    font-size: 20px;
    
    line-height: 34px;
    max-width: 640px;
    z-index: 10;
}

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

    .fast-track__wrapper::before {
        width: 244px;
        height: 244px;
    }
    
    .fast-track__wrapper::after {
        width: 244px;
        height: 244px;
    }
}

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

    .fast-track__wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .fast-track__title {
        font-size: 40px;
        line-height: 52px;
        margin-bottom: 24px;
    }

    .fast-track__wrapper::before {
        width: 168px;
        height: 168px;
    }
    
    .fast-track__wrapper::after {
        width: 168px;
        height: 168px;
    }
}


