/* Body Styles (Used throughout page) */

html {
    scroll-behavior: smooth;
  }
  
body, input, button{
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

.splash_arrow-style_left {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #1d1d1d;
    float: left;
}

.splash_arrow-style_right {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-right: 30px solid #1d1d1d;
    float: right;
}

a{
    text-decoration: none;
}

.empty-container{
    height: 100vh;
}

/* Loader */

.body{
    /* display: none; */
}

.body.active{
    display: block;
}


/* Navigation Bar (Top) */

.splash_navbar {
    position: fixed;
    width: 100%;
    height: 70px;
    left: 0px;
    top: 0px;
    background: #e7ecff;
    /* display: flex; */
    align-items: center;
    z-index: 10;

    backdrop-filter: blur(5px) saturate(20%);
    -webkit-backdrop-filter: blur(5px) saturate(20%);
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(209, 213, 219, 0.3);
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.15));
}

.splash_navbar.no_fixed{
    position: relative;
}

.splash_logo {
    padding-left: 30px;
    width: 50%;
    position: relative;
    top: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    /* color: #0a0a0a; */
    color: #5d77d4;
    text-decoration: none;
}

.splash_left_side_navbar{
   width: 50%;
}

.menu_left{
    position: relative;
    right: -120px;
    top: 5px;
    /* Remove float */
    /* float: right; */
}

.menu_left a{
    font-weight: 600;
    padding: 0px 10px;
    justify-content: space-between;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.9rem;
}

.splash_right_side_navbar {
    float: right;
    position: relative;
    right: 20px;
    /* Change position of menu items */
    /* top: 25px; */
    top: -12px;
}

nav a {
    font-weight: 600;
    padding: 0px 10px;
    justify-content: space-between;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.9rem;
}

.splash_right_side_navbar_items {
    display: block;
    justify-content: space-between;
    text-align: right;
}

.splash_hamburger_menu {
    display: none;
}

.x-mark{
    width: 30px;
    height: 25px;
    position: relative;
    right: 5px;
    top: 10px;
    display: none;
}

.splash_navbar_contact {
    padding: 7px 35px;
    background: #444dc7;
    border-radius: 20px;
    font-weight: 500;
    color: #ffffff;
}


/* Hamburger menu */

.splash_menu_mobile{
    background: #000000;
    color:#ffffff;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 9;
    animation-name: fadeinnavbar;
    animation-duration: 0.5s;
    display: none;
}

.splash_right_side_navbar_items_mobile{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 30%;
    justify-content: center;
    text-align: center;
}

.splash_right_side_navbar_items_mobile a{
    margin-bottom: 30px;
    cursor: pointer;
}

.splash_right_side_navbar_items_mobile a:hover{
    text-decoration: underline;
}


@keyframes fadein {
    from {
        opacity: 0;
        transform: translate3d(0, 250px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeinnavbar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.log-in-link{
    margin-left: 40px;
}

/* Hero Section */

.splash_hero_section {
    /* background-color: #ffffff; */
    background-color: #fafafa;
    /* background: linear-gradient(265.78deg, #ECF0FF -1.81%, #EDFFF3 102.29%); */
    color: #414141;
    display: flex;
    height: 700px;
    /* margin-bottom: 70px; */
}

.splash_hero_section_left_side {
    position: relative;
    top: 200px;
    padding-left: 30px;
    width: 100%;
}

/* .splash_hero_section_left_side h3 {
    font-weight: 500;
    font-size: 2.1rem;
    margin-bottom: 15px;
    animation-name: fadein;
    animation-duration: 1.2s;
} */

.splash_hero_section_left_side h3 {
    font-weight: 800;
    font-size: 3rem;
    color: #000000;
    max-width: 700px;
}

/* .splash_hero_section_left_side span {
    font-weight: 800;
    font-size: 3rem;
    color: #000000;
    max-width: 500px;
} */

.splash_hero_section_left_side p {
    font-weight: 500;
    font-size: 1rem;
    line-height: 22px;
    max-width: 370px;
    margin-top: 20px;
    animation-name: fadein;
    animation-duration: 2s;
}

.links{
    display: flex;
    margin-top: 40px;
}

.splash_hero_section_learn_more_link {
    /* background: #000000; */
     background: #444dc7;
    color: #ffffff;
    border-radius: 20px;
    padding: 10px 50px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 0.9rem;
    text-align: center;
    width: 210px;
}

.splash_hero_section_learn_more_link.demo{
    background: #65cdd1;
    margin: 0px 20px;
}

.splash_hero_section_learn_more_link:hover{
    opacity: 0.7;
}

.splash_hero_section_learn_more_link.white{
     background: #ffffff;
    color: #2b2b2b;
    font-weight: 600;
}

.icon_link{
    position: relative;
    top: 150px;
    right: 140px;
}

.icon_link img{
    width: 270px;
}

.icon_link:hover{
    opacity: 0.7;
}

.splash_hero_section_right_side {
    position: relative;
    float: right;
    top: -20px;
    margin-right: 20px;
    /* right: 50px; */
}

.splash_hero_section_right_side p{
    /* background: #000000; */
    background: #7160DA;
    color: #ffffff;
    border-radius: 0px;
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    top: -100px;
    transition: all 0.3s ease-in-out;
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

.splash_hero_section_image{
border-radius: 20px;
/* cursor: pointer; */
transition: all 0.3s ease-in-out;
width: 100%;
width: 850px;
}

/* Video section */
.demo_video{
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    position: relative;
    top: 150px;
    margin-bottom: 200px;
}
.video_container iframe{
    width: 75%;
    height: 500px;
border-radius: 20px;
filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.35));
}

.splash_hero_section_image:hover{
   /* transform: scale(1.1); */
}

.splash_hero_section_image img {
    position: relative;
    width: 80%;
    height: 100%;
    left: 100px;
    top: 200px;
    z-index: 4;
    filter: drop-shadow(0px 5px 5px rgba(147, 147, 147, 0.3));
}

/* .splash_hero_section_image::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    top: 50px;
    left: 50px;
    height: 65%;
    background: #000000;
    opacity: 0.7;
    z-index: 3;
} */

/* pricing */

#pricing {
    /* display: flex; */
    /* background: #f5f5f5; */
    padding-top: 0px;
    padding-bottom: 4rem;
}

.pricing_section {
    display: flex;
    justify-content: center;
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: auto auto auto; */
    /* margin-bottom: 5rem; */
}

.pricing_main {
    /* justify-content: center;
    align-items: center; */
    padding: 0px 20px;
}

.pricing_main h2{
    font-size: 2rem !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing_heading {
    margin-bottom: 100px;
}

.pricing_heading h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    /* max-width: 40%; */
}

.pricing_individual {
    padding: 40px 20px;
    margin-bottom: 12rem;
    width: 30rem;
    height: 500px;
    background-color: #202020;
    color: #ffffff;
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.15));
    border-radius: 10px;
}

.pricing_individual img {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.15));
}

.splash_advertisement_banner {
    align-items: center;
    text-align: center;
}

.pricing_text {
    text-align: left;
}

.flex-text{
    display: flex;
}

.flex-text h2{
    margin-right: 5px;
}

.flex-text p{
    margin: 0px !important;
    line-height: 2.7rem;
    color: #c9c9c9 !important;
}

.pricing_text p {
    font-weight: 500;
    font-size: 1rem;
    margin: 1rem 0px;
    color:#e6e6e6;
}

.pricing_text_additional{
    margin-bottom: 50px;
}

.pricing_text p span {
    font-style: italic;
    font-weight: 500;
}

.pricing_text h6 {
    margin: 0 15%;
}

.splash_advertisement_banner {
    position: relative;
    width: 100%;
    height: 306px;
    /* background: linear-gradient(56.99deg, #ff5151 54.81%, #ed9d8b 106.12%); */
    background:#1d1d1d;
    opacity: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
    backdrop-filter: blur(10px) saturate(50%);
    -webkit-backdrop-filter: blur(10px) saturate(50%);
    /* background: #ff5151; */
    /* margin-top: 20rem; */
}

.splash_advertisement_banner_title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2rem;
    width: 40%;
    text-align: left;
    position: relative;
    right: 5rem;
}

.splash_advertisement_link_button {
    text-decoration: none;
    color: #ffffff;
    border: 2.5px solid #ffffff;
    box-sizing: border-box;
    padding: 10px 15px;
    font-weight: 500;
}

/* Email form */

.email_form{
    display: flex;
    justify-content: center;
    padding: 0px 15%;
    position: relative;
}

/* Work section */

#features {
    /* margin-top: 200px; */
    margin-bottom: 100px;
    /* background: #f7f7f7; */
    color: #0a0a0a;
    padding: 100px 40px 10px 40px;
}

.work-title {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.work-title_heading {
    border-bottom: 5px solid #1d1d1d;
    padding-bottom: 15px;
    margin-bottom: 7rem;
}

.work-title_heading h1{
    font-size: 2rem !important;
}

.work-title h1 {
    font-weight: 700;
    font-size: 1.5rem;
}

.reason {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 10rem;
}

.reason.left:last-of-type {
    margin-bottom: 0rem !important;
}

.reason_image {
    position: relative;
    right: 0;
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.15));
}

.reason_image img{
    width: 700px;
    height: 400px;
}

.reason_copy {
    position: relative;
    top: 30px;
    height: fit-content;
    width: 100%;
    padding-right: 30px;
}

.reason_copy_right {
    position: relative;
    right: 0;
    top: 30px;
    height: fit-content;
}

.reason_image.right {
    width: 80%;
}

.reason_copy_text {
    padding-top: 20px;
    max-width: 400px;
    /* border-top: 2.5px solid #1d1d1d; */
}

.reason_copy_text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.reason_copy_text p {
    font-size: 1.1rem;
    line-height: 25px;
}

.reason.mobile{
    display: none;
}




/* How we can help you */

#perks {
    width: 100%;
    height: 250px;
    /* background: #f3f3f3; */
    color: #0a0a0a;
    padding-top: 2rem;
    /* margin-bottom: 750px; */
    margin-bottom: 100px;
}

.perks_heading {
    text-align: center;
    margin-bottom: 7rem;
}

.perks_heading h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.perks_heading p{
max-width: 50%;
margin: 0 auto;
font-weight: 400;
line-height: 27px;
font-size: 16px;
}

.your_expertise {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
}

.expertise_container {
    width: 25%;
    text-align: center;
}

.expertise_container img {
    margin-bottom: 20px;
    position: relative;
    right: 5px;
    width: 110px;
    height: 140px;
}

.expertise_container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.expertise_container p{
    color: #616161;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 15px;
    width: 70%;
    margin: 0 auto;
}




/* Contact */

#contact {
    background: #ffffff;
    opacity: 0.95;
    display: flex;
    color: #000000;
    padding: 5rem 0 40px 40px;
    margin-bottom: 100px;
}

.contact_left_side {
    width: 60%;
}

.contact_left_side h1 {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 2rem;
}

.contact_left_side h3 {
    font-weight: 400;
    font-size: 17px;
}

.contact_left_side_heading {
    max-width: 60%;
}

.form_top{
    display: flex;
    margin-bottom: 50px;
}

.contact {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-bottom: 0.7rem;
}

.contact input {
    background: none;
    border: 2px solid #000000;
    box-sizing: border-box;
    padding-left: 7px;
    border-radius: 2px;
    height: 30px;
    color: #000000;
}

.contact.name input{
    width: 160px;
}

.contact.name{
    margin-right: 40px;
}

.contact.form_bottom input[type="text"]{
    width: 100%;
    padding: 20px 10px;
}

.contact.form_bottom{
    margin-bottom: 3rem;
}

.splash_form_bottom button{
color: #ffffff;
background: #000000;
border: none;
font-size: 0.9rem;
width: 170px;
height: 40px;
font-weight: 700;
border-radius: 20px;
cursor: pointer;
transform: all 0.3s ease-in-out;
}

.splash_form_bottom button:hover{
    background: #303030;
}


/* Footer */

.splash_footer{
padding-top: 5rem;
padding-bottom: 20px;
height: 340px;
padding: 5rem 20px 20px 20px;
}

.quote{
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quotations{
    color: #FF5151;
    font-weight: 700;
    font-size: 2rem;
}

.quote.heading{
    display: flex;
    font-size: 2.2rem;
    font-weight: 600;
    /* max-width: 60%; */
    /* color: #102261; */
}

.splash_bottom_links{
    position: relative;
    top: 150px;
    padding: 20px 0;
}


.link_section_one{
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 100px;
}

.link_section_one a{
 text-decoration: none;
 color: #0a0a0a;
 font-weight: 700;
}

.link_section_one a:hover{
    text-decoration: underline;
}

.link_section_two{
    display: flex;
    width: 100%;
    justify-content:space-around;
    margin-bottom: 2rem;
}

.link_section_two span{
    font-size: 0.7rem;
    position: relative;
}

.splash_social_media img{
    width: 20px;
    height: 20px;
    margin-right: 20px;
    position: relative;
    top: -5px;
}

@media only screen and (max-width: 1330px) {
    .icon_link{
        position: relative;
        top: 100px;
        right: 0px;
    }

    .links{
        flex-direction: column;
    }

    .splash_hero_section_learn_more_link.demo{
        margin: 20px 0px;
    }
}


/* Mobile Sizes */

@media only screen and (max-width: 950px) {
    /* Hero Section */

    .splash_hero_section {
        display: block;
        height: 950px;
    }

    .splash_hero_section_right_side {
        float: left;
        top: 300px;
        left: 30px;
        width: 50%;
    }

    .splash_hero_section_image {
        width: 100%;
    }

    .splash_hero_section_image img {
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
    }

    .splash_hero_section_image::after {
        width: 100%;
        height: 100%;
    }

    .splash_hero_section_left_side {
        position: relative;
        top: 150px;
        /* left: 30px; */
        width: 100%;
    }

    #contact {
        display: block;
        padding: 5rem 0 40px 0px;
    }

.contact_left_side {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.contact_left_side_heading {
    max-width: 90%;
}

.contact_right_side{
    position: relative;
    padding: 0 10%;
}

#perks {
    padding-top: 7rem;
    /* margin-bottom: 900px; */
}

.icon_link{
    position: relative;
    top: 70px;
    right: -100px;
}

.email_form{
    top: 50px;
}

}






@media only screen and (max-width: 850px) {
    /* Navigation Bar (Top) */

    .splash_right_side_navbar_items {
        display: none;
    }

    .menu_left{
        display: none;
    }

    .splash_logo {
        width: 80%;
    }

    .splash_hamburger_menu {
        display: block;
        cursor: pointer;
    }

nav a {
    color: #ffffff;
}

    .splash_menu_mobile.active{
        display: block;
    }
    
    .x-mark.active{
        display: block;
    }

    /* Hero Image */

    .splash_hero_section_image img {
        height: 100%;
        width: 350px;
        left: 0px;
        top: 0px;
    }

    .splash_hero_section {
        margin-bottom: 50px;
    }
    

    .mobile_icon {
        width: 35px;
        height: 35px;
        position: relative;
        right: 0px;
        top: 7px;
    }

    .reason {
        display: block;
        margin-bottom: 0rem;
    }

    .reason_image {
        position: relative;
        top: 70px;
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
    }

    .reason_image img{
       width: 85%;
       height: 100%;;
    }

    .reason_copy_text{
        text-align: center;
        max-width: 100%;
    }

    .reason.right{
        display: none;
    }
    
    .reason.mobile{
        display: block;
    }

    .your_expertise {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
    }

    #perks{
        height: 300px;
        padding-top: 0px;
        /* margin-bottom: 700px; */
    }

    .perks_heading {
        padding: 0px 20px;
    }

    .perks_heading p {
        max-width: 100%;
    }

    .bold-p{
        font-weight: 700;
    }

    .expertise_container {
        width: 100%;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .expertise_container p{
        padding: 10px;
    }

    .splash_advertisement_banner {
        width: 90%;
        height: 250px;
        display: block;
        padding-top: 4rem;
        padding-left: 1.1rem;
    }
    
    .splash_advertisement_banner_title {
        width: 100%;
        text-align: center;
        position: relative;
        right: 0rem;
        font-size: 1.7rem;
    }
    
    .splash_advertisement_link_button {
        position: relative;
        top: 60px;
    }

    .pricing_individual {
        width: 100%;
        padding: 40px 20px;
        height: 520px;
    }
    
    .log-in-link{
        margin-left: 0px;
        margin-top: 40px;
    }

    .splash_navbar_contact{
        width: 50%;
        padding: 10px 35px;
        margin: 0 auto;
        }

        .demo_video{
            top: 200px;
        }

        .video_container iframe{
            width: 90%;
        }
}

@media only screen and (max-width: 670px){
    .splash_hero_section_right_side {
        top: 210px;
    }

    #perks{
        height: 400px;
        padding-top: 0px;
        /* margin-bottom: 700px; */
    }

}



@media only screen and (max-width: 570px) {
    /* Hero Section */

    .splash_hero_section_image {
        width: 100%;
    }

    .splash_hero_section_image::after {
        width: 100%;
        height: 100%;
    }

    .splash_hero_section_left_side {
        position: relative;
        top: 150px;
        /* left: 30px; */
        width: 90%;
    }

    .pricing_section {
        display: grid;
        grid-template-columns: auto;
    }

    .pricing_individual {
        margin-bottom: 50px;
    }

    .form_top {
        display: block;
    }

    .contact.name {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .splash_hero_section_left_side p {
        font-size: 0.9rem;
    }

    .splash_hero_section_left_side h3 {
        font-size: 2.5rem;
    }

    .icon_link{
        position: relative;
        top: 100px;
        right: 0px;
    }
}

@media only screen and (max-width: 450px){

    .link_section_one{
        flex-direction: column;
    }

    .link_section_one a{
        margin-bottom: 25px;
    }

    .link_section_two{
        display: block;
    }

    .link_section_two span{
        margin-bottom: 2rem;
    }

    .splash_social_media{
        top: 20px;
        position: relative;
    }

    .splash_hero_section_learn_more_link {
        font-size: 0.9rem;
    }
    #perks{
        height: 400px;
        padding-top: 0px;
        /* margin-bottom: 1000px; */
    }
}

@media only screen and (max-width: 315px){
.splash_hero_section_image img {
    width: 100vw;
}

#perks{
    /* height: 700px; */
    padding-top: 0px;
    /* margin-bottom: 1200px; */
}

}