
.hero-spss-learning {
    background: rgb(16 5 32);
}

.hero-spss-learning .container {
    display: flex;
    justify-content: space-between;
}

.hero-right {
    margin-top: 30px;
    color: #fff;
}

.hero-right p {
    color: #fff;
    font-size: 21px;
}

.hero-right a {
    margin-top: 30px;
    display: inline-block;
    background: #fff;
    padding: 26px 40px;
    color: #000;
    font-weight: 800;
    border-radius: 5px;
    font-size: 23px;
}

.hero-right a:hover {
    background: #000;
    color: #fff;
}

.hero-right h1 {
    font-size: 43px;
    margin-bottom: 25px;
}

.hero-left {
    width: 25%;
}

.hero-left img {
    border-radius: 10px;
}

.hero-spss-attributes {
    margin-top: 40px;
}

.hero-spss-attributes h2 {
    text-align: center;
    font-size: 40px;
}

.hero-spss-attributes .attr-boxes {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-spss-attributes .attr-boxes .attr-box {
    text-align: center;
    border: 1px solid #ddd;
    background: #ecf0f1;
    width: 23%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-radius: 15px;
    justify-content: center;
    cursor: pointer;
}

.hero-spss-attributes .attr-boxes .attr-box:hover {
    transform: scale(1.04);
    transition: .2s all ease-in-out;
    box-shadow: 0 0 12px #ddd;
}

.hero-spss-attributes .attr-boxes .attr-box i {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-spss-attributes .attr-boxes .attr-box h3 {
    font-size: 25px;
}

.hero-spss-attributes .attr-boxes .attr-box p {
    font-size: 14px;
    display: inline-block;
}

.hero-spss-videos {
    margin-top: 50px;
}

.hero-spss-videos h2 {
    font-size: 40px;
    text-align: center;
}

.video-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.video-boxes .video-box {
    width: 32%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.video-boxes .video-box img {
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
}

.video-boxes .video-box .video-title {
    margin-top: 15px;
    text-align: center;
}

.video-boxes .video-box .video-title h3 {
    font-size: 23px;
    line-height: 2;
    transition: .2s all ease-in-out;
}

.video-boxes .video-box:hover {
    box-shadow: 0 10px 12px #ddd;
}

.hero-spss-after {
    margin-top: 40px;
}

.hero-spss-after h2 {
    font-size: 40px;
    text-align: center;
}

.hero-spss-after ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    color: #fff;
    padding: 20px 0;
}

.hero-spss-after ul li {
    padding: 14px;
    border-radius: 10px;
    font-size: 23px;
    width: 49%;
}

.hero-spss-after .after-that {
    background: #000;
    margin-top: 25px;
}

.line {
    height: 1px;
    background: #f3f3f3;
    width: 100%;
    margin: 30px 0;
}

@media only screen and (max-width: 1080px) {
    .hero-spss-learning {
        padding: 14px;
    }
    .hero-spss-learning .container {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }

    .hero-left {
        width: 42%;
    }
}

@media only screen and (max-width: 900px) {
    .video-boxes .video-box .video-title h3 {
        font-size: 20px;
    }
    .hero-spss-attributes .attr-boxes .attr-box {
        width: 47%;
    }
}

@media only screen and (max-width: 768px) {
    .video-boxes .video-box {
        width: 47%;
    }
    .hero-spss-after ul {
        justify-content: center;
    }

    .hero-spss-after ul li {
        width: 68%;
    }
}

@media only screen and (max-width: 600px) {
    .video-boxes .video-box , .hero-spss-attributes .attr-boxes .attr-box {
        width: 100%;
    }
    .hero-spss-after ul li {
        width: 100%;
    }
}