@font-face {
    font-family: "Helvetica";
    src: url(./trade-now-fonts/Helvetica.ttf);
}

@font-face {
    font-family: "HelveticaBold";
    src: url(./trade-now-fonts/HelveticaBold.ttf);
}

body {
    font-family: "Helvetica", "Helvetica Neue", sans-serif;
}

.container {
    padding: 10px 30px;
}
.trade_link {
    color: #333;
    text-transform: uppercase;
    padding: 12px 35px;
    background-color: #f7ca18;
    transition:all 0.3s ease;
}
.trade_link:hover {
    text-decoration: none;
    color: #333333;
}
/* Header Styles */
.header {
    background-image: url(trade-now-images/header_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    text-align: center;
    position: relative;
}

.shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    z-index: 0;
    background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,250,251,0) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,250,251,0)), color-stop(100%, rgba(0,0,0,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,250,251,0) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,250,251,0) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,250,251,0) 100%); /* ie10+ */
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,250,251,0) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFAFB', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
}

.sponsored {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    text-align: left;
}

.title {
    position: relative;
    z-index: 1;
    font-family: "HelveticaBold", sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.7rem;
}

.header_logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 3rem;
}

.header_text {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 650px;
    margin: 0 auto;
}

.header_link {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem auto 5rem auto;
}

/* About Styles */
.about_section {
    margin: 0 0 2rem 0;
}
.about_text {
    color: #333;
    font-size: 0.9rem;
    margin: 3.5rem 0 2.5rem 0;
    padding: 0 20px 0 0;
}

.about_img {
    width: 100%;
    height: 100%;
    padding: 1.8rem 0 0 20px;
}

/* Features Section */
.features_container {
    background-color: #e5e8ee;
}

.features_row {
    margin: 0;
}

.features_text {
    color: #333333;
    font-family: "HelveticaBold", sans-serif;
    font-size: 0.9rem;
    max-width: 70%;
    margin: 1rem 0 2rem 0;
}

.item_inner {
    text-align: center;
}

.features_item-image {
    height: 50px;
    width: auto;
    margin: 0 0 1rem 0;
}

.item_title {
    color: #333333;
    font-family: "HelveticaBold", sans-serif;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.item_text {
    color: #333;
    font-size: 0.9rem;
    margin: 0 0 3rem 0;
}

/* Footer Styles */
.footer {
    padding: 1rem;
}
.footer_logo {
    width: auto;
    height: auto;
    max-width: 25%;
    margin: 0 1rem 0 0;
}

/* Mobile styles */
@media all and (max-width: 992px) {
    .features_text {
        max-width: 100%;
    }
}

@media all and (max-width: 768px) {
    .container {
        padding: 10px 15px;
    }
    .trade_link {
        display: block;
        width: 100%;
        text-align: center;
    }
    .header_link {
        display: none;
    }
    .sponsored {
        font-size: 1rem;
        margin: 1rem 0 1.5rem 0;
    }
    .header_logo {
        max-width: 70%;
    }
    .title {
        font-size: 22px;
    }
    .about_text {
        padding: 0;
        margin: 1.5rem 0;
    }
    .about_section {
        margin: 0 -15px 20px -15px;
    }
    .footer_logo {
        max-width: 75%;
        margin: 0 0 1rem 0;
    }
    .footer>.container {
        padding: 5px 0;
    }
}

