:root {
    --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: 16px;
}
.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;
}
/* Contact Form */
.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-form input::placeholder,
.contact-form textarea::placeholder {
    color: #fff !important;
    font-weight: 400;
}
/* 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 25px;
    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: 20px 20px;
    display: flex;
    gap: 20px;
    text-align: right;
}
.main-header .header-btn .primary-btn {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

@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 {
    padding: 20px 0;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.banner-section .banner-img img {
    width: 100%;
    position: relative;
    animation: moveDown 4s linear infinite;
}

@keyframes moveDown {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(-15px);
    }
}
/* =================================
 - 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-img {
    position: relative;
    overflow: hidden;
}
.product-section .product-item img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.product-section .product-item:hover img {
    transform: scale(1.1);
}

.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 40px;
    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;
    transition: all 0.3s ease-in-out;
}
.testimonial-section .navigation-arrows  .my-prev-button:hover,
.testimonial-section .navigation-arrows  .my-next-button:hover {
    color: var(--primary-color);
}
@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{
    color: var(--primary-color);
    letter-spacing: 2px;
}

.blog-section .blog-item {
    position: relative;
    overflow: hidden;
}
.blog-section .blog-item img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-item:hover img {
    transform: scale(1.1);
}

@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:hover:before {
    background-color: var(--primary-color);
}

.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;
    transition: all 0.5s ease-in-out;
 }
 .team-section .team-info h4{
    margin-bottom: 15px;
 }
 .team-section .team-info p{
    margin-bottom: 10px;
 }
 .team-section .team-info:hover img {
    transform: rotateY(180deg);
 }
 @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 {
    position: relative;
}
.license-section .license-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  .license-section .license-item .overlay img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
  }
  .license-section .license-item:hover .overlay {
    opacity: 1;
  }
.license-section .license-item img{
    width: 100%;
    border-radius: 10px;
}
@media screen and (max-width: 768px) {
    .license-section {
        margin: 0;
    }
}
/* ===============================
- Document Section
================================== */
.documents-section {
    position: relative;
}
.documents-section .item .image-box {
    position: relative;
}
.documents-section .item .image-box img{
    width: 100%;
    border-radius: 20px;
}
.documents-section .item .image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
  }
  .documents-section .item .image-box .overlay img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
  }
  .documents-section .item .image-box:hover .overlay {
    opacity: 1;
  }
.documents-section .item .document-title {
    padding: 20px 0;
}

 /* =====================================================
      Account Types page 
======================================================== */
 .pricing-section {
    position: relative;
}
.pricing-section .table-wrapper {
  overflow-x: auto;
}
.pricing-section .table-wrapper table {
  border-collapse: separate;
  border-spacing: 20px 0;
}
 
.pricing-section .table-wrapper table th ,
.pricing-section .table-wrapper table td {
  width: 20%;
  min-width: 150px;
}
.pricing-section .table-wrapper table th {
    border: 1px solid rgb(252 252 252 / 31%);
    border-radius: 20px 20px 0 0;
}
 
.pricing-section .table-wrapper table th:first-child {
    border: none;
}
.pricing-section .table-wrapper table th .heading {
  padding: 30px 10px;
  border-radius: 20px 20px 0 0;
text-align: center;
}
.pricing-section .table-wrapper table th .heading h5 {
    color: var(--primary-color);
    margin-bottom: 0;
}
.pricing-section .table-wrapper table tr:nth-child(odd) {
  background-color: #17181A;
}
 
.pricing-section .table-wrapper table tr:nth-child(even) {
  background: #232222;
}
 
.pricing-section .table-wrapper table th:nth-child(odd) .heading {
  background-color: #3d3d3d;
}
 
.pricing-section .table-wrapper table th:nth-child(even) .heading {
  background: #232222;
}
 
.pricing-section .table-wrapper table th .info {
  position: relative;
  padding: 20px 10px;
  height: 110px;
  text-align: center;
}
.pricing-section .table-wrapper table th .info p{
  font-size: 14px;
  margin-bottom: 0;
}
 
.pricing-section .table-wrapper table td {
  padding: 20px 15px;
border: 1px solid rgb(252 252 252 / 31%);
text-align: center;
}
 
.pricing-section .table-wrapper table td:first-child {
  font-size: 1rem;
  text-align: left;
}
/*.pricing-section .pricing-titles{
      position: relative;
    padding: 154px 0;
}
.pricing-section .pricing-titles ul li {
    padding: 20px 10px;
    background-color: #232222;
    border-bottom: 1px solid var(--border-color);
}
.pricing-section .pricing-titles ul li:nth-child(2n) {
    background-color: transparent;
}

.pricing-section .pricing-wrapper {
    overflow-x: hidden;
}
.pricing-section .pricing-item {
    position: relative;
    background-color: #19191c;
    border: 1px solid #2B3B46;
    border-radius: 30px;
    z-index: 2;
}
.pricing-section .pricing-item .pricing-header {
    padding: 30px 10px;
    color: #fff;
    text-align: center;
}
.pricing-section .pricing-item .pricing-header h5 {
    text-transform: capitalize;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}
.pricing-section .pricing-item .pricing-header h6 {
    margin-bottom: 15px;
    font-size: 14px;
}
.pricing-section .pricing-item .pricing-header h6 span {
    position: relative;
    font-size: 38px;
    color: var(--primary-color);
    margin-right: 10px;
}
.pricing-section .pricing-item .pricing-header h6 span::after {
    content: "$";
    position: absolute;
    right: -15px;
    top: 0;
    font-size: 16px;
    font-weight: 400;

}
.pricing-section .pricing-item .pricing-header .primary-btn {
    font-size: 12px;
    padding: 10px 10px;
}
.pricing-section .pricing-item .pricing-body {
    position: relative;
    padding: 20px 20px;
    border-radius: 0 0 30px 30px;
    background-color: #232222;
    text-align: center;
}
.pricing-section .pricing-item .pricing-body ul {
    margin-bottom: 20px;
}
.pricing-section .pricing-item .pricing-body ul li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.pricing-section .pricing-item .pricing-body ul li:last-child {
    border-bottom: none;
}
.pricing-section .pricing-item .pricing-body ul li .title {
   position: relative;
}
.pricing-section .pricing-item .pricing-body ul li .title::before {
    font-family: "Font Awesome 5 Free";
    content: "\f192";
    font-weight: 900;
    color: #f58282;
    margin-right: 10px;
} */
/* Tab Mob Concept */
.pricing-section .pricing-mob-tab-wrapper .nav-tabs {
    background-color: rgb(255 255 255 / 20%);
    border-radius: 30px;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0%);
 }
 .pricing-section .pricing-mob-tab-wrapper .nav-tabs .nav-link {
    font-family: "Unbounded", sans-serif;
    color: #fff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
 }
 .pricing-section .pricing-mob-tab-wrapper .nav-tabs .nav-link:hover,
 .pricing-section .pricing-mob-tab-wrapper .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
 }
.pricing-section .pricing-item .pricing-body.tab-body ul li{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .pricing-section .pricing-titles {
        padding: 175px 0;
    }
    .pricing-section .pricing-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; 
    }
}
/* =====================================================
      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);
}
@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;
}
/* =======================================
- Process Section
========================================== */

.process-section {
    position: relative;
}

.process-section .process-items {
    position: relative;
    color: #fff;
}

.process-section .process-items .process-icon-box {
    position: relative;
    background: #222224;
    border: 1px solid #2B3B46;
    padding: 25px;
    transition: all 0.1s ease-in-out;
    height: 100%;
    z-index: 1;
}

.process-section .process-items .process-icon-box:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-color: #222224;
    left: 30px;
    transform: rotate(45deg);
    z-index: 10;
}

.process-section .col-md-4:nth-child(odd) .process-items .process-icon-box:before {
    bottom: -15px;
    border-right: 1px solid #2B3B46;
    border-bottom: 1px solid #2B3B46;
}

.process-section .col-md-4:nth-child(even) .process-items .process-icon-box:before {
    top: -15px;
    border-left: 1px solid #2B3B46;
    border-top: 1px solid #2B3B46;
}

.process-section .process-items .process-icon-box .process-icon {
    transition: all 0.8s ease-in-out;
}

.process-section .process-items .process-icon-box .process-icon img {
    width: 70px;
    filter: invert(40%) brightness(150%) contrast(150%);
    margin-bottom: 20px;
}
.process-section .process-items:hover .process-icon-box .process-icon img {
    filter: invert(100%) brightness(200%) contrast(200%);
}
.process-section .process-icon-box .process-content .process-title h3 {
    margin-bottom: 10px;
    font-weight: 600;
}
.process-section .process-items .number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-left: 20px;
}
.process-section .process-items:hover .number-circle {
    color: #fff;
    background-color: var(--border-color);
}
.process-section .col-md-4:nth-child(odd) .number-circle {
    margin-top: 30px;
}

.process-section .col-md-4:nth-child(even) .number-circle {
    margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
    .process-section .col-md-4:nth-child(odd) .number-circle,
    .process-section .col-md-4:nth-child(even) .number-circle {
        margin-top: 40px;
    }
    .process-section .col-md-4:nth-child(even) .process-items .process-icon-box:before {
        top: auto;
        bottom: -15px;
        border: none;
        border-right: 1px solid #2B3B46;
        border-bottom: 1px solid #2B3B46;
    }
    
}

/* =======================================
 - 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 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

/* ========================================
       Partner page
========================================= */
/* =======================================
- Introducting Broker SubPage - IB
========================================== */

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

.ib-main-section .ib-image img {
    width: 100%;
}
/* ========================================
- Benefits SubPage
========================================= */
.benefits-section {
    position: relative;
}
.benefits-section .benefits-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}
.benefits-section .benefits-content ul li::before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: var(--primary-color);
    left: 0;
    top: 0;
}
/* =======================================
- Affiliate Program SubPage
========================================== */
.affiliate-main-section {
    position: relative;
}
.affiliate-main-section .image-box{
    position: relative;
    overflow: hidden;
}
.affiliate-main-section .image-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;
}
.affiliate-main-section .image-box img{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.affiliate-main-section .image-box:hover::before {
    left: 125%;
  }
.affiliate-main-section .content-box h4 {
    margin-bottom: 20px;
}

/* ========================================
       Promotion page
========================================= */
.promotion-main-section {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    z-index: 1;
}
.promotion-main-section:before{
    position: absolute;
    content: "";
    inset: 0;
    background-color: #000;
    opacity: 0.8;
    z-index: -1;
}
.promotion-main-section .contact-form {
    background: #222224;
    border: 1px solid #2B3B46;
    padding: 30px;
    border-radius: 10px;
}
.promotion-main-section .achieve-count h3{
    color: var(--primary-color);
    font-size: 40px;
    letter-spacing: 3px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.promotion-main-section .achieve-count .line-divider {
    width: 150px;
    height: 2px;
    background-color: #f1f1f1;
    border: none;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.promotion-main-section .achieve-count:hover .line-divider {
    width: 120px;
    height: 3px;
    background-color: #fff !important;
}
.promotion-main-section .achieve-count p {
    font-size: 18px;
}
@media screen and (max-width: 576px) {
    .promotion-main-section .achieve-count{
        text-align: center;
    }
    .promotion-main-section .achieve-count .line-divider {
        margin: 0 auto;
    margin-bottom: 15px;
    }
}
/* ========================================
- Participate Section
=========================================== */
.participate-section {
    position: relative;
}
.participate-section .content-item {
    padding: 30px 30px;
    box-shadow: rgb(134 133 133 / 10%) 0px 4px 12px;
    height: 100%;
}
.participate-section .content-item img{
    width: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.participate-section .content-item h5{
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.participate-section .content-item:hover img{
    transform: translateY(-10px);
}

/* ========================================
- Terms and Condition 
=========================================== */
.terms-condition-section {
    position: relative;
}

.terms-condition-section .content-box {
    position: relative;
    padding:80px 80px;
    border-radius: 16px;
    box-shadow: rgb(134 133 133 / 10%) 0px 4px 12px;
    /* z-index: 1;
    overflow: hidden; */
  }
  
  /* .terms-condition-section .content-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      #525252 90deg,
      transparent 180deg,
      #525252 270deg,
      transparent 360deg
    );
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
    border-radius: 20px;
  }
  
  @keyframes rotateBorder {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } */
.terms-condition-section .content-box ul li {
    font-size: 18px;
    margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
    .terms-condition-section .content-box {
        padding: 40px 30px;
    }
}