.spotlight {
    position: relative;
}

.spotlight__wrap {
    background: #FAFBFD;
    box-shadow: 0 0 30px rgba(0, 79, 157, 0.13);
    border-radius: 6px;
    padding: 14px 18px 14px 11px;
}

.spotlight__col {
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 285px;
    margin: 0 auto;
}

.spotlight__info {
    width: 140px;
    margin-left: 15px;
}

@media( min-width:600px ) {
    .spotlight__info {
        width: 167px;
        margin-left: 0;
    }
}

.spotlight_icon-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 167px);
    justify-content: center;
    text-align: center;
}

.spotlight__icon {
    font-size: 26px;
    color: #F26727;
    margin-right: 8px;
    width: 28px;
}

.spotlight__icon-name {
    font-size: 25px;
    font-weight: 700;
    color: #000810;
    margin-bottom: -4px;
}

.spotlight__icon-name.resize {
    font-size: 21px;
}

.spotlight__info p {
    font-size: 14px;
    color: #000810;
    line-height: 1.42em;
}

.sportlight-wrap__icons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spotlight__icon img {
    width: auto;
    height: 100%;
}

.spotlight__icon-name {
    flex: 0 0 100%;
}

.spotlight.bg-white:before {
    content: none;
}

.spotlight.bg-white {
    padding-top: 60px;
}

@media(min-width: 768px) {

    .spotlight__wrap {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 26px;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }

    .spotlight-angle-img {
        position: relative;
        z-index: 1;
    }

    .spotlight-angle-img span {
        -webkit-clip-path: polygon(0 0, 23% 100%, 100% 100%);
        clip-path: polygon(0 0, 23% 100%, 100% 100%);
    }

    .image-overlay {
        width: 296px;
        height: auto;
        position: absolute;
        top: 34px;
        left: -95px;
        z-index: 1;
    }

    .spotlight__col {
        width: 167px;
        padding: 0 0;
        align-items: center;
        margin: 0;
    }

    .spotlight__info {
        width: 100%;
    }

    .spotlight_icon-info {
        width: 100%;
        align-items: center;
        justify-content: initial;
        text-align: initial;
    }

    .spotlight__icon {
        font-size: 32px;
        width: auto;
        margin-right: 12px;
    }

    .spotlight__icon-name {
        font-size: 30px;
        margin-bottom: 0;
    }

    .spotlight.bg-white {
        padding-top: 80px;
    }
}

@media(min-width: 1200px) {
    .image-overlay {
        width: 515px;
        top: 13px;
        left: -165px;
    }

    .spotlight__icon {
        font-size: 43px;
        margin-right: 16px;
    }

    .spotlight__icon-name {
        font-size: 48px;
        margin-top: 10px;
        line-height: 1em;
    }

    .spotlight__icon-name.resize {
        font-size: 37px;
    }

    .spotlight__col {
        width: 192px;
    }

    .spotlight__info p {
        font-size: 15px;
    }

    .spotlight_icon-info {
        padding: 0 0 6px;
    }

    .spotlight__wrap {
        padding: 46px 125px;
    }

    .spotlight.bg-white {
        padding-top: 100px;
    }
}

.spotlight--inner {
    position: relative;
    z-index: 1;
}

.spotlight--inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 107px;
    left: 0;
    bottom: 0;
    background-color: rgba(241,244,249,0.52);
    z-index: -1;
}

.spotlight--inner.bg-dark-before::before {
    background-color: #051529;
}

.spotlight--inner.bg-light-before::before {
    background-color: var( --light-blue );
}

@media (min-width: 768px) {
    .spotlight--inner::before {
        height: 78px;
    }
}

@media (min-width: 1200px) {
    .spotlight--inner::before {
        height: 112px;
    }
}











