@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Sora:wght@300;400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/*font-family: 'Inter', sans-serif;
font-family: 'Sora', sans-serif;*/
html {
    background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    font-weight: normal;
    cursor: none;
    background-color: #101010;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background-color: #d5d5d5;
}

body::-webkit-scrollbar-thumb {
    background-color: #3D72FA;
    border-radius: 4px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



.container {
    max-width: 1200px;
}

.btn-primary {
    background-color: #3D72FA;
    border-color: #3D72FA;
}

.btn-primary:hover {
    background-color: #1754F1;
    border-color: #1754F1;
}

.btn {
    min-width: 160px;
    border-radius: 6px;
    font-size: 16px;
    padding: 11px 20px;
}

.btn:focus {
    box-shadow: none;
}

a {
    color: #3D72FA;
    text-decoration: none;
}

a:hover {
    color: #DF0045;
}

.color-primary {
    color: #3D72FA;
}

main {
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 3;
    transition: .5s;
}


.brand-logo {
    color: #3D72FA;
    font-size: 30px;
    font-weight: bolder;
    width: 220px;
}

.brand-logo img {
    width: 100%;
}

.logo-light {
    display: none;
}


.header-wrap {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrap nav ul {
    display: flex;
    align-items: center;
}

.header-wrap nav {
    margin-left: auto;
}

.header-wrap nav ul {
    display: flex;
    align-items: center;
}

.header-wrap nav ul li {
    margin: 0 24px;
}

.header-wrap nav ul li a {
    text-decoration: none;
    color: #BBB;
    position: relative;
    font-weight: 500;
    font-family: 'Sora';
    font-size: 15px;
}

.header-wrap nav ul li a.active,
.header-wrap nav ul li a:hover {
    color: #3D72FA;
}

.header-wrap nav ul li a::before {
    content: '';
    background-color: #3D72FA;
    height: 0;
    width: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -150%;
    transition: 0.5s all;
    opacity: 0;
    visibility: hidden;
}

.header-wrap nav ul li a.active::before,
.header-wrap nav ul li a:hover::before {
    height: 24px;
    opacity: 1;
    visibility: visible;
}

.theme-toggle.darkActive .moon {
    display: none;
}

.theme-toggle .sun {
    display: none;
}

.theme-toggle.darkActive .sun {
    display: block;
}

.theme-toggle {
    color: #909090;
    padding: 12px;
    border-radius: 50%;
    background: none;
    box-shadow: none;
    border: none;
}

.theme-toggle:hover {
    color: #909090 !important;
}

.title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter';
    margin-bottom: 12px;
}

.subtl {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Sora';
    margin-bottom: 50px;
}

.first-fold {
    height: 100vh;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.first-fold .left {
    width: 80%;
}

.first-fold .left h5 {
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: uppercase;
    color: #909090;
    margin-bottom: 12px;
}

.first-fold .left p {
    font-family: 'Poppins';
    font-size: 20px;
    color: #999;
}

.first-fold .left span {
    font-family: 'Poppins';
    font-size: 16px;
    color: #b5b5b5;
    margin-top: 12px;
    display: block;
}


.page-title {
    font-family: 'Poppins';
    background-image: url(../img/abstract.jpg);
    background-attachment: fixed;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 30px;
}

.input-container {
    display: flex;
}

.form-control {
    background: #f5f5f5;
    border: none;
    font-size: 14px;
    padding: 14px 18px;
    color: #707070;
    margin-bottom: 0;
    border-radius: 6px;
    margin-right: 12px;
}

.form-control:focus {
    background: #f5f5f5;
    box-shadow: 0 0 0 1px #d5d5d5;
}

#mousePointer {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(61, 114, 250, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 1px solid rgba(6, 41, 164, 0.5);
    z-index: 9;
}

#mousePointer.zoom {
    width: 100px;
    height: 100px;
    background: rgba(249, 0, 77, 0);
    border-color: rgba(61, 114, 250, 0.7);
    transition: width 0.3s, height 0.3s;
}

#mousePointer.hide {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.wrapper {
    background-color: #fff;
}

/* Dark Theme CSS :: starts */
.dark .logo-dark {
    display: none;
}

.dark .logo-light {
    display: block;
}

body.dark,
.dark .wrapper {
    background-color: #101010;
    color: #fff;
}

.dark .form-control {
    background-color: #252525;
    color: #c5c5c5;
}

/* Dark Theme CSS :: ends */

.alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    text-align: center;
}
.show-in-mobile {
    display: none;
}

@media screen and (max-width:1199px) {
    .container {
        padding: 0 30px;
    }
}

@media screen and (max-width:991px) {}

@media screen and (max-width:767px) {
    .first-fold .left {
        width: 100%;
    }

    .btn {
        min-width: 110px;
        font-size: 14px;
    }

    .page-title {
        font-size: 42px;
    }

    #mousePointer {
        display: none;
    }

    .show-in-mobile {
        display: block;
    }

    .hide-in-mobile {
        display: none;
    }

    .brand-logo img {
        width: 150px;
    }
}

@media screen and (max-width:599px) {}