/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : CC-ICO Bitcoin and Cryptocurrency HTML Landing Page
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Banner area css
04. Crypto currency Price area css
05. About us area css
06. Why Choose us area css
07. How it work area css
08. Create Portfolio area css
09. Buy Crypto Currency area css
10. Stat Counter area css
11. Testimonial area css
12. FAQ area css
13. Contact us area css
14. Footer area css
15. Media Screens
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

body{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #6b6e73;
}

body.on-side{
    margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-top:0;
    font-weight: 700;
}

img{
    max-width: 100%;
}

a:hover{
    text-decoration: none;
    outline: 0;
}

a:focus{
    text-decoration: none;
    outline: 0;
}

::-moz-selection{
    background: #ffa00e;
    color: #fff;
}

::selection{
    background: #ffa00e;
    color: #fff;
}

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffa00e;
    z-index: 9999;
    text-align: center;
}

.loader{
    position:absolute;
    display: inline-block;
    top: 50%;
    transform: translate(0,-50%);

}

.loader:before{
    width:20px;
    height:20px;
    border-radius:20px;
    background:blue;
    content:'';
    position:absolute;
    background:#fff;
    animation: loader_before 1.5s infinite ease-in-out;
}

.loader:after{
    width:20px;
    height:20px;
    border-radius:20px;
    background:blue;
    content:'';
    position:absolute;
    background:#fff;
    left:22px;
    animation: loader_after 1.5s infinite ease-in-out;
}

@keyframes loader_before {
    0%{
        transform: translateX(0px) rotate(0deg);
    }

    50%{
        transform: translateX(50px) scale(1.2) rotate(260deg);
        border-radius:0px;
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes loader_after {
    0%{
        transform: translateX(0px);
    }

    50%{
        transform: translateX(-50px) scale(1.2) rotate(-260deg);
        border-radius:0px;
    }

    100%{
        transform: translateX(0px);
    }
}

.row.no-gutters{
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

.navbar{
    padding: 14px 0;
    background: #000000;
    transition: all 0.3s;
}

.navbar-brand img{
    height: 67px;
    transition: all 0.3s;
}

.navbar-light .navbar-nav .nav-link{
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 10px;
}

.navbar-light .navbar-nav .nav-link:hover{
    color: #ffa00e;
}

.navbar-light .navbar-nav .nav-link:focus{
    color: #fff;
}

.navbar-light .navbar-nav .nav-item .active.nav-link{
    color: #ffa00e;
}

.sticky-header{
    padding: 10px 0;
}

.sticky-header .navbar-brand img{
    height: 44px;
}

.navbar-toggle{
    display: none;
    position: absolute;
    right: 15px;
    top: 20px;
    transition: all 0.3s;
}

.sticky-header .navbar-toggle{
    top: 10px;
}

#responsive-menu{
    display: none;
}

.slicknav_menu{
    padding: 0;
    background: none;
}

.slicknav_btn{
    padding: 8px;
    border: 1px solid #fff;
    border-radius: 0;
    margin: 0;
    background: none;
}

.slicknav_icon-bar{
    box-shadow: none;
    height: 1px;
    margin-top: 1px;
    margin-bottom: 5px;
}

.slicknav_nav{
    padding: 10px 0;
}

.slicknav_nav a{
    margin: 0;
    padding: 6px 2px;
}

.slicknav_nav a.active{
    color: #ffa00e;
}

.slicknav_nav a:hover{
    background: none;
    color: inherit;
}

/************************************/
/*****   03. Banner area css    *****/
/************************************/

.banner{
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    background: #000000;
    background-size: cover;
    padding: 180px 0 100px;
}

.banner .row{
    position: relative;
    z-index: 1;
}

.header-content h2{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 40px;
}

.header-content h2 span{
    display: block;
    font-size: 35px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: initial;
    padding: 14px 0;
}

.header-content p{
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.6em;
}

.download-button{
    margin-top: 50px;
}

.btn-download{
    position: relative;
    display: inline-block;
    background: none;
    border: 2px solid #ffa00e;
    color: #fff;
    padding: 10px 20px 10px 54px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    text-align: left;
    border-radius: 6px;
    transition: all 0.1s linear;
}

.btn-download i{
    font-size: 32px;
    position: absolute;
    top: 14px;
    left: 16px;
}

.btn-download span{
    font-size: 10px;
    display: block;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.btn-download:focus{
    color: #fff;
}

.btn-download:hover{
    background: #ffa00e;
    color: #fff;
}

.registration h3{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.register-form{
    background: #e9edf3;
    padding: 26px 26px 16px 26px;
}

.register-form .form-control{
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    height: auto;
    padding: 0 10px;
    height: 40px;
}

.register-form .form-control::-webkit-input-placeholder{
    color: #a6a9b2;
}

.register-form .form-control::-moz-placeholder{
    color: #a6a9b2;
}

.register-form .form-control:-ms-input-placeholder{
    color: #a6a9b2;
}

.register-form .form-control:-moz-placeholder{
    color: #a6a9b2;
}

.btn-register{
    display: block;
    width: 100%;
    border: none;
    box-shadow: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 8px;
    height: 40px;
    background: #ffa00e;
    text-transform: uppercase;
    letter-spacing: 0.26em;
}

.registration-note{
    margin: 0;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #a6a9b2;
}

.registration-note a{
    color: #030c29;
    text-decoration: underline;
}

/*************************************************/
/*****  04. Crypto currency Price area css   *****/
/*************************************************/

.currency-price{
    padding: 40px 0;
}

.currency-price .col-md-2:last-child .currency-price-box:after{
    display: none;
}

.currency-price-box{
    text-align: center;
    position: relative;
}

.currency-price-box:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 60px;
    background: #e9edf3;
    transform: translate(0,-50%);
}

.currency-price-box h3{
    font-size: 18px;
    font-weight: 500;
    color: #030c29;
    margin-bottom: 0;
}

/************************************/
/*****  05. About us area css   *****/
/************************************/

.aboutus{
    padding: 50px 0;
}

.section-title{
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2{
    font-size: 30px;
    color: #030c29;
    background: url(../images/title-bg.png) no-repeat bottom center;
    padding-bottom: 14px;
    margin: 0;
}

.about-entry p{
    font-size: 14px;
    line-height: 1.8em;
}

.about-mission h3{
    font-size: 16px;
    color: #6b6e73;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-mission p{
    font-size: 25px;
    color: #030c29;
    font-weight: 600;
}

.buy-step{
    padding: 50px 0 100px;
}

.buy-step-single{
    position: relative;
}

.buy-step-single:after{
    content: '';
    display: block;
    clear: both;
}

.buy-step-single span{
    font-size: 50px;
    color: #030c29;
    font-weight: 700;
    width: 15%;
    float: left;
    text-align: center;
    line-height: 1.26em;
}

.buy-step-single p{
    width: 82%;
    float: right;
    font-size: 20px;
    color: #030c29;
    padding-right: 56px;
}

.buy-step-single p a{
    color: #ffa00e;
    font-weight: 600;
    text-decoration: underline;
}

.right-arrow:before{
    content: '\f100';
    font-family: Flaticon;
    text-align: center;
    position: absolute;
    right: 6px;
    top: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background: #030c29;
    color: #ffa00e;
    line-height: 44px; 
}

/*****************************************/
/*****  06. Why Choose us area css   *****/
/*****************************************/

.why-choose-us{
    padding: 100px 0 60px;
    background: #e9edf3;
}

.why-us-box{
    text-align: center;
    margin-bottom: 60px;
}

.why-us-box h3{
    font-size: 24px;
    color: #030c29;
    font-weight: 500;
}

.why-us-box .icon-box{
    font-size: 80px;
    line-height: 1em;
    margin: 30px 0 20px;
    color: #ffa00e;
}

.why-us-box p{
    font-size: 14px;
    color: #6b6e73;
    line-height: 1.6em;
    margin: 0;
}

/*****************************************/
/*****   07. How it work area css    *****/
/*****************************************/

.how-it-works{
    padding: 100px 0;
}

.video-box{
    position: relative;
}

.video-box figure{
    margin: 0;
}

.video-box figure img{
    border-radius: 8px;
}

.video-box .video-btn{
    display: inline-block;
    background: #030c29;
    color: #ffa00e;
    width: 120px;
    height: 120px;
    font-size: 70px;
    text-align: center;
    line-height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.3s;
}

.video-box .video-btn:hover{
    background: #ffa00e;
    color: #030c29;
}

.how-it-work-entry{
    padding-top: 10px;
}

.how-it-work-entry h2{
    color: #030c29;
    font-size: 30px;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.how-it-work-entry p{
    color: #88898c;
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 1.8em;
}

/**********************************************/
/*****   08. Create Portfolio area css    *****/
/**********************************************/

.portfolio{
    background: #e9edf3;
    padding: 100px 0;
}

.portfolio-img{
    text-align: center;
}

.portfolio-img figure{
    margin: 0;
}

.portfolio-img figure img{
    border-radius: 4px;
    box-shadow: -2px 5px 21.06px 5.94px rgba(11, 11, 11, 0.14);
}

.portfolio-step{
    margin-bottom: 20px;
}

.portfolio-step-header{
    position: relative;
    padding: 18px 0 18px 80px;
    margin-bottom: 6px;
}

.portfolio-step-header .icon-box{
    width: 60px;
    height: 60px;
    background: #ffa00e;
    color: #030c29;
    font-size: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    position: absolute;
    left: 0;
    top: 0;
}

.portfolio-step-header h3{
    color: #030c29;
    font-size: 18px;
    font-weight: 600;
}

.portfolio-step p{
    font-size: 14px;
    line-height: 1.6em;
}

/**********************************************/
/*****  09. Buy Crypto Currency area css  *****/
/**********************************************/

.buy-cryptocurrency{
    padding: 100px 0;
}

.buying-note{
    max-width: 688px;
    margin: 0 auto;
    text-align: center;
}

.buying-note h3{
    font-size: 20px;
    font-weight: 700;
    color: #030c29;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.buying-note p{
    font-size: 12px;
    color: #7f8184;
}

.buy-form{
    max-width: 620px;
    margin: 80px auto 0;
    text-align: center;
}

.price-meter{
    background: #9da1ac;
    padding: 14px;
    border-radius: 6px;
}

.price-meter:after{
    content: '';
    display: block;
    clear: both;
}

.price-meter label{
    margin-bottom: 0;
    color: #030c29;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
    line-height: 60px;
}

.txt-price,
.currency-name,
.txt-converted-price,
.currency-label{
    height: 60px;
    display: block;
    float: left;
}

.txt-price,
.txt-converted-price{
    box-shadow: none;
    outline: 0;
    border-radius: 6px;
    border: none;
    text-align: center;
    padding: 0 18px;
    color: #030c29;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.txt-price{
    width: 23%;
}

.txt-converted-price{
    width: 36%;
}

.currency-name{
    width: 20%;
}

.currency-label{
    width: 19%;
    background: #fff;
    margin-left: 2%;
    border-radius: 6px;
}

.btn-buy{
    color: #fff;
    background: #030c29;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    padding: 10px 40px;
    cursor: pointer;
    margin-top: 40px;
    outline: 0;
    transition: all 0.3s;
}

.btn-buy:hover{
    background: #ffa00e;
}

.download-app-form{
    max-width: 640px;
    margin: 70px auto 0;
    text-align: center;
}

.download-app-form h3{
    font-size: 24px;
    color: #030c29;
    font-weight: 500;
    margin-bottom: 30px;
}

.download-app-form form{
    display: inline-block;
    border: 1px solid #ffa00e;
    margin: 0 auto;
    padding: 4px;
    border-radius: 6px;
}

.txt-app{
    min-width: 220px;
    border: none;
    outline: 0;
    box-shadow: none;
    padding: 0 14px;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.btn-app{
    color: #fff;
    background: #030c29;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    padding: 4px 16px;
    height: 40px;
    cursor: pointer;
    outline: 0;
    transition: all 0.3s;
}

.btn-app:hover{
    background: #ffa00e;
}

/***************************************/
/*****  10. Stat Counter area css  *****/
/***************************************/

.stat-counter{
    padding: 80px 0;
    background: url(../images/counter-bg.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.stat-counter:before{
    content: '';
    display: block;
    background: rgba(255,160,14,0.88);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.counter-box{
    text-align: center;
}

.counter-box h3{
    color: #fff;
    font-size: 40px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.counter-box h3:after{
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 3px;
    background: #030c29;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}

.counter-box p{
    color: #fff;
    margin: 0;
    font-size: 20px;
}

/***************************************/
/*****  11. Testimonial area css   *****/
/***************************************/

.testimonial{
    padding: 100px 0;
}

.testimonial-slide{

}

.testimonial-slide:after{
    content: '';
    display: block;
    clear: both;
}

.testimonial-quote{
    width: 60%;
    float: left;
}

.testimonial-quote p{
    font-size: 24px;
    color: #030c29;
    font-weight: 600;
    font-style: italic;
}

.testimonial-author{
    width: 36%;
    float: right;
    text-align: center;
}

.testimonial-author i{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffa00e;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 20px;
}

.testimonial-author h3{
    font-size: 20px;
    font-weight: 500;
    color: #030c29;
}

.testimonial-author p{
    color: #7f8184;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-pagination{
    margin-top: 20px;
}

.testimonial-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: none;
    opacity: 1;
    border: 2px solid #ffa00e;
    transition: all 0.3s;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    border-color: #030c29;
    transform: scale(1.3);
}

/***************************************/
/*****      12. FAQ area css       *****/
/***************************************/

.faq{
    padding: 100px 0;
    background: #e9edf3;
}

.faq-accordion{
    max-width: 768px;
    margin: 0 auto;
}

.faq-accordion .card{
    border: none;
    border-radius: 0;
    background: none;
    margin-bottom: 16px;
}

.faq-accordion .card-header{
    padding: 0;
    border-radius: 0;
    background: #ffa00e;
    border: 8px solid #ffa00e;
    border-bottom: none;
}

.faq-accordion .card-header a{
    text-align: left;
    display: block;
    width: 100%;
    border: none;
    font-size: 18px;
    color: #030c29;
    font-weight: 600;
    padding: 20px 40px 28px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.faq-accordion .card-header a:hover{
    color: #030c29;
}

.faq-accordion .card.active .card-header{
    background: none;
}

.faq-accordion .card.active .card-header a{
    padding-top: 40px;
    padding-bottom: 0;
    color: #030c29;
}

.faq-accordion .card-body{
    background: none;
    padding: 40px 40px 30px;
    border: none;
    border-left: 8px solid #ffa00e;
    border-right: 8px solid #ffa00e;
    border-bottom: 8px solid #ffa00e;
    transition: all 0.3s;
}

.faq-accordion .card-body p{
    font-size: 14px;
    line-height: 1.8em;
}

.faq-accordion .card-header:after{
    content: '\f101';
    display: block;
    font-family: "Flaticon";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    background: #030c29;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;
    z-index: 0;
    transition: all 0.3s;
}

.faq-accordion .card.active .card-header:after{
    top: 30px;
    transform: rotate(180deg);
}

/***************************************/
/*****   13. Contact us area css   *****/
/***************************************/

.contactus{
    padding: 100px 0 50px;
}

.contact-form{
    max-width: 480px;
    margin: 0 auto;
}

.contact-form .form-control{
    border: none;
    border-radius: 0;
    padding: 14px 0;
    font-family: 'Poppins', sans-serif;
    height: auto;
    border-bottom: 1px solid #ffa00e;
    resize: none;
    margin-bottom: 4px;
}

.btn-contact{
    display: block;
    margin: 40px auto 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #030c29;
    border: none;
    padding: 12px 40px;
    border-radius: 2px;
    box-shadow: none;
    outline: 0;
    transition: all 0.3s;
}

.btn-contact:hover{
    cursor: pointer;
    background: #ffa00e;
}

.with-errors{
    color: #c84444;
}

#msgSubmit{
    margin-top: 30px;
}

/***************************************/
/*****     14. Footer area css     *****/
/***************************************/

footer.footer{
    padding: 50px 0 80px;
}

.footer-social-link{

}

.footer-social-link a{
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
    color: inherit;
    transition: all 0.3s;
}

.footer-social-link a:hover{
    color: #ffa00e;
}

.footer-menu{
    margin-top: 20px;
}

.footer-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu ul li{
    display: inline-block;
}

.footer-menu ul li a{
    font-size: 14px;
    text-transform: uppercase;
    color: inherit;
    margin-right: 14px;
}

.footer-menu ul li a:hover{
    color: #ffa00e;
}

.footer-contact-info{
    margin-top: 20px;
    line-height: 1.8em;
}

.footer-contact-info a{
    display: inline-block;
    color: inherit;
    margin-right: 20px;
}

.footer-contact-info a i{
    display: inline-block;
    font-size: 14px;
    text-align: center;
    margin-right: 4px;
}

.footer-contact-info a:hover{
    color: #ffa00e;
}

.copyright{
    margin-top: 20px;
}

.copyright p{
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 0;
}

.copyright a{
    color: inherit;
}

.copyright a:hover{
    color: #ffa00e;
}

/************************************/
/*****    15. Media Screens     *****/
/************************************/

@media only screen and (max-width: 991px){
    .navbar-nav{
        display: none;
    }

    .navbar-toggle,
    #responsive-menu{
        display: block;
    }

    .header-content{
        margin-bottom: 50px;
    }

    .buy-step-single{
        max-width: 310px;
        margin: 0 auto;
    }

    .right-arrow{
        padding-bottom: 46px;
        margin-bottom: 30px;
    }

    .buy-step-single p{
        font-size: 16px;
        padding-right: 0;
    }

    .buy-step-single span{
        font-size: 38px;
    }

    .right-arrow:before{
        right: auto;
        top: auto;
        bottom: 0;
        left: 0;
        transform: rotate(90deg);
    }

    .how-it-work-entry{
        padding-top: 40px;
    }

    .testimonial-quote p{
        font-size: 20px;
    }
}

/* Mobile Layout */
@media only screen and (max-width: 767px){

    .section-title{
        margin-bottom: 50px;
    }

    .section-title h2{
        font-size: 22px;
    }

    .banner{
        padding: 140px 0 60px;
    }

    .currency-price{
        padding-bottom: 0;
    }

    .aboutus{
        padding: 30px 0;
    }

    .buy-step,
    footer.footer{
        padding: 30px 0 60px;
    }

    .why-choose-us{
        padding: 60px 0 0;
    }

    .how-it-works,
    .portfolio,
    .buy-cryptocurrency,
    .testimonial,
    .faq{
        padding: 60px 0;
    }

    .contactus{
        padding: 60px 0 30px;
    }

    .stat-counter{
        padding: 60px 0 30px;
    }

    .header-content h2{
        font-size: 16px;
    }

    .header-content h2 span{
        font-size: 32px;
    }

    .currency-price-box:after{
        display: none;
    }

    .currency-price-box{
        margin-bottom: 30px;
    }

    .about-mission{
        margin-top: 30px;
    }

    .why-us-box .icon-box{
        font-size: 60px;
    }

    .why-us-box h3{
        font-size: 22px;
    }

    .how-it-work-entry h2{
        font-size: 22px;
    }

    .portfolio-img{
        margin-top: 30px;
    }

    .counter-box{
        margin-bottom: 30px;
    }

    .testimonial-quote{
        width: 100%;
        float: none;
        text-align: center;
    }

    .testimonial-author{
        width: 100%;
        margin-top: 20px;
    }

    .testimonial-pagination{
        text-align: center;
    }

    .footer-social-link,
    .footer-menu,
    .footer-contact-info,
    .copyright{
        text-align: center;
    }

    .footer-menu ul li a{
        margin: 2px 5px;
    }

    .footer-contact-info a{
        margin: 0 6px;
    }

    .footer-logo{
        margin-top: 30px;
        text-align: center;
    }


}


@media only screen and (max-width: 575px){
    header .container{
        width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .btn-download{
        margin-bottom: 10px;
    }

    .about-mission p{
        font-size: 18px;
    }

    .testimonial-quote p,
    .testimonial-author h3{
        font-size: 16px;
    }

    .faq-accordion .card-body{
        padding: 0 20px 20px;
    }

    .faq-accordion .card.active .card-header a{
        padding: 20px 50px 20px 20px !important;
    }

    .faq-accordion .card-header a{
        padding: 20px 50px 28px 20px;
    }

    .faq-accordion .card-header:after{
        width: 30px;
        height: 30px;
        line-height: 30px;
        top: 23px;
        right: 20px;
    }

    .faq-accordion .card.active .card-header:after{
        top: 23px;
    }
}

/* Small Mobile Layout */
@media only screen and (max-width: 480px) {
    .txt-price, .currency-name, .txt-converted-price, .currency-label{
        width: 100%;
        margin: 0 0 10px;
    }

    .btn-app{
        width: 100%;
    }
}

.country {
    padding: 25px 50px 75px 100px;
}
.fixed-top{
    position: relative;
}
.message{
    margin: 60px 120px;
}