:root {
    --theme-primary: #fff;
    --theme-secondary: #000;
}

*,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

button,
button:focus,
.btn,
.btn:focus {
    outline: 0;
}

section {
    overflow: hidden;
}

.fw-600 {
    font-weight: 600;
}

.text-theme {
    color: var(--theme-primary);
}

.btn-theme {
    background: #0087ff;
    color: #fff !important;
    padding: 13px 40px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.btn-theme:hover {
    background: #0045ff;
}

.btn-theme:focus {
    box-shadow: none;
}

.btn-white {
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    line-height: 26px;
    padding: 12px 30px;
    border: 2px solid #fff;
    min-width: 215px;
    transition: all 0.3s ease-in-out;
}

.btn-white:hover {
    background: #fff;
    color: #4776e6;
}

/* Back To Top */

#backToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e64e7;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 10px 0px rgb(0 0 0 / 40%);
}

#backToTop i {
    color: #fff;
}

#backToTop:hover {
    cursor: pointer;
    background-color: var(--theme-secondary);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@-webkit-keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-moz-keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-o-keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Header */
.main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 20px 8px #00000024;
    z-index: 999;
}
.main_header {
    padding: 5px 100px;
}
.main_header img {
    height: 100px;
}

.main_header.sticky img {
    height: 70px;
}

.main_header .main_nav .navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 15px;
    padding: 5px;
    margin: 10px;
    color: #223b54;
    transition: all 0.3s ease-in-out;
}

.main_header .main_nav .navbar-nav .nav-link:hover,
.main_header .main_nav .navbar-nav .nav-link.active {
    color: #0087ff;
}

.main_header .main_nav .navbar-nav {
    margin: 0 auto;
}

.main_header .main_nav .btn-theme {
    box-shadow: 0 6px 27px rgb(0 135 255 / 35%);
}

/* Hero */
.hero {
    background-image: url(../images/hero-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 40px;
}

.hero p {
    font-size: 15px;
    color: #ffffff99;
    margin-bottom: 30px;
    line-height: 30px;
}

.hero img,
.about img,
.partner img,
.integration img {
    animation: move 2.5s linear infinite;
}

.circle1 {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(175 161 113 / 25%);
    animation: move 2.5s linear infinite;
}

.circle2 {
    position: absolute;
    left: 30%;
    top: 60%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(175 161 113 / 25%);
    animation: move 3s linear infinite;
}

.circle3 {
    position: absolute;
    right: 40px;
    top: 140px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgb(175 161 113 / 25%);
    animation: move 2.5s linear infinite;
}

.circle4 {
    position: absolute;
    left: 45%;
    top: 50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgb(175 161 113 / 25%);
    animation: move 3.5s linear infinite;
}
.hero .hero-content {
    margin: auto;
    position: absolute;
    height: 100%;
}

.banner-carousel {
    padding: 150px 0;
}
.banner-carousel .banner .item img {
    height: 200px;
    width: 400px;
}
.banner-carousel .banner .item .hover-content {
    background: #0087ffe8;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.banner-carousel .banner .item .hover-content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
}
.banner-carousel .banner .item:hover .hover-content {
    opacity: 1;
    visibility: visible;
}
.banner-carousel .banner .owl-nav .owl-prev,
.banner-carousel .banner .owl-nav .owl-next {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    font-size: 24px;
}
.banner-carousel .banner .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.banner-carousel .banner .owl-dots .owl-dot {
    background: rgb(51 51 51 / 34%);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin: 3px;
}
.banner-carousel .banner .owl-dots .owl-dot.active {
    background: #000;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin: 3px;
}
.banner-carousel .banner .owl-nav .owl-prev {
    left: -85px;
}

.banner-carousel .banner .owl-nav .owl-next {
    right: -85px;
}

.about h2,
.partner h2,
.trade h2,
.benefits h2,
.integration h2,
.team h2,
.roadmap h2 {
    font-size: 30px;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.about p,
.partner p,
.benefits .benefit_card p,
.integration p {
    font-size: 15px;
    color: #777;
    line-height: 1.9;
    font-weight: 300;
}

.partner ul li {
    font-size: 15px;
    color: #777;
}
.trade,
.benefits,
.integration,
.faqs {
    padding: 100px 0;
}

.team {
    padding: 50px 0;
}
.trade img {
    filter: drop-shadow(5px 5px 5px #666666);
    border-radius: 20px;
}

.benefits .benefit_card {
    padding: 50px 25px;
    box-shadow: 0 0 10px rgb(165 165 165 / 20%);
    margin: 0 0 30px;
    border: 0;
    height: 400px;
}

.benefits .benefit_card .img-box img {
    height: 40px;
    width: 45px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.benefits .benefit_card h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #333;
}

.integration .btn-theme.btn-alter-1 {
    width: 50%;
    border-radius: 25px 0 0 25px;
    border: 2px solid #005aff;
}

.integration .btn-theme.btn-alter-2 {
    width: 50%;
    border-radius: 0 25px 25px 0;
    border: 2px solid #005aff;
}

.team .team_box .image_box {
    border: 2px solid #0087ff;
    border-radius: 50%;
    width: fit-content;
    padding: 5px;
    margin: 0 auto 10px;
    transition: all 0.3s ease-in-out;
}

.team .team_box .image_box img {
    height: 150px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.team .team_box h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.team .team_box p {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-bottom: 10px;
}

.team .team_box a i {
    color: #777;
    transition: all 0.3s ease-in-out;
}

.team .team_box:hover .image_box {
    border: 6px solid #0087ff;
}
.team .team_box:hover img {
    transform: scale(0.95);
}

.team .team_box a:hover i {
    color: #0087ff;
}

/* FAQ's Accordion */
.panel,
.panel-body {
    box-shadow: none;
}

.panel-group .panel-heading {
    padding: 0;
}

.panel-group .panel-heading a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    position: relative;
}

.panel-group .panel-heading a:after {
    content: "-";
    float: right;
    background: #333;
    color: #fff;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-group .panel-heading a.collapsed:after {
    content: "+";
}

.faqs .faq-accordion .panel-group {
    border-radius: 5px;
    padding: 25px 45px 25px 25px;
    box-shadow: 0 0 10px 4px #00000014;
    margin-bottom: 30px;
}

.faqs .faq-accordion .panel-title {
    margin: 0;
}

.faqs .faq-accordion a {
    padding: 0;
    color: #000;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faqs .faq-accordion .panel-body {
    margin-top: 18px;
    font-size: 15px;
    color: #777;
    line-height: 1.9;
    font-weight: 300;
}

.main_footer {
    background-image: url(../images/hero-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 0 100px;
}
.main_footer h3 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.main_footer .icon_container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.main_footer .icon_container .icon_box {
    border: 0;
    border-radius: 5px;
    height: 35px;
    width: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.main_footer .icon_container .icon_box:nth-child(1) {
    background: #3b5998;
}
.main_footer .icon_container .icon_box:nth-child(2) {
    background: #1da1f2;
}
.main_footer .icon_container .icon_box:nth-child(3) {
    background: #262626;
}
.main_footer .icon_container .icon_box:nth-child(4) {
    background: #818a91;
}
.main_footer .icon_container .icon_box:nth-child(5) {
    background: #cd201f;
}
.main_footer .icon_container .icon_box:nth-child(6) {
    background: #0077b5;
}
.main_footer .icon_container .icon_box:nth-child(7) {
    background: #2ca5e0;
}
.main_footer a {
    font-size: 12px;
    color: #fff;
    margin: 0;
    padding: 0;
}
.main_footer p {
    margin: 0;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 300;
}

.main_footer .newsletter-form .input_box input {
    height: 40px;
    border: 1px solid #666;
    border-radius: 3px;
    font-weight: 300;
    color: #666;
}

.main_footer .newsletter-form .form-group.form-check label {
    font-size: 14px;
}

.main_footer .btn-theme {
    padding: 12px 20px;
}

.main_footer .btn-theme:hover {
    background: #0087ff !important;
}

/* RoadMap */
.roadmap .roadmap_box {
    background: #0087ff;
    border: 0;
    border-radius: 5px;
    padding: 35px;
    position: relative;
    float: right;
}
.roadmap .roadmap_box_even {
    background: #0087ff;
    border: 0;
    border-radius: 5px;
    padding: 35px;
    position: relative;
    float: left;
}

.roadmap .roadmap_box h3,
.roadmap .roadmap_box_even h3 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}

.roadmap .roadmap_box ul li,
.roadmap .roadmap_box_even ul li {
    color: #333;
    font-size: 15px;
    margin: 5px 0;
}

.roadmap_box:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    background: #0087ff;
    height: 15px !important;
    width: 70px !important;
    content: "";
    left: -70px !important;
}
.roadmap_box_even:before {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #0087ff;
    height: 15px !important;
    width: 70px !important;
    content: "";
    right: -70px !important;
}
.roadmap-icon-odd {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #0087ff;
    border-right-color: #0087ff;
    margin: auto;
    position: absolute;
    top: 0 !important;
    left: -12% !important;
    bottom: 0 !important;
    right: 0 !important;
    z-index: 1 !important;
    transform: rotate(45deg) !important;
    margin-top: 25px !important;
}
.roadmap-icon-even {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #0087ff;
    border-right-color: #0087ff;
    margin: auto;
    position: absolute;
    top: 0 !important;
    left: 46% !important;
    bottom: 0 !important;
    z-index: 1 !important;
    transform: rotate(225deg) !important;
}
.year {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgb(165 165 165 / 20%);
    margin: auto;
    font-size: 24px;
    font-weight: bold;
    color: #0087ff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-45deg);
}
.year-even {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 40px rgb(165 165 165 / 20%);
    margin: auto;
    font-size: 24px;
    font-weight: bold;
    color: #0087ff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(135deg);
}

.imgage-section img{
    width:100%;
}
@media screen and (max-width: 600px) {
    .main_header {
        padding: 5px 20px;
    }
    .hero img {
        display: none;
    }
    .btn-theme {
        padding: 13px 22px;
    }

    .roadmap-icon-odd {
        left: 0 !important;
        right: 0 !important;
        top: -27% !important;
        bottom: auto !important;
        transform: rotate(135deg) !important;
        margin-top: 115px !important;
    }
    .roadmap .roadmap_box {
        margin-top: 200px;
    }
    .roadmap_box:before {
        left: 50% !important;
        width: 25px !important;
        transform: translateX(-50%) !important;
        top: -24px !important;
        height: 25px !important;
    }
    .roadmap-icon-even {
        left: 0 !important;
        right: 0 !important;
        top: -26% !important;
        bottom: auto !important;
        transform: rotate(135deg) !important;
        margin-top: 115px !important;
    }
    .roadmap .roadmap_box_even {
        margin-top: 200px;
    }
    .roadmap_box_even:before {
        right: -70px !important;
        left: 50% !important;
        width: 25px !important;
        transform: translateX(-50%) !important;
        top: -24px !important;
        height: 25px !important;
    }
    .year,
    .year-even {
        transform: rotate(225deg);
    }
}
@media screen and (max-width: 900px) and (min-width: 601px) {
    .roadmap-icon-odd {
        left: -77% !important;
    }
    .roadmap-icon-even {
        left: 74% !important;
    }
    .btn-white {
        padding: 12px 15px;
        min-width: 0;
    }
    .benefits .benefit_card{
        padding: 25px 10px;
        height: 450px;
    }
    .benefits .benefit_card p{
        font-size: 15px;
        line-height: 1.8;
        font-weight: 300;
    }
    .benefits .benefit_card h3{
        font-size: 16px;
    }
    .about h2, .partner h2, .trade h2, .benefits h2, .integration h2, .team h2, .roadmap h2{
            font-size: 26px;
    }
    .btn-theme{
            padding: 13px 15px;
    }
    .team .team_box .image_box img{
            height: 125px;
    }
}
@media screen and (max-width: 1100px) and (min-width: 901px) {
    .main_header {
        padding: 5px 50px;
    }
    .roadmap_box:before {
        left: -25px !important;
        width: 25px !important;
    }
    .roadmap-icon-odd {
        left: -24% !important;
    }
    .roadmap_box_even:before {
        width: 25px !important;
        right: -25px !important;
    }
    .roadmap-icon-even {
        left: 51% !important;
    }
}
