*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: unset !important; /* Disable default smooth scrolling in Bootstrap */
}

::selection{
    background-color: #e06ba9;
    color: #fff;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Roboto", sans-serif;
}

p, a, button{
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
}

body{
    background: linear-gradient(to bottom, #0a0325 5%, #0d031c, #261a3c);
    background-repeat: no-repeat;
}

/* -------------------------------------------------------------------------------------------------------------------------- */

/* Navbar Start */
nav{
    padding: 0.5rem 2rem !important;
    background-color: transparent;
    backdrop-filter: blur(8px);
    position: absolute !important;
    top: 0;
    width: 100%;
    z-index: 100;
}
.navbar-brand img {
    width: 60px;
    border-radius: 7px;
}
.nav-link {
    margin: 0 1.3rem;
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 700;
    color: #fff;
}
.nav-link:hover,
.nav-link.active {
    color: #f148aa !important;
}
nav .dropdown-menu {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-bottom: 0.7rem;
}
nav .dropdown-menu li a {
    color: #282828;
    padding-bottom: 0;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 600;
}
nav .dropdown-menu li a:hover,
nav .dropdown-menu li a.active{
    background-color: #fff;
    color: #ea40a3;
}
nav .dropdown-item{
    display: flex;
}

.navbar-toggler{
    border: none;
}
.navbar-toggler-icon{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler:focus,
.navbar-toggler:active{
    outline: none;
    box-shadow: none;
}

nav .btn-group-pill{
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    transform: skewX(-22deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
nav .btn-group-pill a{
    transform: skewX(5deg);
    padding: 0.4rem 1.4rem;
    font-weight: 650;
    text-decoration: none;
    font-size: calc(0.55rem + 0.5vw);
    transition: all 0.3s ease;
}
nav .btn-signup{
    background-color: #fff;
    color: #000;
}
nav .btn-signup:hover{
    background-color: #e04497;
    color: #fff;
}
nav .btn-login{
    /* background-color: #fe55b0; */
    background-color: #fd4ab2;
    color: #fff;
}
nav .btn-login:hover{
    /* background-color: #24b3d3; */
    background-color: #2ac7eb;
}

/* Dropdown menu hover effect for screens wider than 768px */
@media (min-width: 768px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    nav .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 991px) {
    nav{
        padding: 0.5rem 0 !important;
        backdrop-filter: blur(0);
    }
    nav:has(.navbar-collapse.show) {
        backdrop-filter: blur(25px);
        transition: all 0.1s ease;
    }
    .navbar-brand img {
        width: 62px;
    }
    .nav-link {
        font-size: calc(0.8rem + 0.5vw);
    }
    nav .navbar-nav{
        margin-top: 1.3rem;
    }
    nav .dropdown-menu {
        padding-bottom: 0.7rem;
    }
    nav .dropdown-menu li a {
        font-size: calc(0.75rem + 0.5vw);
        margin-bottom: 0.5rem;
    }
    nav .dropdown-menu li:last-child a {
        margin-bottom: 0;
    }
    nav .btn-group-pill{
        margin-top: 0.7rem;
        margin-bottom: 1rem;
    }
    nav .btn-group-pill a{
        width: 50%;
        text-align: center;
        font-size: calc(0.75rem + 0.5vw);
    }
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    nav{
        padding: 0.6rem 3rem !important;
    }
    .navbar-brand img {
        width: 70px;
        border-radius: 8px;
    }
    .nav-link {
        margin: 0 1.4rem;
        font-size: calc(0.6rem + 0.5vw);
    }
    nav .dropdown-menu li a {
        font-size: calc(0.53rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    nav{
        padding: 0.7rem 0 !important;
    }
    .navbar-brand img {
        width: 80px;
        border-radius: 10px;
    }
    .nav-link {
        margin: 0 1.4rem;
        font-size: calc(0.65rem + 0.5vw);
    }
    nav .dropdown-menu li a {
        font-size: calc(0.6rem + 0.5vw);
    }
    nav .btn-group-pill a{
        padding: 0.5rem 1.6rem;
        font-size: calc(0.6rem + 0.5vw);
    }
}
/* Navbar End */

/* Banner Start */
.banner{
    position: relative;
}
.banner img{
    width: 100%;
    height: 100vh;
}
.banner .banner-content{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner .banner-content h1{
    color: #000;
    font-size: calc(3.2rem + 0.5vw);
    font-weight: 900;
    background-color: #fff;
    padding: 0.3rem 2rem 0.5rem 2rem;
    border-radius: 50px;
}
.banner .banner-content span{
    color: #de3597;
}

.banner-animated-text{
    margin-top: 2rem;
    height: 65px;
    background-color: #fff;
    padding: 0.3rem 2rem 0.5rem 2rem;
    border-radius: 50px;
}
.banner-animated-text p {
    display: inline-block;
    font-size: calc(2rem + 0.5vw);
    color: #000;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    border-right: 5px solid #000;
    transition: color 0.2s, opacity 0.3s;
    opacity: 1;
    animation: blink-cursor 1s steps(1) infinite;
}
@keyframes blink-cursor {
    0%, 100% { border-color: #000; }
    50% { border-color: transparent; }
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .banner .banner-content h1{
        font-size: calc(3.5rem + 0.5vw);
    }
    .banner-animated-text{
        height: 75px;
        padding: 0.3rem 2rem 0.4rem 2rem;
    }
    .banner-animated-text p {
        font-size: calc(2.3rem + 0.5vw);
        border-right: 7px solid #000;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .banner .banner-content h1{
        font-size: calc(3.8rem + 0.5vw);
        padding: 0.3rem 2.2rem 0.6rem 2.2rem;
        border-radius: 50px;
    }
    .banner-animated-text{
        margin-top: 2.3rem;
        height: 85px;
        padding: 0.4rem 2rem 0.3rem 2rem;
    }
    .banner-animated-text p {
        font-size: calc(2.6rem + 0.5vw);
        border-right: 7px solid #000;
    }
}

/* For small screens */
@media screen and (max-width: 767px){
    .banner img{
        height: auto;
    }
    .banner .banner-content h1{
        font-size: calc(1.2rem + 0.5vw);
        padding: 0.3rem 1.2rem 0.35rem 1.2rem;
        margin-top: 4.5rem;
    }
    .banner-animated-text{
        margin-top: 0.5rem;
        height: 30px;
        padding: 0.2rem 1rem 0.4rem 1rem;
    }
    .banner-animated-text p {
        font-size: calc(1rem + 0.5vw);
        border-right: 3px solid #000;
    }
}
/* Banner End */

/* Features Row Start */
.features-row{
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.features-row #features-canvas{
    /* background: linear-gradient(to right, #24b3d3, #de3597 70%); */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.features-row .feature-card{
    width: 11%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.features-row .feature-card img{
    width: 40px;
    filter: invert(1);
}
.features-row .feature-card p{
    color: #fff;
    margin-top: 1rem;
    font-weight: 800;
    font-size: calc(0.6rem + 0.5vw);
    line-height: normal;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .features-row .feature-card img{
        width: 47px;
    }
    .features-row .feature-card p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 1.2rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .features-row{
        padding: 3.5rem 5%;
    }
    .features-row .feature-card img{
        width: 50px;
    }
    .features-row .feature-card p{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 1.3rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .features-row{
        padding: 2rem 1rem 0.5rem 1rem;
        flex-wrap: wrap;
    }
    .features-row .feature-card{
        width: 33%;
        margin-bottom: 1.7rem;
    }
    .features-row .feature-card img{
        width: 48px;
    }
    .features-row .feature-card p{
        margin-top: 0.7rem;
        font-size: calc(0.8rem + 0.5vw);
    }
}
/* Features Row End */

/* Trading Register Start */
.trading-register{
    padding: 3.5rem 7%;
    display: flex;
    justify-content: space-between;
}
.trading-register-image{
    width: 37%;
}
.trading-register-image img{
    width: 100%;
    border-radius: 10px;
    /* border: 1.5px solid #de3597;
    box-shadow: 5px 5px 0 0 #de3597; */
    /* border: 1.5px solid #362653; */
    box-shadow: 5px 5px 0 0 #3dfd4398;
    filter: invert(1);
    border: 1.5px solid #4dfd3d;
}
.trading-register-content{
    width: 58%;
}
.trading-register-content h2{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #24b3d3, #de3597 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.trading-register-content p{
    /* color: #000; */
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 1rem;
    font-weight: 500;
}
.trading-register-content>div{
    margin-top: 2rem;
}
.trading-register-content>div p{
    margin-top: 0.5rem;
}
.trading-register-content>div p i{
    /* color: #1393af; */
    color: #2ac7eb;
    margin-right: 5px;
}
.trading-register-content button{
    border: none;
    /* background-color: #de3597; */
    background-color: #fd4ab2;
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 2.5rem;
    transition: all 0.2s ease;
}
.trading-register-content button i{
    margin-left: 5px;
}
.trading-register-content button:hover{
    /* background-color: #1393af; */
    background-color: #2ac7eb;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .trading-register{
        padding: 4rem 7%;
    }
    .trading-register-image img{
        /* box-shadow: 6px 6px 0 0 #de3597; */
        box-shadow: 6px 6px 0 0 #3dfd4398;
    }
    .trading-register-content h2{
        font-size: calc(2.5rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.85rem + 0.5vw);
    }
    .trading-register-content>div{
        margin-top: 2.2rem;
    }
    .trading-register-content>div p{
        margin-top: 0.6rem;
    }
    .trading-register-content button{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 2.7rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .trading-register{
        padding: 4.5rem 7%;
    }
    .trading-register-image img{
        /* box-shadow: 8px 8px 0 0 #de3597; */
        box-shadow: 8px 8px 0 0 #3dfd6d98;
    }
    .trading-register-content h2{
        font-size: calc(2.7rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .trading-register-content>div{
        margin-top: 2.4rem;
    }
    .trading-register-content>div p{
        margin-top: 0.7rem;
    }
    .trading-register-content>div p i{
        margin-right: 6px;
    }
    .trading-register-content button{
        font-size: calc(0.95rem + 0.5vw);
        padding: 0.6rem 1.2rem;
        margin-top: 2.8rem;
    }
    .trading-register-content button i{
        margin-left: 6px;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .trading-register{
        padding: 2rem 1rem;
        flex-direction: column;
    }
    .trading-register-image{
        width: 100%;
    }
    .trading-register-image img{
        /* box-shadow: 4px 4px 0 0 #de3597; */
        box-shadow: 4px 4px 0 0 #3dfd4398;
    }
    .trading-register-content{
        width: 100%;
        margin-top: 1.5rem;
    }
    .trading-register-content h2{
        font-size: calc(1.5rem + 0.5vw);
    }
    .trading-register-content p{
        font-size: calc(0.9rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .trading-register-content>div{
        margin-top: 1.2rem;
    }
    .trading-register-content>div p{
        margin-top: 0.3rem;
    }
    .trading-register-content>div p i{
        margin-right: 4px;
    }
    .trading-register-content button{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 1.5rem;
    }
    .trading-register-content button i{
        margin-left: 3px;
    }
}
/* Trading Register End */

/* All Trades Start */
.all-trades{
    padding: 2.5rem 7% 3.5rem 7%;
}
.all-trades h3{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #24b3d3 20%, #de3597 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}
.all-trades p{
    /* color: #000; */
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 0.8rem;
    font-weight: 500;
    text-align: center;
}
.all-trades-card-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.all-trade-card{
    width: 32%;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.4rem;
    min-height: 215px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.153) 0px 3px 6px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease-in;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.all-trade-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../gif/pink-blue-lines.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.all-trade-card:nth-child(even)::before{
    transform: scaleY(-1); /* Flips only the background */
}
/* .all-trade-card:hover{
    background-color: #f4edff;
    background-color: #180c33;
} */
.all-trade-card span{
    font-family: "Roboto", sans-serif;
    font-size: calc(1.5rem + 0.5vw);
    font-weight: 800;
    /* color: #de3597; */
    display: block;
    margin-bottom: 1rem;
    position: relative;
}
.all-trade-card .all-trade-card-content{
    width: max-content;
}
.all-trade-card p{
    text-align: left;
    margin: 0;
    font-size: calc(0.6rem + 0.5vw);
    margin-bottom: 0.5rem;
    position: relative;
}
.all-trade-card p i{
    /* color: #de3597; */
    font-size: calc(0.55rem + 0.5vw);
    margin-right: 3px;
}
.all-trade-card .all-trade-canvas{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: linear-gradient(to right, #24b3d3, #de3597 60%); */
    /* background-color: #362653; */
}
/* .all-trade-card:nth-child(odd) span,
.all-trade-card:nth-child(odd) p,
.all-trade-card:nth-child(odd) p i{
    color: #fff;
} */
/* .all-trade-card:nth-child(odd) span{
    color: #fff;
} */

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .all-trades{
        padding: 3rem 7% 4rem 7%;
    }
    .all-trade-card{
        padding: 1.6rem;
        margin-bottom: 1.55rem;
        min-height: 235px;
    }
    .all-trades h3{
        font-size: calc(2.5rem + 0.5vw);
    }
    .all-trades p{
        font-size: calc(0.85rem + 0.5vw);
    }
    .all-trade-card span{
        font-size: calc(1.6rem + 0.5vw);
    }
    .all-trade-card p{
        font-size: calc(0.65rem + 0.5vw);
        margin-bottom: 0.5rem;
    }
    .all-trade-card p i{
        margin-right: 4px;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .all-trades{
        padding: 3.5rem 7% 4.5rem 7%;
    }
    .all-trade-card{
        padding: 1.8rem;
        margin-bottom: 1.7rem;
        min-height: 255px;
    }
    .all-trades h3{
        font-size: calc(2.7rem + 0.5vw);
    }
    .all-trades p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .all-trade-card span{
        font-size: calc(1.7rem + 0.5vw);
    }
    .all-trade-card p{
        font-size: calc(0.7rem + 0.5vw);
        margin-bottom: 0.5rem;
    }
    .all-trade-card p i{
        margin-right: 5px;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .all-trades{
        padding: 1rem 1rem 2rem 1rem;
    }
    .all-trades h3{
        font-size: calc(1.5rem + 0.5vw);
    }
    .all-trades p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .all-trades-card-row{
        margin-top: 1.5rem;
    }
    .all-trade-card{
        width: 100%;
        margin-bottom: 1rem;
        min-height: 200px;
    }
    .all-trade-card span{
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 0.8rem;
    }
    .all-trade-card p{
        font-size: calc(0.9rem + 0.5vw);
        margin-bottom: 0.4rem;
    }
    .all-trade-card p i{
        font-size: calc(0.85rem + 0.5vw);
    }
}
/* All Trades End */

/* Why Choose Start */
.why-choose{
    padding: 0 7% 3.5rem 7%;
}
.why-choose h4{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #24b3d3 30%, #de3597 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}
.why-choose-card-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.why-choose-card{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background-color: #fff; */
    background: linear-gradient(to right, #1d103c 35%, #362653 80%);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.4rem;
    min-height: 215px;
    /* box-shadow: rgba(0, 0, 0, 0.247) 0px 3px 6px, rgba(0, 0, 0, 0.263) 0px 3px 6px; */
    /* box-shadow: rgba(86, 86, 86, 0.247) 0px 3px 6px, rgba(109, 109, 109, 0.263) 0px 3px 6px; */
    box-shadow: 0 0 6px 3px #fd3dfd98;
    transition: all 0.2s ease-in;
    border: 1px solid #fc3dfd;
}
.why-choose-card:hover{
    background-color: #f4f4f4;
}
.why-choose-card img{
    /* filter: invert(17%) sepia(98%) saturate(6114%) hue-rotate(303deg) brightness(89%) contrast(94%); */
    filter: invert(17%) sepia(98%) saturate(6114%) hue-rotate(303deg) brightness(189%) contrast(94%);
    width: 65px;
}
.why-choose-card span{
    font-family: "Roboto", sans-serif;
    font-size: calc(0.75rem + 0.5vw);
    font-weight: 600;
    /* color: #de3597; */
    color: #c7c7c7;
    display: block;
    margin-top: 1.2rem;
}
.why-choose-card p{
    font-size: calc(0.5rem + 0.5vw);
    margin-top: 0.4rem;
    color: #fff;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .why-choose{
        padding: 0 7% 3.5rem 7%;
    }
    .why-choose h4{
        font-size: calc(2.5rem + 0.5vw);
    }
    .why-choose-card{
        padding: 1.5rem;
        margin-bottom: 1.55rem;
        min-height: 235px;
    }
    .why-choose-card img{
        width: 68px;
    }
    .why-choose-card span{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 1.6rem;
    }
    .why-choose-card p{
        font-size: calc(0.52rem + 0.5vw);
        margin-top: 0.4rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .why-choose{
        padding: 0 7% 3rem 7%;
    }
    .why-choose h4{
        font-size: calc(2.7rem + 0.5vw);
    }
    .why-choose-card{
        padding: 1.5rem;
        margin-bottom: 1.7rem;
        min-height: 255px;
    }
    .why-choose-card img{
        width: 72px;
    }
    .why-choose-card span{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 2rem;
    }
    .why-choose-card p{
        font-size: calc(0.6rem + 0.5vw);
        margin-top: 0.5rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .why-choose{
        padding: 0 1rem 0 1rem;
    }
    .why-choose h4{
        font-size: calc(1.5rem + 0.5vw);
    }
    .why-choose-card-row{
        margin-top: 1.5rem;
    }
    .why-choose-card{
        width: 100%;
        margin-bottom: 1rem;
        min-height: 200px;
    }
    .why-choose-card span{
        font-size: calc(1.2rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .why-choose-card p{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 0.45rem;
    }
}
/* Why Choose End */

/* FAQ Start */
.faq{
    padding: 1rem 15%;
    display: none;
}
.faq h5{
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #24b3d3 30%, #de3597 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}
.faq p{
    /* color: #000; */
    color: #fff;
    font-size: calc(0.8rem + 0.5vw);
    margin-top: 0.8rem;
    font-weight: 500;
    text-align: center;
}
.faq .accordion{
    margin-top: 2rem;
}
.faq .accordion-item{
    margin-bottom: 0.8rem;
    border: none !important;
    background-color: transparent;
}
.faq .accordion-item:last-child{
    margin-bottom: 0;
}
.faq .accordion-button,
.faq .accordion-body {
    /* background-color: #e4e4e4 !important; */
    box-shadow: none;
    border-radius: 7px !important;
    color: #fff;
    font-weight: 600;
}
.faq .accordion-button{
    font-size: calc(0.75rem + 0.5vw);
    background-color: #0b031b !important;
}
.faq .accordion-body{
    margin-top: 0.4rem;
    background-color: #221538;
}
/* .faq .accordion-body p{
    color: #000;
} */
.faq .accordion-button:hover{
    /* background-color: #d1d1d1 !important; */
    background-color: #100527 !important;
}
.faq .accordion-button:not(.collapsed) {
    /* background-color: #c2c2c2 !important; */
    background-color: #0d0421 !important;
}
.faq .accordion-body p{
    font-size: calc(0.65rem + 0.5vw);
    margin: 0;
    text-align: left;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .faq h5{
        font-size: calc(2.5rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.85rem + 0.5vw);
    }
    .faq .accordion-button,
    .faq .accordion-body {
        padding: 1.2rem 1.2rem;
    }
    .faq .accordion-button{
        font-size: calc(0.8rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.75rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .faq h5{
        font-size: calc(2.7rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.95rem + 0.5vw);
    }
    .faq .accordion-button,
    .faq .accordion-body {
        padding: 1.3rem 1.8rem;
    }
    .faq .accordion-button{
        font-size: calc(0.85rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.82rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .faq{
        padding: 0.5rem 1rem;
    }
    .faq h5{
        font-size: calc(1.5rem + 0.5vw);
    }
    .faq p{
        font-size: calc(0.9rem + 0.5vw);
    }
    .faq .accordion{
        margin-top: 1.5rem;
    }
    .faq .accordion-item{
        margin-bottom: 0.7rem;
    }
    .faq .accordion-button{
        font-size: calc(0.9rem + 0.5vw);
    }
    .faq .accordion-body p{
        font-size: calc(0.85rem + 0.5vw);
    }
}
/* FAQ End */

/* Simple Steps Start */
.simple-steps{
    padding: 3rem 7%;
    /* margin-top: 3.5rem; */
    position: relative;
    overflow: hidden;
}
.simple-steps #simple-steps-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, #24b3d3, #de3597 70%); */
}
.simple-steps h6{
    position: relative;
    font-size: calc(2rem + 0.5vw);
    font-weight: 900;
    color: #fff;
    background: linear-gradient(to right, #24b3d3, #de3597 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.simple-steps-row{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.simple-steps-row .simple-steps-box{
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.simple-steps-row .simple-steps-box .simple-steps-box-left span{
    display: block;
    font-size: calc(1.5rem + 0.5vw);
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    color: #de3597;
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.simple-steps-row .simple-steps-box .simple-steps-box-right{
    margin-left: 1rem;
}
.simple-steps-row .simple-steps-box .simple-steps-box-right span{
    display: block;
    font-size: calc(0.8rem + 0.5vw);
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    color: #fff;
}
.simple-steps-row .simple-steps-box .simple-steps-box-right p{
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 500;
    color: #fff;
    margin-top: 0.5rem;
}
.simple-steps-row .simple-steps-box button{
    border: none;
    background-color: #fff;
    color: #de3597;
    font-size: calc(0.65rem + 0.5vw);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.2s ease;
}
.simple-steps-row .simple-steps-box button:hover{
    /* background-color: #21b5d6; */
    background-color: #2ac7eb;
    color: #fff;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    .simple-steps{
        padding: 3.5rem 7%;
        /* margin-top: 4.5rem; */
    }
    .simple-steps h6{
        font-size: calc(2.3rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.6rem + 0.5vw);
        width: 47px;
        height: 47px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right{
        margin-left: 1.2rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(0.9rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.65rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.7rem + 0.5vw);
        padding: 0.6rem 1.5rem;
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .simple-steps{
        padding: 4rem 7%;
        /* margin-top: 5rem; */
    }
    .simple-steps h6{
        font-size: calc(2.5rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.7rem + 0.5vw);
        width: 55px;
        height: 55px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right{
        margin-left: 1.2rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(1rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.75rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.8rem + 0.5vw);
        padding: 0.8rem 1.9rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .simple-steps{
        padding: 2.6rem 1rem 1.3rem 1rem;
        margin-top: 0.5rem;
    }
    .simple-steps h6{
        font-size: calc(1.5rem + 0.5vw);
        text-align: center;
    }
    .simple-steps-row{
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .simple-steps-row .simple-steps-box{
        width: 100%;
        justify-content: left;
        margin-bottom: 1.5rem;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-left span{
        font-size: calc(1.7rem + 0.5vw);
        width: 47px;
        height: 47px;
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right span{
        font-size: calc(1.1rem + 0.5vw);
    }
    .simple-steps-row .simple-steps-box .simple-steps-box-right p{
        font-size: calc(0.85rem + 0.5vw);
        margin-top: 0.5rem;
    }
    .simple-steps-row .simple-steps-box a{
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }    
    .simple-steps-row .simple-steps-box button{
        font-size: calc(0.9rem + 0.5vw);
        margin-top: 0.8rem;
        padding: 0.5rem 2rem;
    }    
}
/* Simple Steps End */

/* Footer Start */
footer{
    padding: 2rem 7%;
    /* background-color: #e2d1fd; */
    /* background: linear-gradient(to bottom, #362653 5%, #0a0325, #0d031c); */
}
footer .foot-top{
    display: flex;
    align-items: center;
}
footer .foot-top img{
    width: 70px;
    border-radius: 7px;
}
footer .foot-top span{
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: calc(2.2rem + 0.5vw);
    font-weight: 800;
    background: linear-gradient(to right, #24b3d3 30%, #de3597 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-left: 1.5rem;
    border-left: 1.5px solid #fff;
    padding-left: 1rem;
}
footer .foot-menu{
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #939393;
    border-bottom: 1px solid #939393;
    display: flex;
    justify-content: space-between;
}
footer .foot-menu .foot-menu-box{
    width: 20%;
}
footer .foot-menu .foot-menu-box span{
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    font-family: "Roboto", sans-serif;
    font-size: calc(0.8rem + 0.5vw);
    font-weight: 800;
    color: #de3597;
}
footer .foot-menu .foot-menu-box a{
    display: block;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    /* color: #000; */
    color: #fff;
    text-decoration: none;
    margin-top: 0.2rem;
}
footer .foot-menu .foot-menu-box a:hover{
    color: #16c4ec;
}
footer .foot-menu #connect-with-us a{
    display: flex;
    gap: 8px;
}
footer .foot-menu #connect-with-us a i{
    color: #de3597;
    margin-top: 5px;
}
footer .foot-menu .foot-menu-box .social-row{
    display: flex;
    gap: 0.7rem;
}
footer .foot-menu .foot-menu-box .social-row i{
    /* background-color: #21b5d6; */
    background-color: #2ac7eb;
    color: #fff !important;
    font-size: calc(0.55rem + 0.5vw);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
footer .foot-menu .foot-menu-box .social-row i:hover{
    /* background-color: #e04497; */
    background-color: #ff5db3;
    color: #fff !important;
}
footer .foot-bottom{
    padding-top: 1.5rem;
}
footer .foot-bottom-menu{
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer .foot-bottom-menu a{
    display: block;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    /* color: #000; */
    color: #fff;
    text-decoration: none;
}
footer .foot-bottom-menu a:hover{
    color: #16c4ec;
}
footer .foot-bottom-menu span{
    display: block;
    font-size: calc(0.3rem + 0.5vw);
    margin-top: -2px;
    color: #c0c0c0;
}
footer .foot-bottom p{
    font-size: calc(0.27rem + 0.5vw);
    margin-top: 1rem;
    /* color: #363636; */
    color: #c0c0c0;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1260px) and (max-width: 1399px){
    footer .foot-menu #connect-with-us a i{
        margin-top: 6px;
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.5rem + 0.5vw);
        width: 29px;
        height: 29px;
    }
    footer .foot-bottom p{
        font-size: calc(0.3rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    footer .foot-top img{
        width: 80px;
        border-radius: 8px;
    }
    footer .foot-top span{
        font-size: calc(2.4rem + 0.5vw);
    }
    footer .foot-menu #connect-with-us a i{
        margin-top: 6px;
        font-size: calc(0.6rem + 0.5vw);
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.5rem + 0.5vw);
        width: 31px;
        height: 31px;
    }
    footer .foot-bottom p{
        font-size: calc(0.34rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    footer{
        padding: 1rem 1rem;
    }
    footer .foot-top img{
        width: 65px;
    }
    footer .foot-top span{
        font-size: calc(1.8rem + 0.5vw);
        margin-left: 1rem;
        border-left: 2px solid #fff;
        padding-left: 0.8rem;
    }
    footer .foot-menu{
        margin-top: 1rem;
        padding-bottom: 1rem;
        flex-wrap: wrap;
    }
    footer .foot-menu .foot-menu-box{
        width: 50%;
    }
    footer .foot-menu #connect-with-us{
        width: 100%;
    }
    footer .foot-menu .foot-menu-box span{
        margin-top: 1rem;
        font-size: calc(1.1rem + 0.5vw);
    }
    footer .foot-menu .foot-menu-box a{
        font-size: calc(0.7rem + 0.5vw);
        margin-top: 0.3rem;
    }
    footer .foot-menu .foot-menu-box .social-row{
        gap: 0.8rem;
    }
    footer .foot-menu .foot-menu-box .social-row i{
        font-size: calc(0.75rem + 0.5vw);
        width: 30px;
        height: 30px;
    }
    footer .foot-bottom{
        padding-top: 0.7rem;
    }
    footer .foot-bottom-menu{
        gap: 0.3rem;
    }
    footer .foot-bottom-menu a{
        font-size: calc(0.6rem + 0.5vw);
        text-align: center;
    }
    footer .foot-bottom-menu span{
        font-size: calc(0.6rem + 0.5vw);
    }
    footer .foot-bottom p{
        font-size: calc(0.5rem + 0.5vw);
        margin-top: 0.8rem;
    }
}
/* Footer End */

