/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* import fonts here */



/* basic css*/

:root {
    --primary-color: #8148FF;
    --box-color: #27252F;
    --white: #fff;
    --text-color: #D1D1D1;
    --transition: .5s
}

body {
    font-family: "Open Sans", sans-serif;
    color: #fff;
    background-color: #1B1921;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

input,
textarea {
    outline: none;
}

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

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1350px;
    margin-inline: auto;
}

/* basic css */



/* extra css start here */

.section__title h1 {
    font-size: 50px;
    line-height: 71px;
    font-weight: bold;
}

.map__overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.theme__btn {
    width: 230px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #423E4C;
    color: #fff;
    font-size: 20px;
    line-height: 33px;
    transition: var(--transition);
}

.theme__btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* extra css end here */



/* header area start here */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 40px 20px 0px 20px;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    
}

.scroll-header {
    background: rgba(129, 72, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid #5A38A4;
}

.scroll-header .header__navigation {
    padding: 20px 50px;
}

.scroll-header .register__btn {
    padding: 20px 40px;
}

.menu-item.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__navigation {
    background: var(--box-color);
    padding: 20px 50px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.header__navigation:hover {
    border-color: var(--primary-color);
}

.header__navigation ul {
    display: flex;
    gap: 50px;
}

.header__login {
    gap: 28px;
}

.header__navigation ul li a,
.login__btn {
    position: relative;
    padding: 5px 0;
}

.header__navigation ul li a::after, .login__btn::after, .offcanvas-body ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.header__navigation ul li a:hover::after,
.login__btn:hover::after, .offcanvas-body ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

header a {
    font-size: 22px;
    line-height: 33px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    color: var(--white);
    position: relative;
    transition: var(--transition);
}

header a:hover {
    color: var(--white)
}

.register__btn {
    padding: 20px 50px;
    background: #413F47;
    border-radius: 100px;
}

.register__btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* header area end here */



/* hero area start here */

.hero__area {
    background-image: url(../img/hero__world.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 31px;
    border-radius: 0 0 23px 23px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero__line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__line img {
    border-radius: 0 0 23px 23px;
}

.hero__content {
    z-index: 2;
}

.hero__text {
    max-width: 850px;
    margin-inline: auto;
}

.hero__text h5 {
    font-size: 25px;
    line-height: 33px;
}

.hero__text h1 {
    font-size: 100px;
    line-height: 110px;
    margin-block: 16px;
    font-weight: bold;
}

.hero__text p {
    font-size: 22px;
    line-height: 38px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.hero__text .theme__btn {
    background: #6C56A1;
}

.hero__text .theme__btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* hero area end here */



/* invest area start here */

.invest__content {
    background: var(--box-color);
    padding: 50px 65px;
    border-radius: 65px;
    margin-top: 90px;
    padding-bottom: 70px;
}

.invest__flex {
    margin-top: 57px;
}

.single__invest span {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: var(--primary-color);
    border-radius: 100px;
    outline-width: 6px;
    outline-color: #5A38A4;
    outline-style: solid;
    box-shadow: 0 0 25px 5px var(--primary-color);
    margin-right: 20px;
}

.single__invest p {
    font-size: 22px;
    line-height: 40px;
}

/* invest area end here */



/* benefit area start here */

.benefit__area {
    padding-block: 80px 120px;
    position: relative;
    z-index: 9;
}

.benefit1 {
    background-image: url(../img/bf1.png);
}

.benefit2 {
    background-image: url(../img/bf2.png);
}

.benefit3 {
    background-image: url(../img/bf3.png);
}

.benefit__flex {
    margin-top: 42px;
}

.single__benefit {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 32.7%;
    background-color: var(--box-color);
    border-radius: 65px;
    height: 357px;
    display: flex;
    flex-direction: column;
    padding: 0 70px 50px 50px;
    justify-content: end;
}

.single__benefit h4 {
    font-size: 31px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
}

.single__benefit p {
    font-size: 18px;
    line-height: 30px;
}

.benefit__content .theme__btn {
    margin-top: 61px;
}

/* benefit area end here */



/* advantage area start here */

.advantage__area {
    position: relative;
    z-index: 9;
    margin-bottom: 168px;
}

.image__wrapper {
    border-radius: 70px;
}

.image__wrapper img {
    transition: transform var(--transition);
}

.image__wrapper:hover img {
    transform: scale(1.2);
}

.advantage__left {
    width: 49.8%;
}

.advantage__step {
    margin-top: 33px;
}

.advantage__step .single__step {
    background: var(--box-color);
    border-radius: 65px;
    padding: 40px;
    margin-bottom: 22px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.advantage__step .single__step:hover {
    border-color: var(--primary-color);
    cursor: pointer;
}

.advantage__step .single__step:last-child {
    margin: 0;
}

.single__step h4 {
    font-size: 28px;
    line-height: 26px;
    margin-bottom: 20px;
}

.single__step p {
    font-size: 19px;
    line-height: 28px;
}

.advantage__right {
    width: 48%;
}

/* advantage area end here */



/* faq area start here */

.faq__area {
    padding-bottom: 148px;
}

.faq__accordion {
    width: 49.8%;
}

.faq__summery__text {
    width: 45.33%;
}

.faq__summery__text span {
    background: var(--primary-color);
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
    padding: 15px 35px;
    border-radius: 100px;
    margin-bottom: 4px;
}

.faq__summery__text h1 {
    font-size: 50px;
    line-height: 90px;
    font-weight: bold;
    margin-bottom: 4px;
}

.faq__summery__text p {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 70px;
}

.faq__accordion .accordion-item {
    background: transparent;
    border: none;
}

.faq__accordion .accordion-item button {
    font-size: 27px;
    font-weight: 600;
    line-height: 50px;
    color: var(--white);
    background: var(--box-color);
    border-radius: 65px !important;
    padding: 25px 50px;
    padding-right: 30px;
    border: 1px solid transparent;
}

.faq__accordion .accordion-item button:hover {
    border-color: var(--primary-color);
}

.faq__accordion .accordion-body {
    padding: 20px 25px 15px 50px;
}

.faq__accordion .accordion-body p {
    font-size: 19px;
    line-height: 28px;
}

.faq__accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq__accordion .accordion {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.faq__accordion .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__accordion .accordion-button:hover::after {
    background: var(--primary-color);
    color: var(--white);
}

/* faq area end here */



/* footer area start here */

footer {
    background: var(--box-color);
    margin: 0 28px;
    border-radius: 65px 65px 0 0;
    padding: 44px;
}

.footer__note p {
    color: #fff;
    font-size: 10px;
    margin-top: 20px;
    transition: var(--transition);
}

.footer__email a,
.footer__email p {
    color: #fff;
    font-size: 20px;
    line-height: 33px;
    transition: var(--transition);
}

.footer__terms a {
    color: #fff;
    font-size: 10px;
    line-height: 33px;
    text-decoration: underline;
    transition: var(--transition);
}

.footer__terms a:hover {
    color: var(--primary-color);
}

.footer__email a:hover {
    color: var(--primary-color);
}

/* footer area end here */









.offcanva__trigger {
    font-size: 25px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 100px;
    transition: var(--transition);
}

.offcanva__trigger:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

#offcanvasExample {
    background: rgb(39, 37, 47, .5);
    border-radius: 0 30px 30px 0;
    border-right: 6px solid var(--primary-color);
    box-shadow: 0 5px 30px var(--primary-color);
    backdrop-filter: blur(5px);
}
.offcanvas-body {
	margin-top: 40px;
}
.offcanva__close {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-size: 20px;
    transition: var(--transition);
}

.offcanva__close:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.offcanvas-body ul li a {
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
}

.offcanva__login {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.offcanva__login .register__btn {
	padding: 15px 35px;
}
.offcanvas-body ul li {
    text-align: center;
}

.offcanva__login a {
    font-size: 20px;
    color: #fff;
    transition: var(--transition);
    padding: 10px 20px;
}
