/*!
Theme Name: ChallengeMe
Theme URI: http://underscores.me/
Author: An21
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bit
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bit is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
.challenges .container > h3{
    margin-bottom: 64px;
}
.challenges-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.challenges-wrapper .item{
    width: calc(100%/3 - 40px/3);
    padding: 20px;
    border: 1px solid #666;
    backdrop-filter: blur(4px);
    box-shadow: inset 4px 4px 4px 0 rgba(111, 111, 111, .25), inset -4px -4px 4px 0 rgba(0, 0, 0, .25), 0 12px 11px 0 rgba(0, 0, 0, .25);
    background: rgba(30, 27, 22, .4);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.challenges-wrapper .item > img{
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.challenges-wrapper .item .item-icon{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    fill: rgba(30, 27, 22, 0.4);
    backdrop-filter: blur(7px);
    box-shadow: 0 21px 19px 0 rgba(0, 0, 0, 0.25), inset 7px 7px 7px 0 rgba(111, 111, 111, 0.25), inset -7px -7px 7px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -30px;
    position: relative;
    margin-left: 18px;
    border: 1.5px solid #656565;
}
.challenges-wrapper .item .item-content h4{
    font-weight: 600;
    font-size: 18px;
    line-height: 155%;
    text-transform: uppercase;
    color: #fea700;
    margin-bottom: 20px;
}
.challenges-wrapper .item .item-content p, .challenges-wrapper .item .item-content li{
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #fff;
}
.challenges-wrapper .item .item-content li{
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}
.challenges-wrapper .item .item-content li:before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fea700;
    top: 7px;
    left: 0;
}

.challenges-wrapper .item .item-content ul{
    margin-bottom: 40px;
}
.challenges-wrapper .item .btn{
    margin-top: auto;
    width: 100%;
}
@media (max-width: 991px) {
    .challenges-wrapper .item{
        width: 100%;
    }
    .challenges .container > h3{
        margin-bottom: 30px;
    }
}