/*************************************

Template Name: Bitway - Bitcoin & Cryptocurrency HTML Template
Author: Theme_Choices
Version: 1.0
Design and Developed by: Theme_Choices

****************************************/

/*================================================
            Table of contents  
==================================================

1. DEMO SECTION
2. PRELOADER
3. BACK TO TOP
4. HEADER SECTION
5. BANNER SECTION
6. ABOUT SECTION
7. SALE TOKEN SECTION
8. ROAD MAP SECTION
9. SERVICES SECTION
10. COUNTER SECTION
11. CURRENCY SECTION
12. TEAM SECTION
13. REVIEWS SECTION
14. BLOG SECTION
15. FAQ SECTION
16. CONTACT SECTION
17. FOOTER SECTION


/*================================================
             1. DEMO SECTION
==================================================*/

@font-face {
    font-family: 'gotham_book';
    src: url(../fonts/gotham-book.ttf);
}

@font-face {
    font-family: 'gotham_medium';
    src: url(../fonts/gotham-medium.ttf);
}

.demo-section {
    background: #f4f7f9;
    padding-top: 80px;
    padding-bottom: 60px;
}

.demo-banner {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../images/demo/demo-banner.jpg) center;
    height: 336px;
    background-size: cover;
}

.demo-heading {
    padding-top: 130px;
}

.demo-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding-bottom: 0px;
}

.demo-heading p {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    color: #fff;
    text-align: center;
    font-weight: 300;
}

.demo-heading2 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #212121;
    text-align: center;
    font-weight: 700;
    padding-top: 120px;
    padding-bottom: 50px;
}

.demo-content {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 50px;
    transition: all 0.3s ease 0s;
}

.demo-content:hover {
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
}

.demo-content-img {}

.demo-content-img a {
    display: block;
    position: relative;
}

.demo-content-img a::before {
    background: #2196f3 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.demo-content:hover .demo-content-img a::before {
    opacity: 0.8;
}

.demo-content-img a::after {
    color: #fff;
    content: "Live Preview ➞";
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    top: 20%;
    transition: all 0.3s ease 0s;
}

.demo-content:hover .demo-content-img a::after {
    top: 44%;
    opacity: 1;
}

.demo-content .demo-content-img a img {
    width: 100%;
}

.demo-content-title {
    background: #fff none repeat scroll 0 0;
    padding: 30px 0;
}

.demo-content-title {}

.demo-content-title h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 300;
}

.demo-content-title span {
    display: block;
    line-height: 16px;
    margin-top: 5px;
    text-transform: capitalize;
}

.footer-demo-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-demo-text {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 400;
    color: #444;
}

/*================================================
             2. PRELOADER
==================================================*/

.preloader {
    position: fixed;
    overflow: hidden;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #2e3e91;
    color: #fff;
    text-align: center
}

.spinner {
    position: absolute;
    left: 0;
    right: 0;
    width: 70px;
    height: 50px;
    text-align: center;
    top: 50%;
    margin: 0px auto;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/*================================================
             3. BACK TO TOP
==================================================*/

.scrollup {
    background: #2196f3 none repeat scroll 0 0;
    bottom: 38px;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    font-size: 16px;
    height: 40px;
    line-height: 35px;
    position: fixed;
    right: 30px;
    text-align: center;
    width: 40px;
    z-index: 99999;
}

.scrollup:hover {
    background: #fff;
    color: #444;
    border: 1px solid #2196f3;
    transition: 1s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.back-to-top span {
    padding-bottom: 10px;
}

/*================================================
             4. HEADER SECTION
==================================================*/

#particles-js {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.home-header {
    background-color: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050;
    padding-top: 28px;
    padding-bottom: 18px;
}

.home-header-new {
    background-color: #000;
    box-shadow: 0 0 10px #333;
}

.header-logo {
    display: block;
    margin-top: -2px;
}

.header-logo a {
    font-size: 27px;
    color: #eef7ff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.header-logo a span {
    color: #2196f3;
}

.header-logo a:hover {
    background: none;
}

.main-menu-area {
    text-align: right;
}

.header-nav li ul {
    background-color: #fff;
    border: 1px solid #ddd;
    left: 0;
    right: auto;
    margin: 0;
    opacity: 0;
    padding: 15px;
    position: absolute;
    text-align: left;
    top: 59px;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 250px;
    z-index: -1;
}

.main-menu-area ul li {
    display: inline-block;
    position: relative;
    padding-left: 35px;
}

.header-nav li a {
    color: #eef7ff;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
}

.header-nav li a:hover {
    color: #2196f3;
}

.header-nav li.active a {
    color: #2196f3 !important;
}

.header-nav li a i {
    padding-left: 5px;
}

.header-nav li:hover ul {
    opacity: 1;
    top: 59px;
    visibility: visible;
    z-index: 99;
}

.header-nav li ul li {
    display: block;
    padding-left: 0px;
    border-bottom: 1px solid #ddd;
}

.header-nav li ul li:last-child {
    border-bottom: 0px solid;
}

.header-nav li ul li>a {
    color: #2196f3 !important;
    display: block;
    font-size: 13px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav li.active ul li>a:hover {
    color: #fff !important;
}

.header-nav li ul li>a:hover {
    background: #2196f3;
    color: #fff !important;
}

a:focus,
a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0 solid;
}

/*================================================
             5. BANNER SECTION
==================================================*/

.banner-section {
    background: #000000;
    height: 489px;
    position: relative;
}

.banner-section2 {
    background: #0b0c22;
    height: 863px;
    position: relative;
}

.banner-text {
    margin-top: 200px;
}
.page{
    height:489px;
}

.banner-dark-text {
    margin-top: 350px;
}

.banner-img img {
    margin-top: 200px;
}

.banner-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    padding-bottom: 10px;
}

.banner-text p {
    font-family: 'gotham_book';
    font-size: 17px;
    line-height: 1.8;
    color: #f9f9f9;
    padding-bottom: 25px;
}

.banner-btn {
    color: #101115;
    background: #88ff27;
    border: 2px solid #88ff27;
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 35px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #88ff27;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.banner-btn:hover {
    box-shadow: inset 0 100px 0 0 #fff;
    color: #000;
}

.banner-dark-btn {
    background: #356eff;
    color: #fff;
    border: 0px solid;
    box-shadow: inset 0 0 0 0 #356eff;
    border-radius: 5px;
}

/*================================================
             6. ABOUT SECTION
==================================================*/

.about-section {
    background: #D40000;
    padding-top: 4px;
    padding-bottom: 0px;
}

.about-dark-section {
    background: #10122d;
}

.about-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.about-dark-heading h2 {
    color: #fff;
}

.about-heading p {
    color: #ffffff;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.about-dark-heading p {
    color: #a6a7ac;
}

.about-text h2 {
    color: #000000;
    font-size: 90px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 15px;
}

.about-text h3 {
    color: #101116;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 10px;
}

.about-dark-text h3 {
    color: #fff;
}

.about-text p {
       color: #ffffff;
    font-size: 15px;
    font-family: 'gotham_book';
    line-height: 30px;
}

.about-dark-text p {
    color: #a6a7ac;
}

.about-text:hover h2 {
    color: #000000;
    transition: all 0.3s ease 0s;
}

.about-text:hover span {
    color: #3873ff;
    transition: all 0.3s ease 0s;
}

.about-text:hover h3 {
    color: #3873ff;
    transition: all 0.3s ease 0s;
}

.about-section2 {
    background: url(../images/about/about-bg.jpg) center;
    background-size: cover;
    height: 815px;
}

.about-section3 {
    background: url(../images/about/about-bg2.jpg) center;
    background-size: cover;
    height: 620px;
}

.about-text2 {
    padding-top: 33px;
}

.about-text2 h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 15px;
}

.about-text2 p {
    color: #fff;
    font-family: "gotham_book";
    font-size: 15px;
    line-height: 30px;
}

.about-dark-text2 p {
    color: #a6a7ac;
}

.about-text2 ul {
    padding-left: 0px;
}

.about-text2 ul li {
    color: #fff;
    font-family: "gotham_book";
    font-size: 17px;
    line-height: 34px;
    list-style: outside none none;
    margin-left: 28px;
}

.about-text2 ul li::before {
    background: rgba(0, 0, 0, 0) url("../images/about/about-icon.png") repeat scroll center center;
    content: "";
    height: 24px;
    left: 14px;
    margin-top: 5px;
    position: absolute;
    width: 18px;
}

.about-btn {
    color: #101115;
    background: #88ff27;
    border: 2px solid #88ff27;
    padding: 14px 42px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 35px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #88ff27;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.about-btn:hover {
    box-shadow: inset 0 100px 0 0 #fff;
    color: #000;
}

.about-dark-btn {
    background: #356eff;
    color: #fff;
    border: 0px solid;
    box-shadow: inset 0 0 0 0 #356eff;
    border-radius: 5px;
}

.about-dark-btn:hover {
    box-shadow: inset 0 100px 0 0 #fff;
    color: #000;
}

.distribution-section {
    background: #0b0c22;
    padding-top: 100px;
    padding-bottom: 100px;
}

.distribution-text {
    padding-top: 70px;
}

.distribution-text h3 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 15px;
}

.distribution-text p {
    color: #a6a7ac;
    font-family: "gotham_book";
    font-size: 15px;
    line-height: 30px;
}

/*================================================
             7. SALE TOKEN SECTION
==================================================*/

.sale-section {
    background: #10122d none repeat scroll 0 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sale-heading h2 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: center;
}

.sale-heading p {
    color: #a6a7ac;
    font-family: "gotham_book";
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 80px;
    text-align: center;
}

.sale-text ul.sale-nav {
    background: #1d1f3b;
    border-radius: 5px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.sale-text ul.sale-nav li {
    color: #ffffff;
    font-size: 17px;
    list-style: none;
    line-height: 2.4;
    font-family: "gotham_book";
}

.sale-text ul.sale-nav li span {
    color: #b4b4b4;
    font-size: 17px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.sale-text ul.sale-nav li span.first {
    margin-right: 105px;
}

.sale-text ul.sale-nav li span.second {
    margin-right: 64px;
}

.sale-text ul.sale-nav li span.third {
    margin-right: 33px;
}

.sale-text ul.sale-nav li span.four {
    margin-right: 93px;
}

.sale-text ul.sale-nav li span.five {
    margin-right: 67px;
}

.sale-text ul.sale-nav li span.six {
    margin-right: 72px;
}

.sale-text h3 {
    font-family: 'gotham_medium';
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
}

.sale-text ul.sale-nav2 {
    padding-left: 0px;
}

.sale-text ul.sale-nav2 li {
    display: inline-block;
    list-style: none;
}

.sale-text h4 {
    font-family: 'gotham_medium';
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    padding-top: 30px;
    padding-bottom: 10px;
}

.sale-text span {
    font-family: 'gotham_book';
    font-size: 15px;
    color: #fff;
    padding-bottom: 5px;
}

.sale-text p {
    color: #a6a7ac;
    font-family: "gotham_book";
    font-size: 15px;
    line-height: 30px;
    padding-top: 10px;
}

/*================================================
             8. ROAD MAP SECTION
==================================================*/

.roadmap-section {
    background: #0b0c22 none repeat scroll 0 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.roadmap-heading h2 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: center;
}

.roadmap-heading p {
    color: #a6a7ac;
    font-family: "gotham_book";
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 80px;
    text-align: center;
}

.roadmap-wrapper {
    width: 85%;
    margin: 0px auto;
    left: 5%;
}

.roadmap-wrapper::before {
    background: #ccd1d9 none repeat scroll 0 0;
    content: "";
    height: 3px;
    left: 0;
    margin-left: 16px;
    position: absolute;
    top: 0;
    width: 84%;
    z-index: 1;
}

.roadmap-icon {
    background: #fff none repeat scroll 0 0;
    color: #000;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    font-size: 10px;
    text-align: center;
    z-index: 9999;
    position: relative;
    margin-top: -6px;
}

.roadmap-content {
    text-align: center;
    padding-top: 40px;
}

.roadmap-content h5 {
    color: #696970;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.roadmap-content p {
    color: #696970;
    font-size: 14px;
    font-family: "gotham_medium";
}

.roadmap-content2 {
    background: #fff;
    text-align: center;
    margin-top: 30px;
}

.arrow-up {
    border-bottom: 10px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    display: block;
    height: 0;
    left: -9px;
    margin: -10px auto 0;
    position: absolute;
    right: 0;
    width: 0;
}

.roadmap-content2 h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-top: 10px;
}

.roadmap-content2 p {
    color: #7a7a7b;
    font-size: 14px;
    font-family: "gotham_medium";
}

.roadmap-content2 span {
    background: #daddff;
    color: #356eff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}

.roadmap-icon2 {
    background: #9ab8ff none repeat scroll 0 0;
    border: 5px solid #fff;
    color: #000;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    font-size: 10px;
    text-align: center;
    z-index: 9999;
    position: relative;
    margin-top: -6px;
}

.roadmap-content-white h5 {
    color: #fff;
}

.roadmap-content-white p {
    color: #fff;
}

.roadmap-animation {
    animation: 3s linear 0s normal none infinite running animate;
    z-index: 9999;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), 0 0 0 0 rgba(255, 255, 255, .7)
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .1.5), 0 0 0 0 rgba(255, 255, 255, .6)
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, 0)
    }
}

/*================================================
             9. SERVICES SECTION
==================================================*/

.services-section {
    padding-top: 62px;
    padding-bottom: 50px;
}

.service-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.service-heading p {
    color: #ffffff;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 46px;
}

.service-text {
    padding-bottom: 12px;
}

.service-text img {
    background: #ebf1ff none repeat scroll 0 0;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    padding: 10px;
    transform: rotate(-6deg);
}

.service-text h3 {
    color: #101115;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-top: 20px;
    text-align: center;
}

.service-text p {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

/*================================================
             10. COUNTER SECTION
==================================================*/

.counter-section {
    background: url(../images/counter/counter-bg.jpg) center;
    height: 322px;
    background-size: cover;
    padding-top: 100px;
}

.counter-dark-section {
    background: url(../images/counter/counter-dark-bg.jpg) center;
    height: 322px;
    background-size: cover;
    padding-top: 100px;
}

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

.counter-items span {
    font-size: 56px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-weight: 600;
    display: block;
    text-align: center;
}

.counter-items h3 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    padding-top: 10px;
}

.counter-dark-items span {
    color: #fff;
}

.counter-dark-items span {
    color: #a6a7ac;
}

/*================================================
            11. CURRENCY SECTION
==================================================*/

.currency-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.currency-dark-section {
    background: #10122d;
    padding-top: 100px;
    padding-bottom: 100px;
}

.currency-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.currency-heading p {
    color: #444;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.currency-dark-heading h2 {
    color: #fff;
}

.currency-dark-heading p {
    color: #a6a7ac;
}

.table {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-family: "Poppins", sans-serif;
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #fff;
}

.table-dark-info,
.table-dark-info>td,
.table-dark-info>th {
    background-color: #10122d;
}

.table-dark thead th {
    border-bottom: 1px solid #eceeef;
    color: #fff;
    vertical-align: bottom;
}

.dark-green {
    background: #fff;
}

tr.green th {
    color: #3873ff;
}

tr.green td {
    color: #3873ff;
}

tr.green2 th {
    color: #20a81a;
}

tr.green2 td {
    color: #20a81a;
}

tr.light th {
    color: #a39756;
}

tr.light td {
    color: #a39756;
}

/*================================================
             12. TEAM SECTION
==================================================*/

.team-section {
    background: url(../images/team/team-bg.png) center;
    height: 744px;
    background-size: cover;
    padding-top: 100px;
}

.team-dark-section {
    background: url(../images/team/team-dark-bg.png) center;
    height: 744px;
    background-size: cover;
    padding-top: 100px;
}

.team-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.team-heading p {
    color: #444;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.team-dark-heading h2 {
    color: #fff;
}

.team-dark-heading p {
    color: #a6a7ac;
}

.team-items {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.team-items img {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.team-items .overlay {
    background: #3873ff;
    height: 100%;
    left: 0;
    top: 70%;
    width: 100%;
    padding-top: 25px;
    text-align: center;
    position: absolute;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-items .overlay h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.team-items .overlay p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.team-items .overlay a i {
    border: 1px solid #fff;
    height: 35px;
    width: 35px;
    line-height: 34px;
    border-radius: 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin-left: 5px;
    margin-right: 5px;
    transition: all 0.5s;
}

.team-items .overlay a i:hover {
    background: #fff;
    color: #3873ff;
}

.team-items:hover .overlay {
    top: 50%;
}

/*================================================
             13. REVIEWS SECTION
==================================================*/

.reviews-section {
   background-color: black;
    background-size: cover;
    height: 575px;
    padding-top: 100px;
}

.reviews-dark-section {
    background-color: black;   
     background-size: cover;
    height: 845px;
    padding-top: 100px;
}

.reviews-heading h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: left;
}

.reviews-heading p {
    color: #fff;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: left;
    padding-bottom: 70px;
}

.single-reviews {
    position: relative;
    padding-bottom: 10px;
    padding-top: 50px;
}

.single-col {
    background: #ffffff;
    padding-bottom: 25px;
}

.reviews-image {
    padding-top: 10px;
}

.reviews-image {
    height: auto;
    left: 0;
    margin: 0 auto 15px;
    right: 0;
    width: 80px;
}

.reviews-image img {
    width: 100%;
    border-radius: 50%;
    margin-top: -50px;
}

.reviews-name {
    padding: 13px 0;
}

.reviews-name h4 {
    color: #000;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.reviews-name span {
    color: #444;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: center;
    display: block;
    padding-bottom: 10px;
}

.reviews-content {
    color: #444;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    padding-top: 0px;
}

.reviews-list .owl-nav {
    margin-top: 30px;
    position: relative;
    text-align: center;
}

.owl-prev,
.owl-next {
    border: 0 none;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
    width: 50px;
    font-weight: 300;
    font-size: 35px;
}

.owl-next {
    margin-left: 10px;
}

.reviews-icon2 {
    padding-top: 280px;
}

.reviews-icon4 {
    margin: 70px;
    display: block;
    border-radius: 100%;
    animation: 3s linear 0s normal none infinite running animate;
    z-index: 9999;
}

.reviews-icon4:hover {
    animation: none;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), 0 0 0 0 rgba(255, 255, 255, .7)
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .1.5), 0 0 0 0 rgba(255, 255, 255, .6)
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .0), 0 0 0 20px rgba(255, 255, 255, 0)
    }
}

/*================================================
             14. BLOG SECTION
==================================================*/

.blog-section {
    padding-top: 100px;
    padding-bottom: 90px;
}

.blog-dark-section {
    background: #10122d;
    padding-top: 100px;
    padding-bottom: 90px;
}

.blog-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.blog-heading p {
    color: #444;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.blog-dark-heading h2 {
    color: #fff;
}

.blog-dark-heading p {
    color: #a6a7ac;
}

.blog-posts {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-dark-posts {
    box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.1);
}

.blog-posts img {
    max-width: 100%;
    height: auto;
}

.blog-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.blog-posts h4 {
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    color: #000;
    font-weight: 600;
    padding-top: 20px;
}

.blog-dark-posts h4 {
    color: #fff;
}

.blog-posts p.tag {
    font-size: 13px;
    color: #666;
    font-family: "Poppins", sans-serif;
    padding-top: 3px;
    margin-bottom: 8px;
}

.blog-dark-posts p.tag {
    color: #a6a7ac;
}

.blog-posts p.tag a {
    float: right;
    padding-right: 25px;
}

.blog-dark-posts p.tag a {
    color: #a6a7ac;
}

.blog-posts p.tag span {
    color: #666;
}

.blog-dark-posts p.tag span {
    color: #a6a7ac;
}

.blog-posts p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.blog-dark-posts p {
    color: #a6a7ac;
}

.blog-posts a.read-more {
    color: #666;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding-top: 20px;
}

.blog-dark-posts a.read-more {
    color: #a6a7ac;
}

.blog-posts a.read-more:hover {
    color: #448aff;
    text-decoration: underline;
    transition: all 1s ease 0s;
}

.blog-dark-posts a.read-more:hover {
    color: #d7c14a;
}

/*================================================
             15. FAQ SECTION
==================================================*/

.faq-section {
    background: #D40000;
    padding-top: 9px;
    padding-bottom: 34px;
}

.faq-dark-section {
    background: #0b0c22;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.faq-heading p {
    color: #444;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.faq-dark-heading h2 {
    color: #fff;
}

.faq-dark-heading p {
    color: #a6a7ac;
}

.faq-subscribe #text {
    width: 85%;
    height: 45px;
    background: #f6f3fe;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
    font-family: 'gotham_book';
}

.faq-subscribe #button {
    background: #3873ff;
    height: 45px;
    color: #fff;
    font-family: 'gotham_book';
    font-size: 20px;
    border: none;
    padding-left: 16px;
    padding-right: 16px;
}

.bs-example {
    background: #e3e2e8;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

.bs-dark-example {
    background: #1d1f3b;
}

.panel-group-heading h3 {
    margin-top: 38px;
    margin-bottom: 30px;
    color: #000000;
    font-size: 16px;
    font-family: 'gotham_medium';
}

.panel-title h4 {
    line-height: 1.4;
}

.panel-title a {
    font-size: 17px;
    color: #4f4b4b;
    font-family: 'gotham_medium';
}

.panel-dark-title a {
    color: #fff;
}

.panel-title a span {
    color: #ff4800;
    font-size: 18px;
    margin-right: 10px;
}

.panel-dark-title a span {
    color: #3873ff;
}

.panel-body {
    padding-left: 15px;
}

.panel-body p {
    font-family: 'gotham_book';
    font-size: 16px;
    font-weight: 28px;
    color: #444;
}

.panel-dark-body p {
    color: #fff;
}

/*================================================
             16. CONTACT SECTION
==================================================*/

.contact-section {
    background: #ffffff;
    padding-top: 28px;
    padding-bottom: 42px;
}

.contact-dark-section {
    background: #10122d;
}

.contact-heading h2 {
    color: #101115;
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
    text-align: center;
}

.contact-heading p {
    color: #444;
    font-size: 16px;
    font-family: 'gotham_book';
    line-height: 28px;
    text-align: center;
    padding-bottom: 80px;
}

.contact-dark-heading h2 {
    color: #fff;
}

.contact-dark-heading p {
    color: #a6a7ac;
}

.contact-form input {
    color: #444;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    margin-top: 25px;
}

.contact-form textarea {
    height: 200px;
    margin-top: 25px;
}

.contact-btn {
    text-align: center;
}

.contact-form button {
    background: #D40000;
    border: 1px solid #D40000;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-top: 25px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 12px 40px;
    transition: 0.3s;
    border-radius: 0px;
    float: left;
}

.contact-form button:hover {
    background: #fff;
    color: #444;
    border: 1px solid #2196f3;
}

.contact-form input.error {
    border: 1px solid #F00;
}

.contact-form textarea.error {
    border: 1px solid #F00;
}

.contact-form .error {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F00;
}

/*================================================
             17. FOOTER SECTION
==================================================*/

.footer-section {
    background: url(../images/footer/footer-bg.jpg) center;
    height: 352px;
    background-size: cover;
    padding-top: 110px;
}

.footer-dark-section {
    background: url(../images/footer/footer-bg2.jpg) center;
    height: 462px;
    background-size: cover;
    padding-top: 110px;
}

.footer-text h4 {
    color: #ffffff;
    font-size: 27px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
}

.footer-text p {
    color: #f3fbfe;
    font-size: 15px;
    font-family: 'gotham_book';
    line-height: 30px;
    padding-bottom: 15px;
}

.footer-text a {
    background: #3b5998;
    color: #fff;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 12px;
    font-size: 22px;
    display: inline-block;
    margin-right: 15px;
    transform: rotate(-6deg);
}

.footer-text a.second {
    background: #1da1f2;
}

.footer-text a.third {
    background: #dd4b39;
}

.footer-nav h5 {
    color: #f3fbfe;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
}

.footer-nav ul {
    padding-left: 0px;
}

.footer-nav ul li {
    list-style: none;
}

.footer-nav ul li a {
    color: #f3fbfe;
    font-size: 15px;
    font-family: 'gotham_book';
    line-height: 40px;
}

.footer-contact h5 {
    color: #f3fbfe;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
}

.footer-contact p {
    color: #f3fbfe;
    font-size: 15px;
    font-family: 'gotham_book';
    line-height: 40px;
}






.roadmap-section {
    padding: 50px 0;
    background-color: #000000; /* Change background color as needed */
}

.roadmap-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #D40000; /* Change text color as needed */
}

.roadmap-path {
    position: relative;
    width: 100%;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items in the row */
    position: relative;
}

.roadmap-item {
    position: relative;
    flex: 1 1 200px; /* Allow items to grow and shrink, set a minimum width */
    text-align: center; /* Center-align text in each item */
    margin: 10px; /* Add some space between items */
}

.roadmap-point {
    background-color: #007bff; /* Change color as needed */
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto; /* Center the point */
    z-index: 1; /* Ensure points are on top */
}

.roadmap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px; /* Adjust for vertical alignment */
    right: -50%; /* Position line to the right of the item */
    width: 100%;
    height: 4px; /* Line thickness */
    background-color: #007bff; /* Line color */
    z-index: 0; /* Send line behind points */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .roadmap-list {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }

    .roadmap-item {
        flex: none; /* Reset flex properties */
        width: 80%; /* Set width to 80% of the container */
        margin: 20px 0; /* Add vertical spacing */
    }

    .roadmap-item:not(:last-child)::after {
        right: 0; /* Adjust line position for stacked items */
        top: 40px; /* Adjust line position below the point */
        width: 4px; /* Adjust line width */
        height: calc(100% - 40px); /* Line height for vertical layout */
    }
}

.roadmap-content {
    margin-top: 10px; /* Space between point and text */
}

.roadmap-content h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #ffffff; /* Change text color as needed */
}

.roadmap-content p {
    margin: 0;
    color: #ffffff; /* Change text color as needed */
}
