:root {
    --theme-bg: #17181A;
    --border-color: rgb(252 252 252 / 31%);
    --primary-color: #CC0000;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: "Unbounded", sans-serif;
}

body {
    position: relative;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #fff;
    background-color: #17181A;
    overflow-x: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s ease-in-out;
}

.form-control {
    box-shadow: none !important;
}

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

button:focus {
    box-shadow: none;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb-60 {
    padding-bottom: 60px;
}

.py-100 {
    padding-top: 250px;
    padding-bottom: 50px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-20 {
    padding-top: 20px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mb-50 {
    margin-bottom: 50px;
}


/* common Button Style */
.primary-btn {
    position: relative;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.primary-btn.style-1 {
    background-color: var(--primary-color);
}

.primary-btn.style-2 {
    background-color: var(--theme-bg);
}

.primary-btn.style-3 {
    background-color: rgb(252 252 252 / 31%);
}

.primary-btn.style-1:hover {
    background-color: var(--theme-bg);
}

.primary-btn.style-2:hover {
    background-color: var(--primary-color);
}

.primary-btn.style-3:hover {
    background-color: transparent;
}

.primary-btn::before {
    position: absolute;
    content: '';
    width: 0;
    bottom: 0;
    height: 120%;
    left: -10%;
    transform: skewX(20deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.primary-btn.style-1::before {
    background-color: var(--theme-bg);
}

.primary-btn.style-2::before {
    background-color: var(--primary-color);
}

.primary-btn.style-3::before {
    background-color: transparent;
}

.primary-btn:hover::before {
    width: 120%;
}

/* Common section Title */
.title-section {
    position: relative;
    margin-bottom: 30px;
}

.title-section .sub-title {
    position: relative;
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-section .main-title {
    font-size: 34px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.title-section .short-text {
    font-size: 16px;
    color: #fff;
}

/* Custom List */
.custom-list ul li {
    position: relative;
    color: #fff;
    padding: 10px 0;
    padding-left: 30px;
    font-size: 18px;
}

.custom-list ul li::before {
    position: absolute;
    content: '\f178';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 12px;
    left: 0;
    color: #fff;
    font-size: 18px;
}

/* Overlay Shape */
.overlay-shape .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.overlay-shape .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/* =======================================================================
        Home Page
========================================================================== */

/*========================================
 - Main Header 
========================================== */
.main-header {
    position: relative;
    z-index: 10;
}

.main-header .header-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 125px;
    background-color: #fff;
    z-index: 1;
}

.main-header .header-logo .logo {
    padding: 20px;
    display: inline-block;
}

.main-header .header-menu {
    position: relative;
/*     border-bottom: 2px solid var(--border-color); */

}

.main-header .header-menu .navbar {
    padding: 0;
}

.main-header .header-menu .navbar-brand {
    position: relative;
    padding: 0 20px;
}

/* .main-header .header-menu .navbar-nav {
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
}
 */
.main-header .header-menu .navbar .nav-link {
    position: relative;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 40px 30px;
    display: block;
    background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-color) 50%, #fff 50%);
    background: linear-gradient(to right, var(--primary-color), var(--primary-color) 50%, #fff 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.main-header .header-menu .navbar .nav-link:hover {
    background-position: 0 100%;
    border-color: var(--primary-color);
}

.main-header .header-menu .navbar .nav-link:hover .sub-arrow {
    color: var(--primary-color);
}

.main-header .header-menu .navbar .nav-link.active {
    background-position: 0%;
}

.main-header .navbar .navbar-nav .nav-item .sub-arrow {
    color: #fff;
    position: absolute;
    top: 40px;
    right: 6px;
}

.main-header .navbar .navbar-nav .nav-link.active+.sub-arrow {
    color: var(--primary-color);
}

.main-header .navbar .navbar-nav .nav-item:hover .sub-arrow {
    color: var(--primary-color);
}

.main-header .navbar .navbar-nav .dropdown-menu {
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border: 1px solid var(--border-color);
    background-color: var(--theme-bg);
    border-radius: 0px;
    margin-top: 0;
    padding: 0;
}

.main-header .navbar .navbar-nav .dropdown-menu::after {
    content: '';
    width: 13px;
    height: 13px;
    background: var(--theme-bg);
    position: absolute;
    top: -6px;
    left: 16px;
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.main-header .navbar .navbar-nav .dropdown-menu li {
    position: relative;
    color: #fff;
}

.main-header .navbar .navbar-nav .dropdown-menu li a {
    color: #fff;
}

.main-header .navbar .navbar-nav .dropdown-menu li:hover:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 3px;
    background: var(--primary-color);
    left: 0px;
    top: 12px;
}

.main-header .navbar .navbar-nav .dropdown-menu li:hover .dropdown-item {
    padding-left: 24px;
    background-color: var(--theme-bg);
}

.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}


.main-header .navbar .navbar-nav .dropdown-menu.sub-menu {
    margin-top: 0;
}

.main-header .navbar .navbar-nav .dropdown-menu.sub-menu::after {
    display: none;
}

.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item.active,
.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--primary-color);
}

.main-header .navbar-toggler:focus {
    box-shadow: none;
}

.main-header .navbar-toggler {
    border-color: var(--border-color);
}

.main-header .navbar-toggler-icon {
    width: 1.5em;
    height: 2em;
    filter: brightness(0) invert(1);
}

.main-header .offcanvas {
    background-color: var(--theme-bg);
}

.main-header .offcanvas.show .navbar-nav {
    border: 0;
}

.main-header .offcanvas-header .btn-close {
    opacity: 1;
    width: 2em;
    height: 2em;
    filter: brightness(0) invert(1);
}

.main-header .navbar .offcanvas.show .navbar-nav .nav-item .sub-arrow {
    color: #fff;
}

.main-header .navbar .offcanvas.show .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    display: inline-block;
}

.main-header .offcanvas.show .dropdown-toggle::after {
    float: right;
}

.main-header .navbar .offcanvas.show .navbar-nav .nav-item .sub-arrow {
    top: 12px;
    width: 20px;
    height: 20px;
    line-height: 42px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

.main-header .navbar .offcanvas.show .navbar-nav .dropdown-menu {
    box-shadow: none;
}

.main-header .navbar .offcanvas.show .navbar-nav .dropdown-menu::after {
    display: none;
}

.main-header .header-btn {
    padding: 28px 28px;
    display: flex;
    gap: 20px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .main-header .header-menu {
        border-bottom: 1px solid var(--border-color);
    }

    .main-header .navbar-brand img {
        width: 120px;
    }

    .main-header .header-menu .navbar {
        padding: 5px 0;
    }

    .main-header .header-menu .navbar-nav {
        border: none;
    }

    .main-header .header-btn {
        padding: 20px 0 0 0;
    }
}

/* =================================
 - Banner Section 
==================================== */
.banner-section {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-section .banner-img {
    margin-top: 50px;
}

/* =================================
 - Partner Section 
==================================== */
.partner-section {
    position: relative;
}

.partner-section .partner-item {
    position: relative;
}

.partner-section .partner-item img {
    width: 180px;
    height: 50px;
    object-fit: contain;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* =================================
 - Feature Section
==================================== */
.features-section {
    position: relative;
}

.features-section .features-item {
    position: relative;
    padding: 40px 20px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.features-section::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    top: 153px;
    left: 0px;
}

.features-section::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
     bottom: 60px;
    left: 0px;
}

.features-section .features-item h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
    .features-section .features-item {
        border: none;
    }

    .features-section::before {
        top: 28%;
    }

}

@media screen and (max-width: 768px) {
    .features-section .features-item {
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .features-section::before,
    .features-section::after {
        display: none;
    }
}

/* =================================
 - Product Section
==================================== */
.product-section {
    position: relative;
}

.product-section .owl-carousel {
    position: relative;
}

.product-section .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.product-section .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    height: 100%;
}

.product-section .product-item {
    position: relative;
    border: 1px solid var(--border-color);
    margin: 0 2px;
    padding: 20px;
    background-color: #1c1d20;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
}

.product-section .product-item .product-content .example-text span {
    font-weight: 300;
    opacity: 0.6;
}

@media screen and (max-width: 1024px) {
    .product-section .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
}

/* ====================================
 - Account Type Section
======================================= */
.account-type-section {
    position: relative;
}

.account-type-section .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.account-type-section .account-item {
    position: relative;
    margin: 0 2px;
    padding: 20px 20px;
    border: 1px solid #2B3B46;
    border-radius: 10px;
    height: 100%;
}

/* ====================================
- Platform Section
======================================= */
.platform-section {
    position: relative;
}

.platform-section .content-box {
    position: relative;
    padding: 30px 40px;
    border: 1px solid var(--border-color);
    background: radial-gradient(closest-side at 50% 50%, #343434 0%, #34343400 100%) 0% 0% no-repeat;
    margin-bottom: 20px;
}

/* ===============================
- Join Us Section 
================================== */
.join-us-section {
    position: relative;
}

.join-us-section .join-us-item {
    position: relative;
    padding: 40px 20px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.join-us-section .join-us-item h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.join-us-section::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    top: 38.5%;
    left: 0px;
}

.join-us-section::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    bottom: 15%;
    left: 0px;
}

@media screen and (max-width: 1024px) {
    .join-us-section::before {
        top: 41%;
    }

    .join-us-section::after {
        bottom: 13%;
    }
}

@media screen and (max-width: 768px) {
    .join-us-section .join-us-item {
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .join-us-section::before,
    .join-us-section::after {
        display: none;
    }
}

/* ===============================
- Testimonial Section
================================== */
.testimonial-section {
    position: relative;
}

.testimonial-section .testimonial-carousel-container::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    top: 26.5%;
    left: 0px;
}

.testimonial-section .testimonial-carousel-container::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    bottom: 12%;
    left: 0px;
}

.testimonial-section .testimonial-carousel-container {
    border-right: 1px solid var(--border-color);
}

.testimonial-section .testimonial-list {
    position: relative;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.testimonial-section .testimonial-item {
    position: relative;
    padding: 40px 50px;

}

.testimonial-section .testimonial-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.testimonial-section .navigation-arrows {
    position: relative;
}

/* .testimonial-section .navigation-arrows::before{
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    top: 37.5%;
    left: 0px;
} */
.testimonial-section .navigation-arrows .my-prev-button,
.testimonial-section .navigation-arrows .my-next-button {
    border-top: 1px solid var(--border-color);
    margin-bottom: 0;
    padding: 12px 20px;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .testimonial-section .testimonial-carousel-container::before {
        top: 25%;
    }

}

@media screen and (max-width: 768px) {
    .testimonial-section .testimonial-carousel-container {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        margin-top: 20px;
    }

    .testimonial-section .testimonial-item {
        padding: 30px;
    }

    .testimonial-section .testimonial-carousel-container::before,
    .testimonial-section .testimonial-carousel-container::after {
        display: none;
    }

    .testimonial-section .navigation-arrows {
        border: none;
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }
}

/* ===============================
- Blog Section
================================== */
.blog-section {
    position: relative;
}

.blog-section .owl-carousel .owl-stage {
    display: flex;
    height: 100%;
}

.blog-section .owl-nav button.owl-prev,
.blog-section .owl-nav button.owl-next {
    position: absolute;
    bottom: -70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-section .owl-nav button.owl-prev {
    left: 40%;
}

.blog-section .owl-nav button.owl-next {
    right: 40%;
}

.blog-section .owl-nav button.owl-prev:hover,
.blog-section .owl-nav button.owl-next:hover {
    background-color: transparent;
}

.blog-section .blog-item {
    position: relative;
    margin: 0 2px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-section .blog-item .content {
    position: relative;
    padding: 20px 40px;
}

.blog-section .blog-item .content .read-more {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-section .blog-item .content .read-more:hover {
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .blog-section .owl-nav button.owl-prev {
        left: 10%;
    }

    .blog-section .owl-nav button.owl-next {
        right: 10%;
    }
}

/* ===============================
- CTA Section
================================== */
.cta-section {
    position: relative;
    /* background:
        linear-gradient(#555, #555) top,
        linear-gradient(#555, #555) bottom;
    background-size: 100% 1px;
    background-repeat: no-repeat; */
}

.cta-section .title-section {

    padding: 80px 20px;
}

.cta-section::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    top: 12%;
    left: 0px;
}

.cta-section::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100vw;
    background-color: var(--border-color);
    bottom: 18%;
    left: 0px;
}

@media screen and (max-width: 768px) {
    .cta-section .title-section {
        border: none;
    }

    .cta-section::before {
        top: 11%;
    }

    .cta-section::after {
        bottom: 18%;
    }

    /* .cta-section::before,
    .cta-section::after {
        display: none;
    } */

}

/* ===============================
- Deposit Section
================================== */
.deposit-section {
    position: relative;
}

.deposit-section .deposit-items {
    counter-reset: test 0;
    position: relative;
}

.deposit-section .deposit-items ul li {
    position: relative;
    list-style: none;
    float: left;
    width: 33.3333%;
    padding: 0 40px 40px 40px;
    text-align: center;
}

.deposit-section .deposit-items ul li:before {
    counter-increment: test;
    content: counter(test);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 10px auto;
    background: #1D3647;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.deposit-section .deposit-items ul li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #1D3647;
    top: 25px;
    left: -50%;
    z-index: -999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.deposit-section .deposit-items ul li:first-child:after {
    content: none;
}

@media screen and (max-width: 768px) {
    .deposit-section .deposit-items ul li {
        float: none;
        width: 100%;
    }

    .deposit-section .deposit-items ul li:after {
        content: none;
    }

}

/* ===============================
- Footer Section
================================== */
.footer-section {
    position: relative;
}

/* Footer Top */
.footer-section .footer-top {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.footer-section .footer-top .footer-content .contact-info {
    padding: 30px 0;
}

.footer-section .footer-top .footer-content .contact-info .icon span {
    font-size: 20px;
    color: var(--primary-color);
}

.footer-section .footer-top .footer-content .contact-info p a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section .footer-top .footer-content .footer-title h5 {
    font-size: 18px;
    padding: 10px 0 10px 12px;
}

.footer-section .footer-top .footer-content .footer-widget-list ul li a {
    color: #aaaaab;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-section .footer-top .footer-content .footer-widget-list ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-section .footer-top .footer-content .footer-widget-list ul li a i {
    font-size: 12px;
    margin-right: 8px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-section .footer-top .footer-content .footer-widget-list ul li a:hover i {
    opacity: 1;
}

.footer-section .footer-top .header-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
}

.footer-section .footer-top .header-social a {
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.footer-section .footer-top .header-social a:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

/* Footer Middle */
.footer-section .footer-middle {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.footer-section .footer-middle img {
    padding: 10px 10px;
}

.footer-section .footer-middle h6 {
    line-height: 40px;
    margin-bottom: 0;
}

/* Footer Copyrights */
.footer-section .footer-copyrights {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.footer-section .footer-copyrights p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-section .footer-copyrights ul li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding-left: 12px;
    margin-left: 10px;
}

.footer-section .footer-copyrights ul li a:hover {
    color: var(--primary-color);
}

.footer-section .footer-copyrights .policy-links {
    text-align: right;
}

/* Footer Bottom */
.footer-section .footer-bottom {
    position: relative;
}

.footer-section .footer-bottom h5 {
    color: #CC0000;
    text-transform: uppercase;
    padding: 10px 0;
}

.footer-section .footer-bottom h5.lower {
    text-transform: capitalize;
}

.footer-section .footer-bottom p {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .footer-section .footer-copyrights .policy-links {
        text-align: center;
    }

    .footer-section .footer-copyrights p {
        text-align: center;
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .footer-section .footer-top .header-social {
        display: block;
        text-align: center;
    }

    .footer-section .footer-top .header-social a {
        margin-left: 5px;
        margin-top: 15px;
    }

    .footer-section .footer-middle {
        text-align: center;
    }

    .footer-section .footer-copyrights {
        text-align: center;
    }

    .footer-section .footer-copyrights ul li {
        margin-left: 0;
        padding: 0 8px;
    }

    .footer-section .footer-bottom p {
        font-size: 14px;
    }
}

/*========================== 
- Breadcrumb Section 
============================*/
.breadcrumb-section {
    position: relative;
}

.breadcrumb-section .breadcrumb-content .sub-title {
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.breadcrumb-section .breadcrumb-content p {
    font-size: 18px;
}

/* =====================================================
      About page 
======================================================== */

/* ===============================
- About Main Section 
 ===============================*/

.about-main-section {
    position: relative;
    ;
}

.about-main-section .about-main-left img {
    width: 100%;
    border-radius: 24px;
}

.about-main-section .about-main-right h2 {
    font-size: 40px;
}

.about-main-section .about-main-right p {
    font-size: 20px;
    line-height: 30px;
}

/* ===============================
 - Mission Vision Section
  ================================= */
.mission-vision-section {
    position: relative;
}

.mission-vision-section .content-box {
    position: relative;
    background-color: #343434;
    border-radius: 38px;
    height: 100%;
}

.mission-vision-section .content-box .img-box {
    position: relative;
    border-radius: 38px 38px 0 0;
    overflow: hidden;
}

.mission-vision-section .content-box .img-box img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.mission-vision-section .content-box .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    transform: skewX(-25deg);
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.mission-vision-section .content-box:hover .img-box::before {
    left: 125%;
}

.mission-vision-section .content-box .text-content {
    padding: 40px 30px;
    text-align: center;
}

.mission-vision-section .content-box .text-content h5 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* =============================
- Timeline Section
=============================== */
.timeline-section {
    position: relative;
}

.timeline-section .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.timeline-section::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #707070;
}

.timeline-section .timeline-item {
    position: relative;
    padding: 20px 40px;
    text-align: center;
    margin-top: 100px;
}

.timeline-section .timeline-item::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 2px solid #707070;
    border-radius: 50%;
    background-color: #343434;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.timeline-section .timeline-item:hover::after {
    border-color: var(--primary-color);
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .timeline-section .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    .timeline-section .timeline-item {
        margin-top: 100px;
    }
}

@media screen and (max-width: 576px) {
    .timeline-section .timeline-item {
        margin-top: 62px;
    }
}

/* ===============================
- Core Value Section 
 =================================*/

.core-value-section {
    position: relative;
}

.core-value-section .item-box {
    padding: 40px;
    border: 1px solid var(--border-color);
    background-color: #1f1f21;
    text-align: center;
    height: 100%;
}

.core-value-section .item-box img {
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.core-value-section .item-box:hover img {
    transform: rotateY(180deg);
}

.core-value-section .item-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .core-value-section .item-box {
        margin-bottom: 20px;
    }
}

/* =================================
 - Team Section
  =================================== */
.team-section {
    position: relative;
}

.team-section .team-info {
    padding: 40px;
    border: 1px solid var(--border-color);
    background-color: #1f1f21;
    text-align: center;
    height: 100%;
}

.team-section .team-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-section .team-info h4 {
    margin-bottom: 15px;
}

.team-section .team-info p {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .team-section .team-info img {
        width: 80px;
        height: 80px;
    }
}

/* =====================================================
      Regulations page 
======================================================== */

/* ===============================
- Regulations Main Section 
 ===============================*/
.regulations-main-section {
    position: relative;
}

.regulations-main-section .main-right {
    padding-left: 20px;
}

.regulations-main-section .main-left img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 20px;
}

/* ===============================
- License Section
 ================================= */
.license-section {
    position: relative;
    /* background: radial-gradient(closest-side at center, #343434 0%, #34343400 100%); */
    background-color: rgb(52 52 52 / 47%);
    margin: 20px;
}

.license-section .license-item img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .license-section {
        margin: 0;
    }
}

/* ===============================
- Document Section
================================== */
.documents-section {
    position: relative;
}

.documents-section .item .document-title {
    padding: 20px 0;
}

/* =====================================================
      Account Types page 
======================================================== */

/* ===============================
- Account Type Tab Section 
 ===============================*/
.account-tab-section {
    position: relative;
}

.account-tab-section .account-tab-wrapper .nav-tabs {
    background-color: rgb(255 255 255 / 20%);
    border-radius: 30px;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0%);
}

.account-tab-section .account-tab-wrapper .nav-tabs .nav-link {
    font-family: "Unbounded", sans-serif;
    color: #fff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.account-tab-section .account-tab-wrapper .nav-tabs .nav-link:hover,
.account-tab-section .account-tab-wrapper .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.account-tab-section .account-tab-wrapper .account-tab-content {
    position: relative;
}

.account-tab-section .account-tab-wrapper .account-tab-content .title-section {
    margin-bottom: 50px;
}

.account-tab-section .account-tab-wrapper .account-tab-content .title-section .sub-title {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
}

.account-tab-section .account-tab-wrapper .account-tab-content .account-tab-text h4 {
    margin-bottom: 15px;
}

.account-tab-section .account-tab-wrapper .account-tab-content img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
    .account-tab-section .account-tab-wrapper .nav-tabs li {
        width: 100%;
        margin-bottom: 5px;
    }

    .account-tab-section .account-tab-wrapper .nav-tabs {
        border-radius: 24px
    }
}

/* =====================================================
      Contact page 
======================================================== */

/* ===============================
- Contact Info Section 
 ===============================*/
.contact-info-section {
    position: relative;
}

.contact-info-section .contact-info-wrapper {
    background-color: rgb(52 52 52 / 47%);
    padding: 60px;
}

.contact-info-section .contact-info-wrapper .contact-info-content {
    margin-bottom: 30px;
}

.contact-info-section .contact-info-wrapper .contact-info-content h5 {
    margin-bottom: 10px;
}

.contact-info-section .contact-info-wrapper .contact-info-content h5 span {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-info-section .contact-info-wrapper .contact-info-content p span {
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
}

.contact-info-section .contact-info-wrapper .contact-info-content p a:hover {
    color: var(--primary-color);
}

.contact-info-section .contact-info-wrapper .contact-form .form-control {
    background-color: rgb(52 52 52 / 0%);
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    border-radius: 0;
    padding: 15px 0;
}

.contact-info-section .contact-info-wrapper .contact-form input::placeholder,
.contact-info-section .contact-info-wrapper .contact-form textarea::placeholder {
    color: #fff !important;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .contact-info-section .contact-info-wrapper {
        padding: 40px;
    }
}


/* =====================================================
    Product Inner page 
======================================================== */

/* ===============================
- Why Choose Section
 ===============================*/
.why-choose-section {
    position: relative;
}

.why-choose-section .item-wrapper {
    background-color: rgb(52 52 52 / 47%);
    padding: 60px 40px;
}

.why-choose-section .item-wrapper .content-box {
    padding: 30px;
    text-align: center;
    background: #222224;
    border: 1px solid #2B3B46;
    border-radius: 10px;
    height: 100%;
}

.why-choose-section .item-wrapper .content-box img {
    margin-bottom: 15px;
}

/* =======================================
 - Product Detail Section
========================================== */
.product-detail-section {
    position: relative;
    background-color: #0F0F0F;
}

/* =======================================
 - FAQ Section
========================================== */

.faq-section {
    position: relative;
}

.faq-section .accordion-item {
    border: 0;
    border-bottom: 1px solid #5E5E5E;
    background-color: #17181A;
    border-radius: 0;
    padding: 20px 0;
    margin-bottom: 10px;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button {
    color: #fff;
    background-color: #17181A;
    box-shadow: none;
    font-size: 20px;
    font-weight: 400;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: #111;
    background-image: none;
    content: '\f077';
    font-weight: 200;
    font-family: 'FontAwesome';
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
}

.faq-section .accordion-button.collapsed::after {
    color: #111;
    background-image: none;
    content: '\f077';
    font-family: 'FontAwesome';
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 20%);
}

.faq-section .accordion-body {
    padding: 15px 0px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

/* =======================================
 - Privacy-Policy-Section
========================================== */

.privacy-policy-section {
    position: relative;
}

.privacy-policy-section .content-box  p {
    margin-bottom: 20px;
}

.privacy-policy-section .content-box  h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.privacy-policy-section .content-box ul {
    margin-bottom: 20px;
}



/* =======================================
 - Blog-Section
========================================== */

.blog-section {
    position: relative;
    background-color: var(--color-lite-white);
}

.blog-section .title-area {
    padding-bottom: 60px;
}

.blog-section .blog-box {
    position: relative;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-section .blog-box .blog-img {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
    z-index: 0;
}

.blog-section .blog-box .blog-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e32e2ebb;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
}

.blog-section .blog-box .blog-img img {
    border-radius: 10px;
    display: block;
    transition: transform 0.7s ease-in-out;
    position: relative;
    z-index: 0;
}

.blog-section .blog-box:hover .blog-img img {
    transform: scale(1.1);
}

.blog-section .blog-box:hover .blog-img::before {
    opacity: 1;
}

.blog-section .blog-box .content h2 a {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    font-size: 30px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
    background-color:var(--primary-color);
    z-index: 1;
    padding: 23px 0px 10px 0px;
}

.blog-section .blog-box .content h2 span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 5px;
}

.blog-section .content {
    padding: 35px 20px;
    position: relative;
}

.blog-section .content .title h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-section .content .know-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.blog-section .content .know-more::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: -100%;
    transition: left 0.4s ease-in-out;
}

.blog-section .content .know-more i {
    transition: transform 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.blog-section .content .know-more:hover {
    color: #fff;
    transform: scale(1.05);
}

.blog-section .content .know-more:hover::after {
    left: 0;
}

.blog-section .content .know-more:hover i {
    padding-left: 5px;
    transform: rotate(360deg);
    color: #fff;
}


.blog-section .blog-box:hover .content .title h5 a {
    color: #fff;
}

/* =======================================
 - Blog-Detail-Section
========================================== */

.blog-detail-section{
    position: relative;
}
.blog-detail-section  img{
    border-radius: 20px;
    margin-bottom: 20px;
}
.blog-detail-section h2{
    color: var(--primary-color);
    margin-bottom: 20px;
}
.blog-detail-section .blog-detail-content h3{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}
.blog-detail-section .blog-detail-content.custom-list ul{
    margin-bottom: 20px
}
.blog-detail-section  .blog-card {
    padding: 30px 10px;
    border: 1px solid #b7afaf;
  }

 .blog-detail-section  .blog-card  .related-posts-categories .post-related-images img{
    border-radius: 50%;
 }
   .blog-detail-section  .blog-card h6{
    margin-bottom: 20px;
  }
     .blog-detail-section  .blog-card p a:hover{
       color: var(--primary-color);
     }



  /* ===============================
- Why Choose Section
 ===============================*/
 .why-choose-us-section {
    position: relative;
    background-color: rgb(52 52 52 / 47%);
}

 .why-choose-us-section .item-wrapper {
    padding: 60px 40px;
    z-index: 2;
}

 .why-choose-us-section .item-wrapper .content-box {
    position: relative;
    padding: 30px;
    background: #222224;
    border: 1px solid #2B3B46;
    border-radius: 10px;
    height: 100%;
    z-index: 1;
}
.why-choose-us-section .item-wrapper .content-box::before{
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    pointer-events: none;
    transition: all 0.5s linear;
    z-index: -1;
}
.why-choose-us-section .item-wrapper .content-box:hover::before{
    width: 100%;
}
.why-choose-us-section .item-wrapper .content-box:hover img{
    filter: brightness(0) invert(1);
}

 .why-choose-us-section .item-wrapper .content-box img {
    margin-bottom: 15px;    
}

  /* ===============================
          payment-section 
 ===============================*/

 .payment-section .clients-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

 .payment-section .single-client {
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-image: url(../images/polygon-shape.png);
    width: 196px;
    height: 222px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

 .payment-section .single-client::before {
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-image: url(../images/polygon-shape.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: all 0.3s ease-in-out;
}

 .payment-section .single-client .single-client-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.payment-section .single-client:hover::before{
    filter: grayscale(1) brightness(1.8);
}
.payment-section .single-client:hover .single-client-inner .single-client-img img{
    filter: grayscale(0); 
}

 .payment-section .single-client .single-client-inner .single-client-number span {
    background-color: #222;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #BBBBBB;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}
.payment-section .single-client:hover .single-client-inner .single-client-number span {
    background-color: var(--primary-color);
    color: #fff;
}
.payment-section .single-client .single-client-inner .single-client-img img{
    filter: grayscale(1) invert(1) opacity(.5);
}