* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    outline: none;
}

body {
    font-family: Poppins, sans-serif;
}

nav {
    width: 100%;
    height: 10vh;
    padding: 30px 50px;
    color: #180C47;
    display: flex;
    /*added align-items .by Emmanuel*/
    align-items: center;
    justify-content: space-between;
    background-color: #F3F5FF;
    z-index: 50000;
}

nav div {
    display: flex;
}

.nav_second {
    width: 30vw;
    justify-content: space-between;
}

.nav_third {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    /*not needed .by Emmanuel*/
    /*
    vertical-align: center;
    align-items: center;
    vertical-align: middle;
    */
    width: 20vw;
    height: 100%;
}

.nav_third button {
    cursor: pointer;
}


/*Added this to center the btn properly .by Emmanuel*/

.nav_third a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_third button:hover {
    opacity: 0.8;
}

.nav_third p {
    cursor: pointer;
}

.signup {
    padding: 10px 20px;
    font-family: Poppins, sans-serif;
    color: white;
    background-color: #5335D9;
    border: 1px solid #5335D9;
    border-radius: 25px;
}

nav img {
    height: 20px;
}

nav span {
    font-weight: 600;
}

.nav_dropdown {
    height: 10px;
}

nav a {
    text-decoration: none;
    color: #180C47;
}

nav a:hover {
    opacity: 0.7;
}

.dropdown {
    position: relative;
}

.dropping {
    list-style: none;
}

.dropping li {
    margin-bottom: 25px;
    color: #7A7D9C;
    font-size: 15px;
    cursor: pointer;
    font-weight: 400;
}

.dropping li:hover {
    color: #5335D9;
    font-weight: 600;
    transition-duration: 300ms;
}

.dropdown-menu {
    width: 200px;
    height: 260px;
    visibility: hidden;
    /* max-height: 0px; */
    /* overflow: hidden;  */
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    background-color: white;
    padding: 30px;
    transition: all 500ms ease-in-out;
    border-radius: 20px;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, .3);
    z-index: 50000;
}

.display_drop {
    visibility: visible;
    transform: translateY(20px);
    transition: all 500ms ease-in-out;
}

.mobile_menu_btn {
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile_menu_btn i {
    font-size: 30px;
    color: #0B0A33;
}

#nav_open {
    display: block;
}

#nav_close {
    display: none;
}


/*Tablet view for nav section*/

@media only screen and (max-width: 1000px) {
    .nav_second {
        width: 40vw;
    }
    .nav_third {
        width: 30vw;
    }
    nav {
        padding: 0 10px;
    }
}


/*mobile view for nav*/

@media only screen and (max-width: 630px) {
    .mobile_menu_btn {
        display: flex;
    }
    .nav_second {
        height: 40vh;
        width: 50vw;
        position: absolute;
        top: 10vh;
        left: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        justify-content: space-around;
        align-items: center;
        border-radius: 0 10px 0 0;
        z-index: 50000;
    }
    .nav_third {
        height: 30vh;
        width: 50vw;
        position: absolute;
        top: 50vh;
        left: -100%;
        flex-direction: column;
        background-color: #FFFFFF;
        justify-content: space-around;
        align-items: center;
        border-radius: 0 0 10px 0;
        z-index: 10000;
    }
    nav {
        padding: 0 10px;
        color: #180C47;
    }
    .dropdown-menu {
        width: 50vw;
        height: 240px;
        position: absolute;
        left: 0;
        top: calc(100% + 5px);
        z-index: 50000;
        padding: 10px;
    }
    .display_drop {
        visibility: visible;
        transform: translateX(100px);
        transition: all 500ms ease-in-out;
    }
    .nav_dropdown {
        transform: rotate(-90deg);
    }
}

.hero {
    background-color: #F3F5FF;
    width: 100%;
    height: 100vh;
    padding: 30px;
    color: #180C47;
}

.fir-div {
    /*Using this would not be compatable on all devices
  I'll be using flex to fix it
  .by Emmanuel*/
    /*
    margin-top: 150px;
    width: 60%;
    margin: 150px auto;
  */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero p {
    text-align: center;
    margin-top: 20px;
    color: #7A7D9C;
    margin-bottom: 30px;
}

.hero h1 {
    text-align: center;
    font-size: 60px;
    color: #180C47;
}

.hero button {
    background-color: #5335D9;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid #5335D9;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    cursor: pointer;
}


/*mobile view for hero section*/

@media only screen and (max-width: 630px) {
    .hero p {
        font-size: 15px;
    }
    .hero h1 {
        text-align: center;
        font-size: 40px;
        color: #180C47;
    }
    .hero button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.statistics {
    background-color: #F3F5FF;
    /* clip-path: polygon(0 0, 100% 0%, 100% 21%, 0 80%); */
    min-height: 80vh;
    width: 100%;
    margin-top: -5px;
    padding-top: 10px;
    position: relative;
    z-index: -2;
}


/*Added this cause img was too big had to size
and center it. hence the div tag cause the div with the img didn't have 
a class. by Emmanuel*/

.statistics .div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/*The img .by Emmanuel*/

.previews {
    width: 80vw;
}

.statistics::after {
    content: "";
    width: 100%;
    height: 40rem;
    position: absolute;
    bottom: -20rem;
    background-color: white;
    transform: skewY(166deg);
    z-index: -2;
}


/*Removed p from native(div so the imgs can be centered using flex)
.by Emmanuel*/

.statistics p {
    text-align: center;
    color: #7A7D9C;
    margin-bottom: 50px;
}

.native {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.integrations {
    cursor: pointer;
    margin: 0 20px;
    height: 40px;
}


/*Tablet view for statistics section*/

@media only screen and (max-width: 1000px) {
    .integrations {
        cursor: pointer;
        margin: 0 20px;
        height: auto;
        width: 100px;
    }
}


/*mobile view for statistics section*/

@media only screen and (max-width: 630px) {
    .native {
        flex-direction: column;
    }
    .previews {
        width: 100vw;
    }
    .integrations {
        cursor: pointer;
        margin: 10px 10px;
        height: 40px;
        width: auto;
    }
}

.benefits {
    width: 100%;
    min-height: 100vh;
    background-color: white;
    /*margin-top: 500px;*/
    /*addind flex .by Emmanuel*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 20px;
    /*padding-bottom: 60px;*/
}

.btn-div {
    text-align: center;
    margin: auto;
    margin-top: 60px;
    z-index: 16
}

.benefits_btn {
    background-color: #F3F5FF;
    text-align: center;
    padding: 8px 30px;
    color: #5335D9;
    border: 1px solid #F3F5FF;
    border-radius: 20px;
    margin: auto;
    vertical-align: middle;
    font-weight: 700;
    font-family: Poppins;
}

.mainh1 {
    font-size: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #0B0A33;
    text-align: center;
}

.mainp {
    color: #7A7D9C;
    /*reduced margin bottom .by Emmanuel*/
    margin-bottom: 50px;
    text-align: center;
}

.watermark {
    z-index: 0;
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 70vh;
    animation: 2s scale infinite;
}

@keyframes scale {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.flex-container {
    display: grid;
    width: 100%;
    padding: 10px;
    margin: auto;
    place-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /*reduced grid gap .by Emmanuel*/
    gap: 30px;
    place-items: center;
    /* grid-template-areas: 
    ". . ."
    ". . .";  */
    /*Changed bg to transparent, zindex to 2 .by Emmanuel*/
    background-color: transparent;
    z-index: 2;
}

.flex-boxes {
    background-color: white;
    border-radius: 20px;
    z-index: 5;
    min-height: 300px;
    min-width: 300px;
    padding: 20px;
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, .1);
}

.flex-boxes img {
    height: 60px;
    margin-bottom: 10px;
}

.flex-boxes p {
    margin-top: 20px;
    color: #7A7D9C;
    font-size: 13px;
}

.planning-btn {
    background-color: #5335D9;
    color: white;
    padding: 10px 35px;
    border-radius: 30px;
    border: 1px solid #5335D9;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    cursor: pointer;
}

.btn-div2 {
    text-align: center;
    margin: auto;
    /*reduced margin top*/
    margin-top: 50px;
    z-index: 16;
}


/*Tablet view for benefits section*/

@media only screen and (max-width: 1000px) {
    .flex-container {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
}


/*mobile view for benefits section*/

@media only screen and (max-width: 630px) {
    .mainh1 {
        font-size: 30px;
    }
    .mainp {
        font-size: 15px;
    }
    .watermark {
        height: 40vh;
        width: 70vw;
    }
    .flex-container {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .planning-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    .flex-boxes {
        min-width: 70vw;
    }
}

.fourth {
    background-color: #F3F5FF;
    /* clip-path: polygon(0 0, 100% 0%, 100% 21%, 0 80%); */
    min-height: 100vh;
    width: 100%;
    /* margin-right:2000px ; */
    margin-top: 0px;
    padding: 10px;
    position: relative;
    z-index: -2;
    margin-top: 20vh;
}


/*
.fourth::before {
    content: "";
    width: 100%;
    height: 90rem;
    position: absolute;
    bottom: -70rem;
    background-color: #F3F5FF;
    transform: skewY(175deg);
    z-index: -2;
    display: flex;
}

*/

.fourth::before {
    content: "";
    width: 100%;
    height: 20vh;
    position: absolute;
    top: -10vh;
    left: 0;
    background-color: #F3F5FF;
    transform: skewY(175deg);
    z-index: -2;
}

.top-left {
    /*
    margin-top: 700px;
    margin-left: 70px;
    */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    /*
    margin-right: -1000px;
    display: inline-block;
    */
}

.top-left h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
}

.fourth-flex {
    width: 80%;
    display: inline-block;
}

.fourth-flex h4 {
    color: #0B0A33;
    margin-bottom: 20px;
}

.fourth-flex p {
    color: #7A7D9C;
    display: inline-block;
    margin-bottom: 30px;
}

.fourth-flex img {
    display: inline-block;
}

.img-div {
    display: inline-block;
    margin-right: 20px;
}

.img-div img {
    margin-bottom: 100px;
    display: block;
    width: 40px;
}

.top-left-flex {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.top-right {
    /*
    display: inline-block;
    margin-top: -650px;*/
    /* margin-left: 450px; */
    /* margin-right: -300px; */
    /*position: absolute;
    right: -700px;
    width: 40%;
    position: relative;*/
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*added this .by Emmanuel*/

.top-right .lower_img {
    width: 90%;
}


/*remover these positions not needed .by Emmanuel*/


/*
.higher_img {
    position: absolute;
    top: -200px;
    right: -530px;
}
.lower_img {
    height: 520px;
}*/

.bottom-left {
    /*
    margin-top: 150px;
    margin-left: 70px;
    */
    width: 100%;
    /* margin-right: -1000px; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 20px;
    margin: 30px 0;
}

.bottom-left img {
    cursor: grab;
    display: inline-block;
    /*added width to the img*/
    width: 40vw;
}

.bottom-inline {
    /*No no to position absolute .by Emmanuel*/
    /*
    display: inline-block;
    position: absolute;
    right: -80px;
    top: 30px;
    */
    width: 50%;
    padding: 10px;
}

.bottom-inline h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bottom-inline p {
    color: #7A7D9C;
}

.bottom-inline div {
    display: flex;
}

.white-boxes {
    background-color: white;
    width: 47%;
    border-radius: 20px;
    min-height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
    margin-left: 10px;
    text-align: center;
}

.blue {
    color: #596AFF;
    /*No to margin top .by Emmanuel*/
    /*
    margin-top: 60px;
    */
    font-weight: 500;
    font-size: 40px;
}

.red {
    color: #FF1313;
    /*No to margin top .by Emmanuel*/
    /*
    margin-top: 60px;
    */
    font-weight: 500;
    font-size: 40px;
}

.white-boxes p {
    color: #7A7D9C;
}


/*Tablet view for forth section*/

@media only screen and (max-width: 1000px) {
    .bottom-left {
        align-items: flex-start;
    }
}


/*mobile view for forth section*/

@media only screen and (max-width: 630px) {
    .top-left {
        flex-direction: column;
    }
    .top-left h3 {
        font-size: 25px;
        text-align: center;
    }
    .fourth-flex h4 {
        color: #0B0A33;
        margin-bottom: 10px;
    }
    .fourth-flex p {
        font-size: 12px;
        margin-bottom: 30px;
    }
    .top-right .lower_img {
        width: 80vw;
    }
    .bottom-left {
        flex-direction: column-reverse;
    }
    .bottom-inline {
        width: 100%;
    }
    .bottom-inline h3 {
        font-size: 25px;
        text-align: center;
    }
    .bottom-inline p {
        font-size: 15px;
    }
    .bottom-left img {
        margin-top: 20px;
        width: 80vw;
    }
    .blue {
        font-size: 25px;
    }
    .red {
        font-size: 25px;
    }
    .white-boxes p {
        font-size: 13px;
    }
}

.card-section {
    background-color: white;
    min-height: 100vh;
    width: 100%;
    z-index: -2;
    padding: 20px;
    position: relative;
}

.card_watermark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 40vh;
    width: 80vw;
    background: #F3F5FF;
    border-radius: 24px;
    transform: rotate(10.87deg);
    z-index: -1;
    animation: 2s moving infinite;
}

@keyframes moving {
    0% {
        transform: rotate(10.87deg);
    }
    50% {
        transform: rotate(13deg);
    }
    100% {
        transform: rotate(10.87deg);
    }
}

.int {
    background-color: #F3F5FF;
    padding: 10px 30px;
    border-radius: 20px;
    border: 1px solid #F3F5FF;
    color: #5335D9;
    margin-bottom: 50px;
    font-weight: 600;
}

.int2 {
    background-color: #F3F5FF;
    padding: 10px 30px;
    border-radius: 20px;
    border: 1px solid #F3F5FF;
    color: #5335D9;
    /*margin-left: 900px;*/
    /*margin-top: 50px;*/
    text-align: center;
    font-weight: 600;
}

.card-section .top-fifth h1 {
    font-size: 40px;
    font-weight: 600;
    color: #0B0A33;
}

.top-fifth {
    width: 100%;
    /*margin-bottom: 50px;*/
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.top_f {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cards {
    display: flex;
    width: 100%;
    padding: 0 5px;
    margin: 30px 0;
}

.card {
    background: #FFFFFF;
    box-shadow: 0px 6px 30px #EFF0F6;
    border-radius: 24px;
    min-height: 300px;
    min-width: 30vw;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.card_head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card_head img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.card_head h1 {
    color: #4457FF;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
}

.card_head h1 span {
    color: #7A7D9C;
    font-size: 15px;
}

.card p {
    color: #7A7D9C;
    font-size: 14px;
    margin: 10px 0;
}

.card a {
    color: #4457FF;
    font-size: 16px;
    padding: 10px 5px;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.for_individuals {
    height: 30vh;
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.for_individuals h1 {
    text-align: center;
    color: #0B0A33;
    font-size: 40px;
}


/*mobile view for card section*/

@media only screen and (max-width: 630px) {
    .card-section .top-fifth h1 {
        font-size: 30px;
        text-align: center;
    }
    .top_f {
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .top-fifth {
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .cards {
        flex-direction: column;
    }
    .card {
        margin: 10px auto;
    }
    .for_individuals h1 {
        margin-top: 10px;
        font-size: 20px;
    }
}

.integrated_task {
    min-height: 100vh;
    width: 100%;
    margin-top: 50px;
}

.div1 {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integ_content {
    width: 80vw;
    min-height: 60vh;
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(217, 219, 232, 0.21);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.integ_text {
    width: 50%;
    padding: 10px;
}

.integ_text h1 {
    color: #0B0A33;
    font-size: 20px;
    margin: 5px 0;
}

.integ_text p {
    color: #7A7D9C;
    font-size: 15px;
}

.integ_text img {
    width: 50px;
    margin-bottom: 10px;
}

.frame {
    width: 50%;
}

.div2 {
    height: 50vh;
    width: 100%;
    background: #F3F5FF;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.div2::before {
    content: "";
    width: 100%;
    height: 20vh;
    position: absolute;
    top: -10vh;
    left: 0;
    background-color: #F3F5FF;
    transform: skewY(175deg);
    z-index: -2;
}

.hr_list {
    height: 40vh;
    width: 100%;
    background: #F3F5FF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.int_list {
    width: 30%;
}

.int_list hr {
    height: 4px;
    border: none;
}

#hr1 {
    background: #5335D9;
    border-radius: 2px 0 0 2px;
}

#hr3 {
    border-radius: 0 2px 2px 0;
}

#hr2,
#hr3 {
    background: #DBDBE0;
}

.int_1 {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.int_1 img {
    height: 50px;
    margin: 0 20px;
}

.int_1 h2 {
    color: #0B0A33;
    font-size: 18px;
}

#list1,
#list2,
#list3 {
    cursor: pointer;
}

#list2,
#list3 {
    opacity: 50%;
}

.div2 button {
    font-size: 14px;
    background: #5335D9;
    border-radius: 60px;
    padding: 10px 13px;
    border: none;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.div2 button i {
    margin: 0 0 0 4px;
}


/*mobile view for integrated_task section*/

@media only screen and (max-width: 630px) {
    .integ_content {
        flex-direction: column;
    }
    .integ_text {
        width: 100%;
    }
    .integ_text h1 {
        font-size: 17px;
    }
    .integ_text p {
        font-size: 12px;
    }
    .integ_text img {
        width: 40px;
    }
    .frame {
        width: 60vw;
    }
    .int_1 img {
        height: 20px;
        margin: 0 5px;
    }
    .int_1 h2 {
        font-size: 10px;
    }
    .div2 {
        height: 60vh;
    }
    .div2 button {
        font-size: 10px;
        padding: 10px 10px;
    }
    .div2 button i {
        margin: 0 0 0 4px;
    }
}

.goal_module {
    min-height: 100vh;
    width: 100%;
    padding: 40px;
    position: relative;
}

.goal_head,
.arti_head {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.goal_text,
.arti_text {
    width: 50%;
}

.goal_text button {
    background: #F3F5FF;
    border-radius: 60px;
    padding: 7px 17px;
    color: #5335D9;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 5px 0;
}

.goal_text h1,
.arti_text h1 {
    color: #0B0A33;
    font-size: 30px;
}

.first_btn {
    background: #5335D9;
    border-radius: 60px;
    padding: 10px 17px;
    color: #FFFFFF;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal_content {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content_1 {
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(217, 219, 232, 0.2);
    border-radius: 24px;
    height: 30vh;
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.content_1 h3 {
    color: #0B0A33;
    font-size: 20px;
    margin: 10px 0;
}

.content_1 p {
    color: #7A7D9C;
    font-size: 16px;
}

.card_watermark2 {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 30vh;
    width: 80vw;
    background: #F3F5FF;
    border-radius: 24px;
    transform: rotate(10.87deg);
    z-index: -1;
    animation: 2s moving infinite;
}


/*mobile view for goal_module section*/

@media only screen and (max-width: 630px) {
    .goal_head,
    .arti_head {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .goal_text,
    .arti_content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .goal_text h1,
    .arti_text h1 {
        font-size: 20px;
        margin: 10px 0;
        text-align: center;
    }
    .first_btn {
        padding: 10px 10px;
        font-size: 12px;
    }
    .goal_content {
        flex-direction: column;
    }
    .content_1 {
        width: 100%;
    }
    .content_1 h3 {
        font-size: 17px;
    }
    .content_1 p {
        font-size: 13px;
    }
}

.articles {
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    background: #F3F5FF;
    position: relative;
    margin-top: 10vh;
}

.articles::before {
    content: "";
    width: 100%;
    height: 20vh;
    position: absolute;
    top: -10vh;
    left: 0;
    background-color: #F3F5FF;
    transform: skewY(175deg);
    z-index: -2;
}

.arti_text button {
    background: #FFFFFF;
    border-radius: 60px;
    padding: 7px 17px;
    color: #5335D9;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 5px 0;
}

.arti_content {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.arti_con_item1 {
    width: 40vw;
}

.arti_con_item1 img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.item_arti {
    margin: 0 0;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 0 0 10px 10px;
}

.arti_btn_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arti_btn_text button {
    background: #5335D9;
    border-radius: 63px;
    padding: 7px 10px;
    font-size: 16px;
    border: none;
    outline: none;
    color: #FFFFFF;
}

.arti_btn_text p {
    color: #7A7D9C;
    font-size: 16px;
}

.item_arti h1 {
    color: #5335D9;
    font-size: 20px;
    margin-top: 40px;
}

.item_arti h4 {
    color: #7A7D9C;
    font-size: 15px;
    margin-top: 20px;
}

.arti_con_item2 {
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.item2_div {
    display: flex;
    height: 30vh;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.arti_con_item2 img {
    height: 90%;
    width: 50%;
}

.item2_text {
    width: 100%;
    padding: 0 0 0 30px;
}

.item2_text h2 {
    color: #7A7D9C;
    font-size: 18px;
    font-weight: 400;
}

.item2_text p {
    color: #0B0A33;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}


/*Tablet view for articles section*/

@media only screen and (max-width: 1000px) {
    .arti_con_item2 img {
        height: auto;
        width: 60%;
    }
    .arti_head {
        margin-bottom: 20px;
    }
    .item2_text {
        width: 40%;
        padding: 0 0 0 20px;
    }
    .item2_text h2 {
        color: #7A7D9C;
        font-size: 11px;
        font-weight: 400;
    }
    .item2_text p {
        color: #0B0A33;
        font-size: 13px;
        font-weight: 700;
        margin: 10px 0;
    }
}


/*mobile view for articles section*/

@media only screen and (max-width: 630px) {
    .arti_text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .arti_con_item1 {
        width: 100%;
    }
    .arti_btn_text p {
        font-size: 13px;
    }
    .item_arti h1 {
        font-size: 16px;
    }
    .item_arti h4 {
        font-size: 12px;
    }
    .arti_btn_text button {
        padding: 5px 7px;
        font-size: 13px;
    }
    .arti_con_item2 {
        width: 100%;
        margin-top: 5vh;
    }
    .item2_div {
        height: auto;
        padding: 0 10px;
        flex-direction: column;
    }
    .arti_con_item2 img {
        height: auto;
        width: 90%;
    }
    .item2_text {
        width: 100%;
        padding: 10px 10px;
    }
    .item2_text h2 {
        font-size: 12px;
    }
    .item2_text p {
        font-size: 13px;
        width: 100%;
    }
}

.frequent {
    min-height: 80vh;
    width: 100%;
    padding: 20px;
    position: relative;
}

.fr_head {
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.fr_head button {
    background: #EFF0F6;
    border-radius: 60px;
    padding: 7px 10px;
    font-size: 16px;
    border: none;
    outline: none;
    color: #5335D9;
}

.fr_head h1 {
    color: #0B0A33;
    font-size: 30px;
    font-weight: 700;
}

.questions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    grid-gap: 20px;
    padding: 30px 0;
}

.question {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(217, 219, 232, 0.5);
    border-radius: 24px;
    width: 40vw;
}

.question button {
    padding: 5px 10px;
    color: #FFFFFF;
    border: none;
    outline: none;
    background: #5335D9;
    border-radius: 15px;
    margin: 0 20px 0 0;
    font-size: 20px;
    cursor: pointer;
}

.question p {
    color: #0B0A33;
    font-size: 15px;
}

#quest {}

.question .answer {
    display: none;
    color: #FFFFFF;
}

.question button .bx-x {
    display: none;
}


/*mobile view for frequent section*/

@media only screen and (max-width: 630px) {
    .fr_head button {
        padding: 5px 7px;
        font-size: 13px;
    }
    .fr_head h1 {
        font-size: 20px;
        text-align: center;
    }
    .questions {
        grid-template-columns: 1fr;
    }
    .question {
        width: 90%;
    }
}

.free_trail {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.free_btn {
    background: #EFF0F6;
    border-radius: 60px;
    padding: 15px 32px;
    border: none;
    outline: none;
    color: #5335D9;
    font-size: 17px;
    cursor: pointer;
}

.free_trail_card {
    display: flex;
    width: 80vw;
    height: fit-content;
    background: #5335D9;
    border-radius: 50px;
}

.free_trail_text {
    width: 40%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 0 50px;
}

.free_trail_text h1,
.free_trail_text h2 {
    font-size: 20px;
    color: #FFFFFF;
}

.free_trail_text h2 {
    margin: 20px 0;
}

.free_trail_text button {
    background: #FFFFFF;
    border-radius: 60px;
    padding: 8px 24px;
    border: none;
    outline: none;
    color: #5335D9;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free_trail_img {
    position: relative;
    width: 60%;
    height: 50vh;
}

.free_img1 {
    width: 90%;
    height: 45vh;
    position: absolute;
    top: 0;
    left: 0;
}

.free_img2 {
    width: 5%;
    position: absolute;
    top: 10vh;
    right: 5%;
}


/*Tablet view for free_trail section*/

@media only screen and (max-width: 1000px) {
    .free_trail_card {
        min-height: 40vh;
    }
}


/*mobile view for free_trail section*/

@media only screen and (max-width: 630px) {
    .free_btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    .free_trail_card {
        min-height: fit-content;
        flex-direction: column;
        padding: 10px;
    }
    .free_trail_text {
        width: 100%;
        height: 30vh;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }
    .free_trail_text h1,
    .free_trail_text h2 {
        font-size: 15px;
        text-align: center;
    }
    .free_trail_text h2 {
        margin: 10px 0;
    }
    .free_trail_text button {
        padding: 7px 17px;
        font-size: 14px;
    }
    .free_trail_img {
        width: 100%;
        padding: 20px;
        height: 40vh;
    }
    .free_img1 {
        width: 90%;
        height: 35vh;
        top: 50%;
        transform: translate(0, -50%);
    }
    .free_img2 {
        width: 5%;
        position: absolute;
        top: 10vh;
        right: 5%;
    }
}

.newslatter_links {
    height: 80vh;
    width: 100%;
    border-top: 2px solid #D7D6D6;
    border-bottom: 2px solid #D7D6D6;
    display: flex;
    padding: 20px;
}

.newslatter {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.news_logo {
    margin: 10px 0;
}

.news_logo img {
    height: 30px;
}

.newslatter p {
    color: #7A7D9C;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 40px 0;
}

.news_form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.news_form label {
    color: #0B0A33;
    font-size: 18px;
}

#news {
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(217, 219, 232, 0.62);
    border-radius: 20px;
    border: none;
    width: 80%;
    height: 70px;
    margin: 10px 0 10px 10px;
    padding: 0 20px;
    outline: none;
    color: rgba(11, 10, 51, 0.76);
    font-size: 14px;
}

.news_form button {
    color: #FFFFFF;
    border-radius: 60px;
    padding: 8px 24px;
    border: none;
    outline: none;
    background: #5335D9;
    border-radius: 60px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 147px;
    height: 40px;
}

.news_links {
    width: 50%;
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.link {
    width: 30%;
    height: 60%;
    display: flex;
    flex-direction: column;
}

.link h1 {
    color: #4457FF;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
}

.link a {
    text-decoration: none;
    color: #7A7D9C;
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0;
}


/*mobile view for newslatter_links section*/

@media only screen and (max-width: 630px) {
    .newslatter_links {
        height: fit-content;
        flex-direction: column;
    }
    .newslatter {
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }
    .newslatter p {
        font-size: 14px;
    }
    .news_form {
        justify-content: center;
        align-items: center;
    }
    .news_links {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
    .link {
        width: 50%;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    .link h1 {
        margin: 10px 0;
    }
    .link a {
        font-size: 12px;
        margin: 5px 0;
        text-align: center;
    }
}

footer {
    width: 100%;
    height: 15vh;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_links {
    display: flex;
}

.social_links i {
    font-size: 18px;
    font-weight: 600;
    margin: 0 10px;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(217, 219, 232, 0.6);
    border-radius: 100px;
    padding: 10px;
}

#fb {
    color: #3b5998;
}

#tw {
    color: #00acee;
}

#ins {
    background-color: #FFCC70;
    background-image: linear-gradient(43deg, #FFCC70 0%, #C850C0 46%, #4158D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-size: 100%;
    background-repeat: repeat;
}

footer h3 {
    color: #7A7D9C;
    font-size: 14px;
}


/*mobile view for footer section*/

@media only screen and (max-width: 630px) {
    footer {
        min-height: 10vh;
        padding: 10px 5px;
        flex-direction: column;
    }
    .social_links i {
        font-size: 13px;
        margin: 0 5px;
        padding: 7px;
    }
    footer h3 {
        font-size: 10px;
        text-align: center;
    }
}


/*The End*/