/* Start banner */
.banner_main {
    background-image: var(--bg_color);
    height: calc(100vh - 100px);
    width: 100%;
}

.banner_sub_sec {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: calc(100vh - 100px);
}

.banner_slider_sec {
    position: relative;
    /* background-color: lightpink; */
}

.banner_slider_sub_sec {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 100px);
    /* background-color: blueviolet; */
    
}

/* .banner_app_sec {
    background-color: antiquewhite;
} */

.banner_title h1 {
    font-size: 34px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.5;
}

.banner_title p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

.banner_title p span {
    color: #fff800;
}

.email_subc_form {
    display: grid;
    grid-template-columns: minmax(200px, 300px) 150px;
    column-gap: 15px;
}

.email_subc_form {
    margin-top: 15px;
}

.email_subc_form input[type="text"] {
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 4px;
    outline: none;
    color: white;
    font-size: 16px;
    background-color: transparent;
}

.email_subc_form input[type="submit"] {
    padding: 10px 20px;
    cursor: pointer;
    background-color: black;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: white;
}

.email_subc_form input[type="text"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: white;
}
.email_subc_form input[type="text"]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: white;
   opacity:  1;
}
.email_subc_form input[type="text"]::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: white;
   opacity:  1;
}
.email_subc_form input[type="text"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: white;
}
.email_subc_form input[type="text"]::-ms-input-placeholder { /* Microsoft Edge */
   color: white;
}

.email_subc_form input[type="text"]::placeholder { /* Most modern browsers support this now. */
   color: white;
}


.banner_app_sub_sec {
    display: grid;
    grid-template-columns: 1fr 250px;
    column-gap: 20px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.banner_app_link {
    display: grid;
    grid-template-columns: 1fr 100px;
    justify-items: end;
    column-gap: 20px;
}

.banner_app_icon {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.banner_app_img {
    position: relative;
    z-index: 9;
}

.banner_app_img img {
    line-height: 0;
    width: 200px;
    height: 400px;
    display: block;
}

.banner_app_img video {
    position: absolute;
    top: 50%;
    right: 50%;
    height: auto;
    width: 100%;
    transform: translate(40%, -50%);
    max-height: 340px;
    border-radius: 10px;
    line-height: 0;
}

.banner_app_icon a {
    display: block;
    line-height: 0;
}

.banner_app_icon img {
    height: 40px;
    width: auto;
}

.banner_app_qrcode img {
    line-height: 0;
    display: block;
    padding: 5px;
    background-color: white;
}

/* End banner */


/* Start currency exchange */
.section_topic_main  {
    padding: 100px 0px;
} 

/* #currencyExchangeMain {
    background-color: var(--light_gray);
} */

.section_topic_title {
    margin-bottom: 40px;
}

.section_topic_title h2 {
    font-size: 30px;
    text-align: center;
    color: var(--sub_color);
    line-height: 1.5;
    margin: 0px auto 15px;
}

.section_topic_title p {
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
    margin: 0px auto;
}

.currency_exchange_features img {
    max-width: 100%;
    width: 100%;
    height: 375px;
    object-fit: contain;
    display: block;
    /* background-color: #ffff; */
    border-radius: 4px;
}

.currency_exchange_info {
    padding: 20px;
    background-color: #ffff;
    border-radius: 4px;
    box-shadow: 0 0 15px var(--opacity_color);
}

.currency_exchange_list {
    display: flex;
    width: 100%;
    list-style: none;
}

.currency_exchange_list li {
    width: 100%;
}

.currency_exchange_list li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 4px;
}

.exchange_tab_active {
    color: #ffff !important;
    background-color: var(--sub_color);
}

.exchange_content {
    display: none;
}

.exchange_content_active {
    display: block;
}

.currency_exchange {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    /* background-color: #ffff; */
    border-radius: 4px;
}
.currency_exchange_content {
    background-color: white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.currency_exchange_content h2 {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0px;
    text-align: center;
}

.currency_input_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}

.currency_exchange_form {
    display: grid;
    row-gap: 20px;
}

.currency_input_info label span {
    display: block;
    margin-bottom: 10px;
}
.currency_input_info label input {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: #ffff;
}

.currency_set_value {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    place-items: center;
    column-gap: 5px;
    max-width: calc(100% - 60px);
    margin: 0px auto;
    
}

.currency_set_value i {
    margin-bottom: 8px;
    font-size: 22px;
}

.currency_set_value img {
    max-width: 100%;
    width: 30px;
    max-height: 100%;
    height: 30px;
    border-radius: 4px;
}

.currency_set_value span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.currency_search {
    position: absolute;
    top: 100%;
    width: calc(100% - 50px);
    left: 50%;
    transform: translate(-50%);
    padding: 15px 15px 5px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 10px 2px #d9d9d9;
    margin-top: 15px;
    z-index: 2;
    display: none;
}

.currency_input_content {
    margin-top: 33px;
    position: relative;
    cursor: pointer;
}

.currency_search input {
    width: 100%;
    padding: 8px 10px;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    outline: none;
}
.currency_search ul {
    max-height: 150px;
    overflow: scroll;
    display: grid;
    row-gap: 5px;
    padding: 10px 0px;
    list-style: none;
}
.currency_search li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    font-size: 16px;
    padding: 5px;
    border-radius: 4px;
    column-gap: 10px;
}
.currency_search li:hover {
    background-color: #483dce;
    color: #ffff;
    cursor: pointer;
}
.currency_search li img {
    max-width: 100%;
    width: 30px;
    height: 30px;
    max-height: 100%;
    border-radius: 4px;
}
.currency_search li span {
    font-size: 16px;
}

#currency_exchange_submit {
    padding: 10px;
    font-size: 18px;
    background-color: var(--sub_color);
    outline: none;
    border: none;
    color: var(--secondary_color);
    display: block;
    border-radius: 4px;
    cursor: pointer;
}

/* End currency exchange */

/* Start get started */
#getStarted {
    background-color: var(--light_gray);
}
.get_started_main {
    margin-top: 80px;
}
.get_started {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
}

/* .get_started_register {
    background-color: gray;
} */

.get_started_img_content {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #ffff;
    display: grid;
    place-items: center;
    margin: 0 auto;
    line-height: 0;
    box-shadow: 0 16px 24px rgba(74,144,226,.1);
}

.get_started_img_content img {
    width: 55px;
    height: 55px;
}

.get_start_text_content {
    margin-top: 20px;
    text-align: center;
}

.get_start_text_content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.get_start_text_content p {
    font-size: 16px;
    line-height: 1.5;
}
.get_started_btn_main {
    text-align: center;
    margin-top: 40px;
}
.get_started_btn_main a {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: var(--main_color);
    text-transform: capitalize;
}

/* End get started */


/* Start news mentions */
/* #newsMentions {
    background-color: var(--light_gray);
} */
.news_mentions_slider_info {
    margin: 0 10px;
}
.news_mentions_slider {
    overflow: hidden;
}

.news_mentions_slider_content {
    max-width: 100%;
    width: calc(100% - 10px);
    background-color: #ffff;
    margin: 0px auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--opacity_color);
}

.news_poster_item_provider {
    margin-bottom: 20px;
}

.news_poster_item_provider img {
    max-height: 30px;
    max-width: 100%;
    width: auto;
    height: 30px;
    object-fit: contain;
    display: block;
}

.news_poster_item_image img {
    max-width: 100%;
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}
.news_poster_item_text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.news_poster_item_text h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    margin-top: 30px;
    font-size: 22px;
    line-height: 1.5;
    color: var(--sub_color);
}

.news_poster_item_text a {
    display: inline-block;
    text-decoration: none;
    color: var(--main_color);
    padding: 10px 20px;
    background-color: var(--secondary_color);
    margin-top: 20px;
    border-radius: 25px;
    text-transform: capitalize;
    cursor: pointer;
    border: 1px solid var(--opacity_color);
}

/* Start news mentions carosel */

.news_mentions_main .slick-next, .news_mentions_main .slick-prev {
    width: 50px;
    height: 50px;
}

.news_mentions_main .slick-next:before, .news_mentions_main .slick-prev:before {
    font-size: 32px;
}

/* End news mentions */


/* Start app section */
#appSec {
    background-color: var(--light_gray);
}
.app_sec_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    column-gap: 20px;
}
.app_sec_phone_image img {
    height: 450px;
    width: 100%;
    object-fit: contain;
}

.app_link {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 20px;
}
.app_icon {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: self-end;
    gap: 20px;
}

.app_icon a {
    line-height: 0;
    text-decoration: none;
}

.app_icon img {
    height: 40px;
    width: auto;
}
.app_qrcode {
    line-height: 0;
}
.app_qrcode img {
    width: 100px;
    height: 100px;
}

/* End app section */

/* Start most trusted */
#mostTrusted {
    background-color: var(--secondary_color);
}

.most_trusted_topic_link {
    text-align: center;
}
.most_trusted_topic_link a {
    display: inline-block;
    text-decoration: none;
    color: var(--main_color);
    padding: 10px 20px;
    /* background-color: #483dce; */
    margin-top: 10px; 
    border-radius: 25px;
    text-transform: capitalize;
    cursor: pointer;
    
}
#mostTrusted .get_started_img_content {
    background-color: transparent;
    box-shadow: none;
}

/* End most trusted */



@media screen and (max-width: 1600px) {
    
}

@media screen and (max-width: 1450px) {
    
}

@media screen and (max-width: 1200px) {
    .banner_title h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .banner_title p {
        font-size: 16px;
    }
    .email_subc_form input[type="text"] {
        font-size: 14px;
    }
    .email_subc_form input[type="submit"] {
        font-size: 14px;
    }
    .banner_app_icon img {
        height: 35px;
    }
    .banner_app_qrcode img {
        height: 85px;
        width: 85px;
    }
    .banner_app_icon {
        row-gap: 15px;
    }
    .banner_app_link {
        column-gap: 15px;
    }
    .email_subc_form {
        grid-template-columns: minmax(150px, 200px) minmax(120px, 150px);
        margin-top: 10px;
    }
    .banner_app_link {
        grid-template-columns: 1fr 85px;
    }
    .banner_app_img img {
        width: 180px;
        height: 360px;
    }
    .banner_app_img video {
        max-height: 300px;
        transform: translate(36%, -50%);
    }
    .banner_main {
        height: calc(100vh - 90px);
    }
    .banner_slider_sub_sec {
        width: calc(100% - 50px);
    }
    .section_topic_main {
        padding: 60px 0px;
    }
    .section_topic_title h2 {
        font-size: 28px;
    }
    .currency_exchange_list li a {
        font-size: 16px;
    }
    #currency_exchange_submit {
        font-size: 16px;
    }
    .currency_exchange_content h2 {
        font-size: 16px;
    }
    .currency_input_info label span {
        font-size: 15px;
    }
    .currency_set_value span {
        font-size: 15px;
    }
    .currency_exchange {
        column-gap: 20px;
    }
    .currency_search li span {
        font-size: 15px;
    }
    .currency_search {
        width: 100%;
    }
    .currency_search input {
        font-size: 15px;
    }
    .currency_input_info label input {
        font-size: 15px;
    }
    .currency_input_info {
        column-gap: 10px;
    }
    .currency_exchange_features img {
        height: 355px;
    }
    .get_start_text_content h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .get_start_text_content p {
        font-size: 15px;
    }
    .get_started_img_content img {
        width: 45px;
        height: 45px;
    }
    .get_started_img_content {
        width: 115px;
        height: 115px;
    }
    .get_start_text_content {
        margin-top: 15px;
    }
    .get_started {
        grid-gap: 20px;
    }
    .get_started_btn_main {
        margin-top: 30px;
    }
    .get_started_btn_main a {
        font-size: 20px;
    }
    .news_poster_item_text h2 {
        font-size: 20px;
        margin-top: 20px;
    }
    .news_poster_item_text p {
        font-size: 15px;
    }
    .news_poster_item_text a {
        margin-top: 15px;
        font-size: 15px;
    }
    .news_mentions_slider_content {
        padding: 15px;
    }
    .news_poster_item_image img {
        height: 230px;
    }

}

@media screen and (max-width: 992px) {
    .banner_app_img {
        display: none;
    }
    .banner_app_sub_sec {
        grid-template-columns: 1fr;
    }
    .banner_sub_sec {
        grid-template-columns: 1.5fr 1fr;
    }
    .currency_exchange_features {
        display: none;
    }
    .currency_exchange {
        grid-template-columns: 500px;
        justify-content: center;
    }
    .section_topic_title h2 {
        font-size: 26px;
    }
    .section_topic_title p {
        font-size: 15px;
    }
    .currency_exchange_list li a, #currency_exchange_submit {
        font-size: 15px;
        padding: 12px;
    }
    .currency_exchange_content h2 {
        font-size: 15px;
    }
    .currency_exchange_form {
        row-gap: 15px;
    }
    .currency_exchange_info {
        padding: 15px;
    }
    .get_started {
        grid-template-columns: repeat(2, 1fr);
    }
    .get_started_buy_sell {
        grid-column-start: 1;
        grid-column-end: 3;
        max-width: calc(50% - 10px);
        margin: 0px auto;
    }
    .app_sec_main {
        grid-template-columns: 1.4fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    .banner_sec {
        position: relative;
        height: calc(100vh - 70px);
    }
    .banner_sub_sec {
        grid-template-columns: 100%;
        position: absolute;
        width: 100%;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        row-gap: 40px;
    }

    .banner_slider_sec {
        position: static;
    }
    .banner_slider_sub_sec {
        position: static;
        transform: none;
        margin: 0 auto;
        text-align: center;
    }
    .banner_app_sub_sec {
        height: auto;
        place-items: center;
    }
    .banner_main {
        height: calc(100vh - 70px);
    }
    .email_subc_form {
        justify-content: center;
    }

    .section_topic_title h2 {
        font-size: 24px;
        margin: 0px auto 10px;
    }
    .section_topic_title {
        margin-bottom: 30px;
    }
    .section_topic_main {
        padding: 50px 0px;
    }
    .currency_exchange {
        grid-template-columns: minmax(350px, 450px);
    }
    .get_started {
        grid-template-columns: 450px;
        justify-content: center;
        grid-gap: 30px;
    }
    .get_started_buy_sell {
        grid-column-end: unset;
        grid-column-end: unset;
        max-width: 100%;
        margin: 0px;
    }

    .news_mentions_slider_content {
        max-width: 55%;
    }
    .news_poster_item_provider {
        margin-bottom: 15px;
    }
    .news_poster_item_text h2 {
        margin-top: 15px;
        font-size: 18px;
    }
    .news_poster_item_text p {
        font-size: 14px;
    }
    .news_poster_item_text a {
        font-size: 14px;
    }
    .most_trusted_topic_link a {
        font-size: 15px;
    }
    .app_icon img {
        height: 35px;
    }
    .app_link {
        grid-template-columns: 1fr 90px;
    }
    .app_qrcode img {
        width: 90px;
        height: 90px;
    }
    .app_sec_phone_image img {
        height: 400px;
    }

    #mostTrusted .get_started_img_content {
        width: 60px;
        height: 60px;
    }

}

@media screen and (max-width: 650px) {
    .news_mentions_slider_content {
        max-width: calc(100% - 100px);
    }
    .app_sec_phone_image img {
        height: 300px;
    }
}

@media screen and (max-width: 550px) {
    .app_sec_phone_image {
        display: none;
    }
    .app_sec_main {
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 480px) {
    .email_subc_form {
        grid-template-columns: 200px;
        justify-content: center;
        row-gap: 10px;
    }
    .banner_title h1 {
        font-size: 24px;
    }
    .banner_title p {
        font-size: 14px;
    }
    .banner_sub_sec {
        row-gap: 30px;
    }
    .banner_slider_sub_sec {
        width: 100%;
    }
    .section_topic_title h2 {
        font-size: 22px;
    }
    .section_topic_title p {
        font-size: 14px;
    }
    .currency_exchange_list li a, #currency_exchange_submit {
        font-size: 14px;
    }
    .currency_exchange_content h2 {
        font-size: 14px;
        padding: 15px 0px;
    }
    .currency_set_value span {
        font-size: 14px;
    }
    .currency_set_value img {
        width: 25px;
        height: 25px;
    }
    .currency_input_info label span {
        font-size: 14px;
    }
    .currency_set_value i {
        font-size: 18px;
    }
    .currency_set_value {
        grid-template-columns: 25px 1fr 25px;
        width: 100%;
        max-width: 100%;
    }
    .currency_input_info label input {
        padding: 5px 10px;
    }
    .currency_input_content {
        margin-top: 27px;
    }
    .currency_search {
        padding: 10px 10px 0px;
    }
    .currency_search input {
        padding: 5px;
    }
    .currency_search li img {
        width: 25px;
        height: 25px;
    }
    .currency_search li {
        grid-template-columns: 25px 1fr;
    }
    .currency_search li span {
        font-size: 14px;
    }

    .currency_exchange {
        grid-template-columns: 1fr;
    }
    .get_started {
        grid-template-columns: 1fr;
    }
    .get_start_text_content p {
        font-size: 14px;
    }
    .get_started_btn_main a {
        font-size: 17px;
        padding: 10px 30px;
    }
    .news_mentions_slider_content {
        max-width: calc(100% - 0px);
        width: 100%;
    }
    .most_trusted_topic_link a {
        font-size: 14px;
    }
    .app_link, .app_icon {
        gap: 15px;
    }
    
}

@media  screen and (max-width: 320px) {
    .news_mentions_slider_info {
        margin: 0px;
    }
}