/* --------------
Font
------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* --------------
Global CSS
------------------- */
:root{
    --esm-main-color:#017AFF;
    --main-color: #017AFF; 
    --main-color-opacity: #017aff82; 
    --color-1: #e91e63; 
    --color-2: #f5ae10;
    --color-3: #09d69d; 
    --bg-dark: #2c2b2f;
    --main-to-dark-color: var(--main-color); 
    --dark-to-main-color: var(--bg-dark) ; 
    --shadow-black-100: 0 5px 15px rgba(0,0,0,0.1); 
    --shadow-black-300: 0 5px 15px rgba(0,0,0,0.3); 
    --black-900:#000000; 
    --black-400:#555555; 
    --black-100:#f7f7f7; 
    --black-000: #ffffff; 
    --black-alpha-100: rgba(0,0,0,0.05); 

    /* navbar theme  */
    --navbar-background : #ffffff; 
    --navbar-text : #017AFF;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px; 
    font-weight: 400;
    overflow-x: hidden;
    /* background-color: #ffffff; */
    line-height: 1.5;

    background-color: var(--bg-dark);
    --black-100:var(--bg-dark); 
    --black-000:var(--bg-dark); 
    --main-to-dark-color: var(--bg-dark);
    --dark-to-main-color: var(--main-color-opacity) ; 
    --shadow-black-100: var(--shadow-black-300); 
    --black-alpha-100: rgba(255,255,255,0.05); 
    --black-900:#ffffff; 
    --black-400:#bbbbbb; 
    --black-500:#555555; 
    --navbar-background : transparent; 
    --navbar-text : #ffffff; 
}
body.dark{
    background-color: var(--bg-dark);
    --black-100:var(--bg-dark); 
    --black-000:var(--bg-dark); 
    --main-to-dark-color: var(--bg-dark);
    --dark-to-main-color: var(--main-color) ; 
    --shadow-black-100: var(--shadow-black-300); 
    --black-alpha-100: rgba(255,255,255,0.05); 
    --black-900:#ffffff; 
    --black-400:#bbbbbb; 
    --navbar-background : transparent; 
    --navbar-text : #ffffff; 
}
*{
    margin: 0;
    padding: 0;
    outline: none !important;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
ul{
    list-style: none;
}
.btn-1{
    color: #ffffff;
    background-color: var(--main-color);
    
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
   /* margin-left: 230px; */
    margin-left: auto;
    margin-right: auto;
    display: block;
    animation: pulse_01 2s ease infinite;
}
.btn-1:focus{
    box-shadow: var(--shadow-black-300);
}
.btn-1:hover{ 
    background-color: #ffffff; 
    color: var(--main-color);
}

.btn-2{
    background-color: var(--main-color); 
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}
.btn-android{
    margin-top: 26px;
}
.btn-2:focus{
    box-shadow: var(--shadow-black-100);
}
.btn-2:hover{ 
    color: var(--main-color);
    background-color: #ffffff; 
    box-shadow: var(--shadow-black-300);
}
@keyframes spin_01{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes bounceTop_01{
    0%,100%{
        transform: translateY(-30px);
    }
    50%{
        transform: translateY(0px);
    }
}
@keyframes pulse_01{
    0%{
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);

    }
    70%{
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100%{
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

}
@keyframes zoomInOut_01{
    /* 0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
        opacity: 0;
    } */
    25%{
        color: #09d69d;
    }
    50%{
        color: #f5ae10;
    }
    75%{
        color: #e91e63;
    }
    to{
        transform: rotate(360deg);
    }
}
.effect-wrap .effect{
    position: absolute;
    z-index:-1; 
}
.effect-wrap .effect-1{
    left: 20%;
    top:20%; 
    font-size: 20px;
    color: var(--color-2); 
    animation: spin_01 5s linear infinite;
}
.effect-wrap .effect-2{
    right: 5%;
    top:20%; 
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5); 
    animation: spin_01 7s linear infinite;
}
.effect-wrap .effect-3{
    left:5%;
    bottom:30%; 
    font-size: 20px;
    color: var(--color-3); 
    animation: bounceTop_01 3s infinite;
}

.section-padding{
    padding: 80px 0;
}
.section-title{
    margin-bottom: 60px;
}
.section-title h2{
    font-size: 40px;
    color: var(--black-900);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}
.section-title h2 span{
    color: var(--esm-main-color);
}
.owl-carousel .owl-dots{
    padding: 0 15px;
    text-align: center;
    margin-top: 20px;
}
.owl-carousel button.owl-dot{
    height: 6px;
    width: 24px;
    background-color: #dddddd;
    display: inline-block;
    margin: 0 4px;
    border-radius: 5px;
}
.owl-carousel button.owl-dot.active{
    background-color: var(--main-color);
}
/*------------------------
Preloader
------------------------*/
.preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2100;
    background-color: var(--dark-to-main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
   
.preloader span{
    /* display: block;
    height: 60px;
    width: 60px;
    background-color: var(--dark-to-main-color);
    border-radius: 50%;
    animation: zoomInOut_01 1s ease infinite; */
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation:zoomInOut_01 0.2s ease infinite;
}



/* --------------
Nav-Bar
------------------- */
.logo-mobile{
    display: none;
    visibility: hidden;
    width: 10%;
}
.navbar-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 0px;
}
.navbar-logo img{
    width: 100px;
    margin: 0px;
}
.navbar{
    /* background-color:var(--navbar-background);  */
    background-color: var(--bg-dark);
    padding: 20px 0;
    transition: all 0.5s ease;
}
.navbar.navbar-shrink{
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--main-color); 
    padding: 10px 0;
}

.navbar .navbar-brand{
    font-size: 30px;
    color: var(--black-900);
    font-weight: 500;
    text-transform: capitalize;
}
.navbar .navbar-brand img {
    max-width: 100%;
}
.navbar .nav-item{
    margin-left: 40px;
}
.navbar .nav-item .dropdown{
    visibility: hidden;  
    display :none;
    width: 100%;
    background: #017AFF;
    position: absolute;
    
}
.navbar .nav-item .dropdown .nav-item-drop{
    margin-left: 25px;
    margin-right: 25px;
}
.navbar .nav-item:hover ul.dropdown{
    z-index: 9999;
    background-color: var(--main-color);
    padding:2px;
    width:auto;
    visibility: visible;
    display: block;
    position:absolute;
    border-radius: 15px;
}
.navbar .nav-item .nav-link{
    color: var(--navbar-text);
    text-transform: capitalize;
    font-size: 16px;   
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}
.navbar .nav-item .nav-link::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    transform: scale(0);
}
.navbar .nav-item .nav-link.active__home::before,
.navbar .nav-item .nav-link:hover:before{
    transform: scale(1);
}

/* -------------------- 
Home Section 
-----------------------*/
.home{
    min-height: 100vh;
    padding: 150px 0;
    background-color: var(--main-to-dark-color);
    border-radius: 0 0 200px 0;
    position: relative;
    z-index: 1;

}
.home-text h1{
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    text-align: center;
}
.home-text h3 { 
    color: #ffffff; 
    font-weight: 500;
    text-align: center;
}
.home-text p { 
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    font-weight: 300;
}
.home .home-btn{
    margin-top: 40px;
}
.home .home-btn-2{
    margin-top: 40px;
}
.btn-3{
    color: #ffffff;
    background-color: var(--main-color); 
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
    animation: pulse_01 2s ease infinite;
}
.btn-3:focus{
    box-shadow: var(--shadow-black-300);
}
.btn-3:hover{ 
    background-color: #ffffff; 
    color: var(--main-color);
}
.btn-create{
    float: right;
    background-color: #ffffff;
    color: var(--main-color);
}
.btn-create:hover{
    color: #ffffff; 
    background-color: var(--main-color);
}
.home .home-btn .video-play-btn{
    margin-left: 30px;
    height: 50px;
    width: 50px;
    padding: 0; 
    font-size: 16px;
    animation: pulse_01 2s ease infinite;
}

.home .home-btn .video-play-btn:hover{
    animation: none;
    box-shadow: var(--shadow-black-300);
}
.home .home-btn .video-play-btn i{
    line-height: 50px;
    
}
.home img{
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}
.home-img{
    position: relative;
    margin-left: 55px;
}
.home-img .circle{
    background-color: red;
    margin-left: 45px;
    position: absolute;
    z-index: -90;
    height: 400px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.home-img .circle::before{ 
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 30px;
    top: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
}

video{
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}
/* ----------------
Video Popup 
----------------------*/
.video-popup{ 
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: all 0.5s ease;
}
.video-popup.open{
    opacity: 1;
    visibility: visible;
}

.video-popup-inner{
    width: 100%;
    max-width: 900px;
    position: relative;
}
.video-popup .video-popup-close{
    position: absolute;
    right: 0;
    top: -30px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #ffffff;

}
.video-popup .iframe-box{
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.video-popup #player-1{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* -----------FEATURE SECTION -----------*/
.features{
    
    
    /* background-color: yellow; */
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    
}
.features::before{
    content:''; 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--main-to-dark-color);
    opacity: 0.8;
}
.features .feature-item{
    box-shadow: var(--shadow-black-100);
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 350px;
}
.features .reson{
    background-color: #2C2B2F;
    margin: 15px;
    width: 60%;
    border: 0px solid green;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
    text-align: left;
}
.features .reson ul li{
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 18px;
}
.features .feature-item::before,
.features .feature-item::after{
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
}
.features .feature-item::before{
    height: 20px;
    width: 20px;
    background-color: var(--color-1);
    left: -20px;
    top: 40%;
}
.features .feature-item:hover::before{
    left: 10px;
    opacity: 1;
}
.features .feature-item::after{
    height: 30px;
    width: 30px;
    background-color: var(--color-2);
    right: -30px;
    top: 80%;
}
.features .feature-item:hover::after{
    opacity: 1;
    right: -15px;
}
.features .feature-item .icon{
    height: 60px;
    width: 60px;
    margin: 0 auto 30px;
    text-align: center;
    /* background-color: red; */
    font-size: 30px;
    color: var(--esm-main-color);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease ;
}
.features .feature-item .icon::before{
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: all 0.5s ease ;
    z-index: -1;
    opacity: 0;
}
.features .feature-item:hover .icon{
    color: #ffffff;
    font-size: 20px;
}
.features .feature-item:hover .icon::before{
    left: 0;
    border-radius: 50%;
    opacity: 1;
}
.features .feature-item .icon i{
    line-height: 60px;
}
.features .feature-item h3{
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--black-900);
    font-weight: 500;
    text-transform: capitalize;
}
.features .feature-item p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black-400);
    margin: 0 0 15px;

}

/* features-2 */
.features-2 p{
    margin-top: 5px; 
    text-align: center;
    color: #ffffff;
    text-align: left;
}
.features-2 .feature-item{
    box-shadow: var(--shadow-black-100);
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 350px;
}
.features-2 .reson{
    background-color: #2C2B2F;
    margin: 15px;
    width: 60%;
    border: 0px solid green;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
    text-align: left;
}
.features-2 .reson ul li{
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 18px;
}



/*------------------
Fun fact section
------------------*/
.fun-facts{
    background-color: var(--black-100);
}
.fun-facts .section-title{
    margin-bottom: 20px;
}
.fun-facts .section-title h2{
    text-align: left;
}
.fun-fact-img img{
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}
.fun-facts-text{
    font-size: 16px;
    line-height: 26px;
    color: var(--black-400);
    margin: 0 0 15px;
    font-weight: 500;
}
.fun-fact-item{
    padding: 40px 30px;
    margin-top: 30px;
    text-align: center;
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
}
.fun-fact-item h3{
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px;
}
.fun-fact-item span{
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    line-height: 26px;
    color: #ffffff;
}
.fun-fact-item.style-1{
    background-color: var(--color-1);
}
.fun-fact-item.style-2{
    background-color: var(--color-2);
}
.fun-fact-item.style-3{
    background-color: var(--color-3);
}
.fun-fact-item.style-4{
    background-color: var(--main-color);
}

/*----------------------
App Screenshoot Section 
-----------------------*/
.screenshot-item{
    margin: 15px;
}
.screenshot-item img{
    width: 100%;
    max-width: 250px;
    display: block;
    margin: auto;
}

/*----------------------
App Download Section 
-----------------------*/
.app-download{
    background-image: url('/img/AboutUs_BG.jpg');
    
    /* background-color: yellow; */
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    
}

.app-download .who{
    display: block;
    /* float: left; */
    text-align: center;
}
.app-download .section-title h2{
    color: #ffffff;
    margin-top: 70px;
    text-align: left;
}
.app-download .section-title .trade{
    text-align: center;
}
.app-download .section-title p{
    margin-top: 5px; 
    text-align: center;
    color: #ffffff;
    text-align: left;
}
.app-download::before{
    content:''; 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--main-to-dark-color);
    opacity: 0.8;
}
.app-download-item{
    background-color: var(--black-000);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
    height: auto;
}
.app-download-item i{ 
    font-size: 30px;
    color: var(--main-color);
    display: inline-block;
}
.app-download-item h3{
    font-size: 22px;
    color: var(--black-900);
    margin: 20px 0;
    font-weight: 500;
    text-transform: capitalize;
}
.app-download-item p{ 
    font-size: 16px;
    color: var(--black-400);
    font-weight: 300;
    margin: 0 0 30px;
    line-height: 26px;
    text-align: center;
}

.app-download-3{
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.app-download-3 .reson{
    background-color: #2C2B2F;
    margin: 15px;
    width: 60%;
    border: 0px solid green;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
    text-align: left;
}
.app-download-3 .reson ul li{
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 18px;
}
.app-download-3 .section-title p{
    margin-top: 15px; 
    text-align: center;
    color: #ffffff;
}
/*------------------
How It Work Section
--------------------*/

.how-it-work-item{
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.how-it-work-item.line-right::before{
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    left: 50%;
    top: 60px;
    background-color: var(--main-color);
    z-index: -1;
}
.how-it-work-item .step{
    display: inline-block;
    height: 60px;
    width: 60px;
    background-color: var(--main-color);
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 15px;
}
.how-it-work-item h3{
    margin: 20px 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--black-900);
    text-transform: capitalize;
}
.how-it-work-item p{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: var(--black-400);
    line-height: 26px;
}

/*---------------------------
Testimonials Section 
--------------------------*/
.testimonials{
    background-color: var(--black-100);
}
.testimonials-item{
    margin: 15px;
    padding: 30px; 
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    text-align: center;
}
.testimonials-item .img-box{
    height: 100px;
    width: 100px;
    display: inline-block;
    margin-bottom: 30px;
    border: 4px solid var(--main-color);
    border-radius: 50%;
    position: relative;
}
.testimonials-item .img-box img{
    border-radius: 50%;
    width: 100%;
}
.testimonials-item .img-box i{
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 12px;
    color: #ffffff;
    line-height: 30px;
    text-align: center;
    left: calc(100% - 15px);
    top: calc(50% - 15px);
}
.testimonials-item p{
    font-size: 16px;
    margin: 0 0 20px;
    color: var(--black-400);
    line-height: 26px;
    font-weight: 300;
}
.testimonials-item h3{
    font-size: 22px;
    color: var(--black-900);
    font-weight: 500;
    margin: 0 0 5px;
    text-transform: capitalize;
}
.testimonials-item span{
    display: block;
    font-size: 16px;
    color: var(--black-400);
    font-weight: 300;
}
.testimonials-item .rating{
    margin-top: 10px;
}
.testimonials-item .rating i{
    display: inline-block;
    font-size: 16px;
    color: var(--color-2); 
}


/*-----------------
Pricing Section 
-------------------*/
.pricing-plan{
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
}
.pricing-plan .pricing-header{
    padding: 20px 30px; 
    border-bottom: 1px solid var(--black-alpha-100);
}
.pricing-plan .pricing-header h3{
    text-align: center;
    font-size: 30px;
    color: var(--black-900); 
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.pricing-plan .pricing-price{
    padding: 40px 30px;   
    display: flex;
    justify-content: center;
    line-height: 0.7;
}
.pricing-plan .pricing-price .currency{
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400); 
    margin-right: 5px;
    align-self: flex-start;
}
.pricing-plan .pricing-price .price{
    font-size: 80px;
    font-weight: 700;
    color: var(--main-color);
}
.pricing-plan .pricing-price .period{
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400); 
    margin-right: 5px;
    align-self: flex-end;
    text-transform: uppercase;
}
.pricing-plan .pricing-body{
    padding: 0 30px;
}
.pricing-plan .pricing-body ul li{
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400);
    padding: 10px 0 10px 30px; 
    border-bottom: 1px solid var(--black-alpha-100);
    line-height: 26px;
    position: relative;
}
.pricing-plan .pricing-body ul li:last-child{
    border-bottom: none;
}
.pricing-plan .pricing-body ul li i{
    color: var(--main-color);
    position: absolute;
    left: 0;
    top: 12px;
}
.pricing-plan .pricing-footer{
    padding: 20px 30px 30px;
    text-align: center;
}

/*---------------Team Section ----------------*/
.team{
    background-color: var(--black-100);
}
.team-item{
    margin: 15px;
    padding: 30px; 
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
}
.team-item h3{
    font-size: 18px;
    color: var(--black-900);
    font-weight: 500;
    margin: 15px 0 5px;
    text-transform: capitalize;
}
.team-item span{
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400);
    text-transform: capitalize;
}

/*-----------------
Faq Section
------------------*/
.faq .accordion-item:not(:last-child){
    margin-bottom: 20px;
}
.faq .accordion-header{
    box-shadow: var(--shadow-black-100);
    padding: 20px 50px 20px 30px;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}
.faq .accordion-header::before{
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    height: 30px;
    width: 30px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 30px;
    color: var(--black-400);
    text-align: center;
    transition: all 0.5s ease;
}
.faq .accordion-header:not(.collapsed)::before{
    content: '\f068';
    color: #ffffff; 
}
.faq .accordion-header:not(.collapsed){
    background-color: var(--main-color);
    box-shadow: none;
}
.faq .accordion-header h3{
    font-size: 18px;
    font-weight: 500;
    color: var(--black-400);
    margin: 0;
    transition: all 0.5s ease;
}
.faq .accordion-header:not(.collapsed) h3{
    color: #ffffff;
}
.faq .accordion-body{
    padding: 20px 30px;
    background-color: var(--black-100);
}
.faq .accordion-body p{
    font-weight: 300;
    font-size: 16px;
    color: var(--black-400);
    line-height: 26px;
    margin: 0;
}

/*-----------------------
Contact Section 
-----------------------*/
.contact{
    background-color: var(--black-100);
}
.contact-info h3{
    font-size: 22px;
    color: var(--black-900);
    font-weight: 500;
    margin: 0 0 40px;
}
.contact-info-item{
    position: relative;
    padding-left: 55px;
    margin-bottom: 30px;
}
.contact-info-item i{
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    line-height: 38px;
}
.contact-info-item h4{
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
    color: var(--black-900);
}
.contact-info-item p{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    line-height: 26px;
    color: var(--black-400);
}
.contact-form .form-group{
    margin-bottom: 25px;
}
.contact-form .form-control{
    height: 52px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-black-100);
    border-radius: 30px;
    color: var(--black-900);
    background-color: var(--black-000);
    transition: all 0.5s ease;
}
.contact-form textarea.form-control{
    height: 140px;
    padding-top: 12px;
    resize: none;
}
.contact-form .form-control:focus{
    border-color: var(--main-color);
}

/*--------------------------------
Footer Section 
------------------------------*/
.footer{
    background-color: var(--black-500);
    padding: 50px 0 0;
}
.footer-col h3{
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 25px;
    text-transform: capitalize;
}
.footer-col p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 26px;
    margin: 0;
}
.footer-col ul lu:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 16px; 
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    display: block;
    transition: all 0.5s ease;
    text-transform: capitalize;
    text-decoration: none;
}
.footer-col ul li a:hover{
    padding-left: 5px;
}
.footer .copyright-text{
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 50px 0 0;
    border-top:1px solid rgba(255, 255, 255, 0.2);
}

/*-----------------------------
Toggle theme light and dark mode 
----------------------------------*/
.toggle-theme{
    position: fixed;
    right: 0;
    top: calc(50% - 20px);
    height: 40px;
    width: 40px;
    background-color: var(--dark-to-main-color);
    z-index: 1200;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--shadow-black-300)
}
.toggle-theme i{
    line-height: 40px;
}
.trade-now{
    background-image: url('../img/AboutUs_BG.jpg');
    /* background-color: yellow; */
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.trade-now .section-title h2{
    background-color: red;
}
.trade-now .section-title p{ 
    color: #ffffff;
}

/*-------------------
Reponsive
 -------------------*/

@media(max-width: 991px){
    .logo-mobile{
        display: block;
        visibility: visible;
    }
    img{
        max-width: 100%; 
        vertical-align: middle;
    }
    .navbar-toggler{
        background-color: var(--dark-to-main-color);
        box-shadow: var(--shadow-black-300);
        height: 34px;
        width: 44px;
        padding: 0;
        float: right;
        font-size: 17px;
        color: #ffffff;
        margin-right: 15px;
    }
    .navbar-nav{
        background-color: #2c2b2f;
        box-shadow: var(--shadow-black-300);
    }
    .navbar .nav-item{
        margin: 0;
        padding: 5px 15px;
    }
    .navbar.navbar-shrink .navbar-toggler,
    .navbar.navbar.navbar-shrink .navbar-nav{
        background-color: var(--black-400);
     }
    
     .home-img .circle{
         height: 320px;
         height: 320px;
     }
     .home-img .circle::before{
         left: 18px;
         top: 18px;
         transform-origin: 142px 142px;
     }
     
     .home-text h1{
         font-size: 40px;
     }
     .pricing-plan,
     .how-it-work-item,
     .app-download-item{
         margin-bottom: 30px;
     }
     .how-it-work-item.line-right::before{
         content: none;
     }
     .how-it-work-item{
         box-shadow: var(--shadow-black-100);
         border-radius: 10px;
     }
     .footer-col{
        margin-bottom: 30px;
    }
 }  

 @media(max-width: 767px){
    .logo-mobile img{
        max-width: inherit;
        width: 50px;
    }
    img{
        margin-left: 15px;
        max-width: 20%;
        vertical-align: middle;
    }
    input.form__field{
        width: 330px;
    }
    .navbar .navbar-brand img {
        max-width: 20%;
        display: block;
        margin-top: -7px;   
        padding-top: .3125rem;
        padding-bottom: 0.3125rem;
        margin-right: 1rem;
        display: inline-block;
        float: right;
    }
     .home-text{
         margin-bottom: 80px;
     }
     .fun-fact-img{
         margin-bottom: 30px;
     }
     .contact-form{
         margin-top: 20px;
     }
     .section-title h2{
         font-size: 35px;
     }
     .fun-facts .section-title h2{
         text-align: center;
     }
 }
 @media(max-width: 575px){
    .navbar-logo{
        visibility: hidden;
        width: 15%;
    }
    .logo-mobile{
        visibility: visible;
        width: 80%;
        margin-top: 5px;
    }
    .btn-3{
        font-size: 12px;
    }
    input.form__field{
        width: 307px;
    }
    .home-text h1{
        font-size: 30px;
    }
    .home-text p{
        font-size: 16px;
    }
    .section-title h2{
        font-size: 30px;
    }
}
/* .btn {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all 200ms ease-in;
    cursor: pointer;
} */
.btn--primary {
    background: var(--esm-main-color);
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
    border-radius: 2px;
    padding: 12px 36px;
}
.btn--primary:hover {
    background: #ff9d00;
    color: #fff;
}
.btn--primary:active {
    background: #ff9d00;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2);
}
.btn--inside {
    margin-left: -96px;
}
.form__field {
    width: 500px;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
    border: 0;
    outline: 0;
    padding: 22px 18px;
}


/* about us css */