#free {
    background: #f9f9f7;
    padding: 3em 0;
}
#free .container {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 1em;
}
#free h1 {
    font-size: 36px;
    text-align: left;
}
#free p {
    font-size: 14px;
    font-weight: 400;
}
#free .left {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    gap: 1em;
}
#free .right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}
#free .right .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #efefef;
    box-shadow: 0px 5px 20px 0px #0000000d;
    background: #f9f9f70f;
    border-radius: var(--border-radius);
    padding: 1em;
    gap: 1em;
}
#free .right .item:hover {
    box-shadow: 0px 5px 20px 0px #0005;
}
#free .right p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
#free .container button {
    font-size: 14px;
    font-weight: 400;
    width: max-content;
    transition: all 0.2s ease-in;

    border: 0;
    padding: 0.6em 1.2em;
    color: #fff;
    background-color: var(--colorMain);
    border-radius: var(--border-radius);
}
#free .container button:hover {
    cursor: pointer;
    background-color: var(--colorMainHover);
}


@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
    #free .container .left p {
        font-size: 14px;
    }
    #free .container {
        grid-template-columns: 1fr;
    }
    #free .container button {
        width: 100%;
    }
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}