html {
    position: inherit;
    font-size: 100%;
}
:root {
    /* --primary-color: #111727; */
    --primary-bg: #F7F7FE;
    --primary-color: #4C40ED;
    --dark-color: #030A16;
    --effect: all .3s ease-in-out;
    --btn-size: .9rem;
    --small-size: .75rem;
    --hover-shodow-effect: 0 0 20px #111727;

}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8rem;
}

body {
    font-family: 'Poppins', sans-serif;
}

.page-scroll {
    width: 100%;
    height: auto;
    min-height: 100%;
    vertical-align: middle;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

header {
    background-color: #4a1ace;
    box-shadow: 0 0 50px 0;
    backdrop-filter: blur(3px);
    padding: 15px 30px;
    justify-content: space-between;
    align-items: center;
}

.graspbg {
    background-image: url('img/bg/graspbg.jpeg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    
   
    flex-direction: column;
    
    
}



/* Genral Classes */
.bg-custom {
    background-color: var(--primary-bg);
}

.dark-color {
    color: var(--dark-color);
}

.custom-button {
    padding: .7rem 2.5rem;
}

/* Genral Classes End */
/* Navigation */

.navbar-nav .nav-link {
    color: var(--dark-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar button {
    font-size: var(--btn-size);
    background-color: var(--primary-color);
}

/* Navigation  End */

/* Section 1  */
.section-1 h1 {
    color: #203066;
}

.section-1 button {
    color: #fff;
    background-color: var(--primary-color);
}

.grasp-title {
    display: block;
    position: absolute;
    text-align: left;
    top: 17%;
    transform: translateX(36%);
}



.section-1 a {
    color: var(--primary-color);
}

.section-1 a:hover {
    color: var(--primary-color);
}

.section-1 img {
    filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
}
.circle {
position: relative;
}
.circle::before {
    content: "";
    position: absolute;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    border: 8px solid #7600fa;
    opacity: .4;
}
.circle img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 2rem;
    opacity: .4;
}
/* Section 1 End */

@media screen and (max-width: 1024px) {
    .circle::before {
        width: 33vw;
        height: 33vw;
    }
    .circle img:nth-child(2) {
        top: 0rem;
    }
}
@media screen and (max-width: 768px) {
    .circle::before {
        width: 41vw;
        height: 41vw;
    }
}
@media screen and (max-width: 480px) {
    .circle::before {
        width: 90vw;
        height: 85vw;
    }
}


