@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fira+Code:wght@300..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    --blue: #58a0db;
    --yellow: #E7D552;
    --red: #e75454;
    --black: #000000;
    --purple: #7b39b9;
    --text-grey: #bab8c2;
}


*{
    margin: 0;
    font-family: "Figtree", serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: all ease-out .3s;
}

nav{
    /* margin:  0 50px; */
}

nav .nav-link{
    font-size: 14px;
}

.dropdown-menu{
    backdrop-filter: blur(30px);
    background: #1a0b2949;
    border: 1px solid #7f79856b;
    border-radius: 12px;
}

.dropdown-menu a{
    color: white;
}


body{
    font-size: 13px;
    background: #000;
}
a{
    text-decoration: none;
    color: #a05edf;
}


.section{
    padding-top: 100px;
    padding-bottom: 90px;
}


.btn{
    border: none ;
    border-radius: 50px;
    background: none;
    padding: 10px 20px;
    font-size: 13px;
    color: white;
}


.btn.btn-primary {
    width: 100%;
    background: #7b39b9;
    color: white;
    transition: .4s ease-out;
}

.btn-outlined{
    border: 2px solid #ffffff !important;
    background: none !important;
}

.btn-outlined:hover{
    border: 2px solid #7b39b9 !important;
    background: #7b39b9 !important;

}
header{
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}
header .content{
    position: relative;
    padding: 50px 0;/* 
    background: #1f1b24; */
    background: #7b39b936;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    color: rgb(208, 207, 212);
}

.header-back{
    position: absolute;
    top: 200px;
    content: '';
    width: 300px;
    height: 300px;
    background-color: #7b39b9;
    z-index: -1;
}

.header-backs .header-back:nth-child(1) {
    right: 200px;
}

.header-backs .header-back:nth-child(2) {
    top: 600px;
    left: 300px;
    transform: rotateZ(45deg);
}

.header-backs .header-back:nth-child(3) {
    left: 50px;
    border-radius: 100%;
}

.download-btns {
    width: 100%;
    max-width: 400px;
}
.download-btns a{
    width: 100%;
}
.download-btns img{
    width: 100%;
}

header i{
    font-size: 30px;
}

header h1{
    color: white;
    font-size: 80px;
    line-height: 100%;
    font-weight: 800;
}

.text-bold{
    font-weight: 900;
}

footer{
    color: var(--text-grey);
}

footer h2{
    font-size: 18px;
}

footer h4, footer h2{
    margin-bottom: 20px;
    color: white;
}

footer ul{
    list-style: none;
    padding-left: 0px;
}

footer li  {
    font-size: 14px;
    margin: 8px 0;
}
footer a{
    color: rgb(202, 198, 212);
}


.newsletter form{
    display: flex;
    border: 2px solid #a099b19d;
    border-radius: 24px;
    padding: 10px;
}

.newsletter form:hover{
    border: 2px solid #ffffff;
}

.newsletter form input{
    border-radius: 14px;
    background: #8475a725;
    flex: 1;
    border: none;
    color: white;
    padding-left: 10px;
}

.newsletter form input:focus-visible{
    outline: none;
}


.social-links ul{
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.social-links li{
    padding: 10px;
    font-size: 28px;
}


@media (max-width: 768px)  {
    nav{
        margin:  0 20px;
    }
    header {
        text-align: center;
    }
    header h1{
        color: white;
        font-size: 50px;
        line-height: 100%;
        font-weight: 800;
    }
    header{
        padding: 0 12px;
    }
    .header-img{
        width: 100%;
    }
}