.explore-skills {
    position: relative;
    display: flex;
    margin: 120px auto 0px;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 860px;
}

@media screen and (max-width: 768px) {
    .explore-skills {
        width: 90%;
        margin-top: 35px;
        padding: 0px;
    }
    .explore-skills .explore-skills-content {
        padding: 24px;
    }
}

.explore-skills .explore-skills-content {
    border: 1px black solid;
    background-color: #0B0729;
    color: white;
    padding: 50px;
    min-width: 100%;
}

@media screen and (max-width: 768px) {
    .explore-skills {
        width: 90%;
        margin-top: 35px;
        padding: 0px;
    }
    .explore-skills .explore-skills-content {
        padding: 24px;
    }
}

.explore-skills .explore-skills-title {
    font-family: 'Basis Grotesque', Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 28px;
    font-weight: 300;
    padding: 0px;
    text-transform: none;
    margin: 0px 0px 16px;
}

.explore-skills-content p {
    font-family: 'Basis Grotesque', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 16px;
}

.explore-skills-content .explore-skills-btn {
    display: flex;
    max-width: fit-content;
    color: white;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    box-sizing: border-box;
    height: 36px;
    border-radius: 2px;
    text-decoration: none;
    background-color: #186ADE;
    cursor: pointer;
    border: 0px;
    transition: background-color 0.15s ease-in;
}

.explore-skills-content .explore-skills-btn:hover {
    background-color: rgb(22, 96, 201);
    text-decoration: none;
}

.explore-skills-content .explore-skills-btn .explore-skills-btn-text {
    font-family: "GoldmanSans", Arial, Helvetica, sans-serif;
    color: white;
    font-size: 15px;
    line-height: 28px;
    font-weight: 700;
    padding: 8px 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}