#stock-block {
    padding-bottom: 80px;
}

#stock-block .block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

#stock-block .block-title {
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
    color: #151515;
    margin-bottom: 0px;
}

#stock-block .stock-wrapper {
    display: flex;
    justify-content: space-between;
}

#stock-block .stock-wrapper .left-side {
    width: 48%;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
}

#stock-block .stock-wrapper .right-side {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#stock-block .stock-wrapper .left-side .bstock-name {
    padding: 10px 20px;
    background: #5b692c;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
    color: #ffffff;
    width: fit-content;
    margin-top: 20px;
    margin-bottom: 3px;
    margin-left: 1px;
    transition: 0.3s all;
}

#stock-block .stock-wrapper .left-side:hover .bstock-name {
    color: #5b993d;
}

#stock-block .stock-wrapper .left-side .bstock-desc {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #ffffff;
    padding: 10px 20px;
    background: #5b692c;
    width: fit-content;
    margin-bottom: auto;
    margin-left: 1px;
}

#stock-block .stock-wrapper .left-side .bstock-data {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #ffffff;
    margin-left: 20px;
    margin-bottom: 20px;
}

#stock-block .stock-wrapper .stock-item {
    background: #5b692c;
    border: 1px solid #5b692c;
    border-radius: 2px;
    display: flex;
    cursor: pointer;
    position: relative;
    transition: 0.3s all;
}

#stock-block .stock-wrapper .stock-item:hover {
    border: 1px solid #5b692c;
    border-radius: 2px;
}

#stock-block .stock-wrapper .stock-item .left {
    width: 50%;
    padding: 25px 5px 25px 25px;
}

#stock-block .stock-wrapper .stock-item .right {
    width: 50%;
}

#stock-block .stock-wrapper .stock-item .stock-name {
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    transition: 0.3s all;
}

#stock-block .stock-wrapper .stock-item:hover .stock-name {
    color: #5b993d;
}

#stock-block .stock-wrapper .stock-item .stock-desc {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #ffffff;
    margin-bottom: 50px;
}

#stock-block .stock-wrapper .stock-item .stock-data {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #ffffff;
}

#stock-block .stock-wrapper .stock-item .stock-img {
    height: 100%;
}

#stock-block .stock-wrapper .stock-item .stock-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#stock-block .svg-holder {
    position: absolute;
    right: 15px;
    bottom: 10px;
    visibility: hidden;
}

#stock-block .left-side:hover .svg-holder,
#stock-block .stock-item:hover .svg-holder {
    visibility: visible;
}

@media (max-width: 996px) {
    #stock-block .stock-wrapper .left-side {
        width: auto;
        height: 436px;
        padding: 10px 30px;
        margin-right: 0px;
        background-repeat: no-repeat;
        background-size: cover;
        margin-bottom: 10px;
    }

    #stock-block .stock-wrapper {
        flex-direction: column;
        align-items: center;
    }

    #stock-block .stock-wrapper .right-side {
        flex-direction: row;
        width: 100%;
    }

    #stock-block .stock-wrapper .stock-item .left {
        padding: 5px;
    }

    #stock-block .stock-wrapper .stock-item .stock-name {
        font-size: 18px;
    }

    #stock-block .stock-wrapper .stock-item .left {
        width: 60%;
    }
}

@media (max-width: 776px) {
    #stock-block .stock-wrapper .right-side {
        flex-direction: column;
    }

    #stock-block .stock-wrapper .stock-item {
        align-items: center;
    }

    #stock-block .stock-wrapper .right-side {
        gap: 10px;
    }

    #stock-block .block-title {
        font-size: 28px;

    }

    #stock-block .svg-holder {
        display: none;
    }
}

@media (max-width: 600px) {
    #stock-block .stock-wrapper .left-side {
        width: 100%;
    }

    #stock-block .stock-wrapper .stock-item .stock-desc {
        margin-bottom: 5px;
    }

    #stock-block .stock-wrapper .stock-item {
        flex-direction: column;
    }

    #stock-block .stock-wrapper .stock-item .left,
    #stock-block .stock-wrapper .stock-item .right {
        width: 100%;
    }

    #stock-block .stock-wrapper .left-side {
        padding: 0px;
    }
}

@media (max-width: 450px) {
    #stock-block .stock-wrapper .left-side {
        height: 310px;
        padding: 5px;
    }

    #stock-block .stock-wrapper .left-side .bstock-data {
        margin-left: 5px;
    }

    #stock-block .stock-wrapper .left-side .bstock-name {
        font-size: 18px;
    }

    #stock-block .stock-wrapper .left-side .bstock-desc {
        padding: 5px;
        font-size: 14px;
    }

    #stock-block .block-top {
        flex-direction: column;
        align-items: flex-start;
    }

    #stock-block .block-title {
        margin-bottom: 20px;
    }

    #stock-block {
        padding-bottom: 30px;
    }
}