.markets-section {
    padding: 90px 0 100px;
}

.markets-section .market-row {
    display: flex;
    justify-content: space-between;
    background: #F0F0F0;
    transition: all 0.3s ease-in-out;
}

.markets-section .market-row:not(:last-child) {
    margin-bottom: 40px;
}

.markets-section .market-row:nth-child(2n) {
    flex-direction: row-reverse;
}

.markets-section .market-row:hover {
    background-color: rgba(223, 5, 21, 1);
}

.markets-section .market-row .market-img {
    width: 48.75%;
}

.markets-section .market-row .market-img img {
    height: 100%;
    object-fit: cover;
}

.markets-section .market-row .market-content {
    flex: 1;
    padding: 45px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.markets-section .market-row .market-content-title {
    font-weight: 400;
    color: #141414;
    line-height: 1.33;
    transition: all 0.3s ease-in-out;
}

.markets-section .market-row .market-content-desc {
    font-family: 'MontserratLight';
    font-size: 16px;
    color: #666666;
    line-height: 23px;
    margin-top: 1.25em;
    transition: all 0.3s ease-in-out;
}

.markets-section .market-row .btn-market {
    display: inline-block;
    padding: 0 43px;
    line-height: 38px;
    border: 1px solid #DF0515;
    text-align: center;
    font-family: MontserratLight;
    font-size: 16px;
    color: #DF0515;
    transition: all 0.3s ease-in-out;
}

.markets-section .market-row:hover .market-content-desc,
.markets-section .market-row:hover .market-content-title {
    color: #fff;
}

.markets-section .market-row:hover .btn-market {
    background-color: #fff;
    border-color: #fff;
}

.market-intro {
    padding: 90px 0;
}

.market-intro .market-intro-desc {
    font-family: MontserratLight;
    font-size: 16px;
    color: #3A444A;
    line-height: 26px;
    margin-top: 29px;
}
.market-intro .market-intro-desc *{
    all: revert;
}

.reason-section {
    padding: 90px 0;
}

.reason-section .reason-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.reason-section .reason-card {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px 0px rgba(29, 29, 29, 0.15);
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.reason-section .reason-card:hover {
    background-color: #DF0515;
}

.reason-section .reason-card .pic {
    width: 200px;
    height: 200px;
}

.reason-section .reason-card .pic img {
    height: 100%;
    object-fit: cover;
}

.reason-section .reason-card .reason-content {
    flex: 1;
    padding-left: 20px;
    padding-top: 18px;
}

.reason-section .reason-card .reason-content-title {
    font-weight: 400;
    font-size: 22px;
    color: #1D1D1D;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
}

.reason-section .reason-card .reason-content-desc {
    font-family: MontserratLight;
    font-size: 16px;
    color: #808080;
    line-height: 20px;
    margin-top: 1em;
    transition: all 0.3s ease-in-out;
}

.reason-section .reason-card:hover .reason-content-desc,
.reason-section .reason-card:hover .reason-content-title {
    color: #fff;
}
@media (max-width:1199px) {
    .markets-section,.reason-section,
    .market-intro{
        padding: 75px 0;
    }
    .reason-section .reason-grid{
        grid-template-columns: repeat(1,1fr);
    }
    .markets-section .market-row .market-content{
        padding: 40px;
    }
    .markets-section .market-row .market-content-desc{
        margin-top: .5em;
    }
}
@media (max-width:1024px) {
    .markets-section .market-row .market-img{
        width: 100%;
    }
    .markets-section .market-row:nth-child(2n),
    .markets-section .market-row{
        flex-direction: column;
    }
    .markets-section .market-row .market-content{
        padding: 30px;
    }
    .market-intro .market-intro-desc{
        margin-top: 20px;
    }
    .markets-section,.reason-section,
    .market-intro{
        padding: 65px 0;
    }
    .reason-section .reason-grid{
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .reason-section .reason-grid{
        gap: 30px;
    }
    .market-intro .market-intro-desc{
        margin-top: 15px;
    }
    .markets-section,.reason-section,
    .market-intro{
        padding: 55px 0;
    }
    .reason-section .reason-grid{
        margin-top: 30px;
    }
    .reason-section .reason-card .reason-content{
        padding-top: 0;
    }
    .reason-section .reason-card .reason-content-title{
        font-size: 20px;
    }
    .reason-section .reason-card .reason-content-desc{
        margin-top: .7em;
        font-size: 14px;
        line-height: 18px;
    }
    .markets-section .market-row .market-content{
        padding: 25px;
    }
}
@media (max-width: 500px) {
    .markets-section .market-row .btn-market{
        font-size: 14px;
        padding: 0 34px;
    }
    .markets-section .market-row .market-content-desc{
        font-size: 14px;
        line-height: 20px
    }
    .markets-section .market-row .market-content{
        padding: 20px;
    }
    .reason-section .reason-card .reason-content-desc{
        margin-top: .2em;
    }
    .reason-section .reason-card .reason-content{
        padding-top: 15px;
        padding-left: 0;
    }
    .reason-section .reason-card .pic{
        width: 100%;
        height: auto;
    }
    .reason-section .reason-card{
        flex-direction: column;
    }
    .reason-section .reason-grid{
        gap: 25px;
    }
    .markets-section,.reason-section,
    .market-intro{
        padding: 45px 0;
    }
    .reason-section .reason-grid{
        margin-top: 25px;
    }
}