.trade-section {
    width: 100%;
    background-color: #1b1f25;
    color: #fff;
    font-style: oblique;
    padding-bottom: 60px;
}

.trade-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
}

.trade-menu {
    margin-top: 32px;
    position: sticky;
    top: 100px;
    left: 0;
    width: 240px;
    height: 640px;
    display: flex;
    flex-direction: column;
}

.trade-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    padding-left: 0;
}

.trade-menu-item>h2 {
    position: relative;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 24px;
    transition: 300ms;
}

.trade-menu-item>h2::after {
    display: block;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #1e52d8;
    position: absolute;
    left: 50%;
    margin-left: -62%;
    top: 18%;
    opacity: 0;
    transform: translate(-10px, 0px);
    transition: opacity 0.3s;
}

.trade-menu-item>h2.actived {
    margin-left: 10px;
}

.trade-menu-item>h2.actived::after {
    opacity: 1;
    transform: translate(0px, 0px);
}

.trade-menu-item a {
    display: block;
    padding: 5px 0;
}

.trade-menu-item a:hover {
    color: #1e52d8
}

.trade-right-content {
    flex: 2;
}

.trade-boxes {
    padding-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.trade-boxes>.row {
    display: flex;
}

.trade-item {
    background-position: center;
    background-size: cover;
    position: relative;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    height: 340px;
}

.trade-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.trade-text {
    position: absolute;
    bottom: -20px;
    left: 10px;
    z-index: 1;
    transition: 300ms;
}

.trade-text>h3 {
    margin-bottom: 10px;
    letter-spacing: 2px;
    z-index: 1;
    font-size: 24px;
}

.trade-text>p {
    width: 100%;
    max-width: 600px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    opacity: 0;
    height: 20px;
    transition: 300ms;
    z-index: 1;
}

.trade-item:hover>.trade-text {
    bottom: 0;
}

.trade-item:hover>.trade-text>p {
    opacity: 1;
}