* {
    box-sizing: border-box;
    font-family: "HostGrotesk-Regular";
    font-size: 16px;
}

.body {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.container-fluid {
    width: 91%;
}

.section {
    width: 100%;
}

.section.comp {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* forms */

.form {
    width: 100%;
}

.form .form-field {
    width: 100%;
    margin-bottom: 0.3rem;
}

.form-control {
    min-height: 45px;
    font-size: 14px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: none;
    border: 1px solid #dee2e6;
}

.form-control.show-focus:focus,
input.show-focus:focus {
    border: 1px solid var(--swp-400);
}

.form-control.error.show-focus:focus,
input.error.show-focus:focus {
    border: 1px solid var(--color-red);
}

.form-control.error {
    border: 1px solid var(--color-red);
}

.form-control.sz-xsm {
    min-height: 30px;
    height: 30px;
}

.form-control.sz-sm {
    min-height: 40px;
    height: 40px;
}

.form-control.sz-rg {
    min-height: 45px;
}

.form-control.sz-md {
    min-height: 50px;
}

.form-control.sz-lg {
    min-height: 56px;
}

.form-control.sz-xlg {
    min-height: 60px;
}

.form-control.sz-xxlg {
    min-height: 68px;
}

.select-box.dropdown .menu {
    max-height: 200px;
    overflow-y: scroll;
}

.phone-input {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.phone-input .select-box {
    width: auto;
    background-color: #fff;
    border-radius: 0.375rem;
}

.phone-input .select-box .menu {
    width: 220px;
}

.phone-input .select-box .control .single {
    padding-right: 0 !important;
}

.phone-input .select-box .control .single .single__image,
.phone-input .select-box .control .single .single__image img {
    margin-right: 0;
}

.phone-input .select-box .control .indicator-box .indicator {
    padding: 5px 3px;
}

.phone-input .form-control {
    border: none;
}

.phone-input .form-control:focus {
    border: none;
}

.country-input {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #fff;
}

.country-input .select-box {
    background-color: #fff;
    border-radius: 0.375rem;
}

.pin-input {
    width: 100%;
    display: flex;
    align-items: center;
}

.pin-input input {
    margin: 0 1.5%;
    text-align: center;
}

.pin-input input:first-child {
    margin-left: 0;
}

.pin-input input:last-child {
    margin-right: 0;
}

.custom-modal {
    border: none !important;
    padding: 0 !important;
}

.custom-modal .modal-body {
    border: none !important;
    padding: 0 !important;
}

.custom-modal .modal-dialog {
    max-width: 750px;
    margin: 0 auto;
}

.custom-modal.slim-sm .modal-dialog {
    max-width: 300px;
    margin: 0 auto;
}

.custom-modal.slim-md .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
}

.custom-modal.slim-lg .modal-dialog {
    max-width: 550px;
    margin: 0 auto;
}

.custom-modal.slim-xlg .modal-dialog {
    max-width: 650px;
    margin: 0 auto;
}

.custom-modal.slim-xxlg .modal-dialog {
    max-width: 700px;
    margin: 0 auto;
}

.custom-modal .modal-content {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    border: none !important;
}

.custom-modal .cm-body {
    display: flex;
}

.custom-modal .cm-left-box,
.custom-modal.rg .cm-left-box {
    border-radius: 14px 0 0 14px;
    width: 35%;
    min-height: 300px;
}

.custom-modal .cm-right-box,
.custom-modal.rg .cm-right-box {
    padding: 1.4rem 2rem;
    border-radius: 0 16px 16px 0;
    position: relative;
    width: 65%;
    min-height: 300px;
}

.custom-modal.sm .cm-left-box,
.custom-modal.sm .cm-right-box {
    min-height: 250px !important;
}

.custom-modal.md .cm-left-box,
.custom-modal.md .cm-right-box {
    min-height: 380px !important;
}

.custom-modal.lg .cm-left-box,
.custom-modal.lg .cm-right-box {
    min-height: 450px !important;
}

.custom-modal.xlg .cm-left-box,
.custom-modal.xlg .cm-right-box {
    min-height: 500px !important;
}

.custom-modal.flat .cm-left-box {
    display: none;
}

.custom-modal.flat .cm-right-box {
    width: 100%;
}

.custom-modal .cm-header {
    width: 100%;
    display: flex;
    align-items: center;
}

.custom-modal .cm-close-btn {
    margin-left: auto;
}

.round-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 34px;
    background-color: var(--swj-100);
    color: var(--swj-800);
    border-radius: 100px;
    outline: none !important;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.round-button.mini {
    width: 16px;
    height: 16px;
    line-height: 18px;
}

.round-button.xsm {
    width: 20px;
    height: 20px;
    line-height: 22px;
}

.round-button.sm {
    width: 24px;
    height: 24px;
    line-height: 26px;
}

.round-button.rg {
    width: 32px;
    height: 32px;
    line-height: 34px;
}

.round-button.md {
    width: 40px;
    height: 40px;
    line-height: 42px;
}

.round-button.lg {
    width: 48px;
    height: 48px;
    line-height: 50px;
}

.round-button.xlg {
    width: 56px;
    height: 56px;
    line-height: 58px;
}

.round-button.xxlg {
    width: 64px;
    height: 64px;
    line-height: 66px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    color: var(--swp-600);
    padding: 0;
}

.link-button.disabled {
    opacity: .65 !important;
    pointer-events: none !important;
}

.alert {
    margin-bottom: 0;
    border-radius: 5px;
    padding: 0.45rem 0.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.alert .icon-close {
    position: relative;
    top: 1px;
}

.alert .icon-alert {
    position: relative;
    top: 1px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    min-height: 50px;
    border-radius: 5px;
    padding: 10px 30px;
}

.button.xsm {
    min-height: 38px !important;
}

.button.sm {
    min-height: 44px !important;
}

.button.rg {
    min-height: 50px !important;
}

.button.md {
    min-height: 54px;
    padding-left: 33px;
    padding-right: 33px;
}

.button.lg {
    min-height: 60px;
    padding-left: 36px;
    padding-right: 36px;
}

.button.xxlg {
    min-height: 65px;
    padding-left: 36px;
    padding-right: 36px;
}

.button.button-primary {
    background-color: var(--swp-800);
    color: var(--color-white);
}

.button.button-ghost {
    background-color: transparent !important;
    color: var(--swj-950);
    border: 0.12rem solid var(--swj-950);
}

.button.disabled {
    opacity: .65 !important;
    pointer-events: none !important;
}

.button.blind {
    opacity: .258 !important;
    pointer-events: none !important;
}

.button.md.disabled.loading,
.button.lg.disabled.loading {
    width: 100% !important;
}

.button.block {
    width: 100%;
}
.button.gradient{
    background: linear-gradient(90deg, #4C27DF 1.4%, #CE078B 116.97%);
}

.loader {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.loader.white {
    color: #ffffff;
}

.loader.primary {
    color: var(--swj-950);
}

.loader.accent {
    color: var(--swp-600);
}

.loader.yellow {
    color: #fbc530;
}

.loader.purple {
    color: #5937a4;
}

.loader.orange {
    color: #FF6416;
}

.loader::before,
.loader::after {
    width: 30px;
    height: 30px;
    display: inline-flex;
    position: absolute;
    content: '';
    border-radius: 100px;
    top: 0;
    left: 0;
}

.loader::before {
    border: 2px solid currentColor;
    opacity: .15;
}

.loader::after {
    border: 2px solid;
    border-color: transparent;
    border-top-color: currentColor;

    -webkit-animation: spin-loader .6s linear;
    animation: spin-loader .6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.loader.md,
.loader.md::before,
.loader.md::after {
    width: 25px;
    height: 25px;
}

.loader.md::before {
    border: 0.1rem solid currentColor;
    opacity: .15;
}

.loader.md::after {
    border: 0.1rem solid;
    border-color: transparent;
    border-top-color: currentColor;
}

.loader.sm,
.loader.sm::before,
.loader.sm::after {
    width: 20px;
    height: 20px;
}

.loader.sm::before {
    border: 0.1rem solid currentColor;
    opacity: .15;
}

.loader.sm::after {
    border: 0.1rem solid;
    border-color: transparent;
    border-top-color: currentColor;
}

.loader.lg,
.loader.lg::before,
.loader.lg::after {
    width: 35px;
    height: 35px;
}

.loader.lg::before {
    border: 0.1rem solid currentColor;
    opacity: .15;
}

.loader.lg::after {
    border: 0.1rem solid;
    border-color: transparent;
    border-top-color: currentColor;
}

.loader.xlg,
.loader.xlg::before,
.loader.xlg::after {
    width: 50px;
    height: 50px;
}

.loader.xlg::before {
    border: 0.1rem solid currentColor;
    opacity: .15;
}

.loader.xlg::after {
    border: 0.1rem solid;
    border-color: transparent;
    border-top-color: currentColor;
}

@-webkit-keyframes spin-loader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin-loader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* auth page */

.auth-page {
    width: 100%;
    height: 100vh;
    display: flex;
    column-gap: 0;
}

.auth-page .halve {
    width: 50%;
    padding: 1.5rem 1.5rem;
}

.auth-page .left-halve {
    background-color: #ffffff;
}

.auth-page .right-halve {
    background-color: #ffffff;
    width: 60%;
    padding-left: 0;
}

.auth-page .auth-board {
    width: 100%;
    height: 100%;
    background-color: #edf0f9;
    border-radius: 20px;
}

.auth-page .logo-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.auth-page .logo {
    width: 160px;
}

.auth-page .auth-form {
    width: 55%;
    margin: 0 auto;
}

.auth-page .left-halve .auth-footer {
    width: calc(100% - 3rem);
}

.header.stick {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1000;
}

.navbar {
    background: rgb(246, 244, 255);
    background: linear-gradient(142deg, rgba(246, 244, 255, 1) 0%, rgba(255, 236, 247, 0.33) 100%);
}

.navbar .container {
    justify-content: center;
    min-height: 55px;
}

.navbar .container {
    padding: 0 !important;
}

.navbar .navbar-brand-box {
    min-width: 100px;
    min-height: 30px;
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    font-size: unset;
}

.navbar .brand-logo {
    width: 190px;
}

.navbar .navbar-nav {
    padding: 0;
    column-gap: 32px;
}

.navbar .navbar-nav .nav-link {
    padding: 0;
}

.navbar-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-toggle .icon {
    color: var(--swj-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggle.active {
    background-color: rgba(76, 39, 223, 0.1);
    box-shadow: 0 4px 16px rgba(76, 39, 223, 0.15);
}

.navbar-mobile-menu {
    display: none;
}

.navbar-mobile-close {
    border: none;
    background: transparent;
    padding: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navbar-mobile-close .icon {
    color: var(--swj-900);
}

.navbar-mobile-close:hover {
    background-color: rgba(48, 43, 98, 0.08);
}

body.navbar-open {
    overflow: hidden;
}

@media (min-width: 576px) {
    .navbar-expand-sm .navbar-nav .nav-link {
        padding: 0;
    }
}

.hero {
    width: 100%;
    height: 100vh;
    overflow-y: hidden;
}
.hero.hero-65{
    height: 65vh;
}
.hero.hero-70{
    height: 70vh;
}
.hero.hero-75{
    height: 75vh;
}
.hero.hero-80{
    height: 80vh;
}
.hero .container{
    padding: 0 !important;
    height: 100%;
}
.hero .hero-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    column-gap: 0;
    padding-top: 71px;
}
.hero .hero-wrapper.centered{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero .hero-left{
    width: 42%;
    margin-right: auto;
    height: calc(100vh - 71px);
}
.hero .hero-right{
    width: 58%;
    margin-left: auto;
    height: calc(100vh - 71px);
    display: flex;
    align-items: center;
}
.hero .sweechr-infra{
    width: 100%;
}
.hero .sweechr-blur{
    width: 1230px;
    left: -25rem;
    bottom: -25rem;
}
.hero.hero-about .sweechr-blur{
    z-index: -1;
}
.hero.hero-about{
    height: auto;
    min-height: 0;
    padding: 140px 0 120px;
}
.hero.hero-about .container{
    height: auto;
}
.hero.hero-about .hero-wrapper{
    height: auto;
    min-height: 0;
    padding-top: 0;
}
.hero.hero-about .hero-wrapper.centered{
    justify-content: flex-start;
}
.hero.hero-about .ui-text-center{
    max-width: 820px;
    margin: 0 auto;
}
.hero .sweechr-infra img,
.hero .sweechr-blur .logo-blur{
    max-width: 100%;
}
.hero .sweechr-blur .logo-blur path{
    backdrop-filter: blur(4px) !important;
}
.hero .hero-caption{
    width: 120%;
    top: 4.5rem;
}
.hero-caption h1, .hero h1.caption {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(166deg, #302B62 1.4%, #4C27DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero .hero-pill{
    padding: 0.6rem 1.5rem;
    background-color: var(--swp-100);
    border-radius: 100px;
    display: flex;
    align-items: center;
    width: 35%;
}

.section-growth .growth-box{
    border-radius: 34px;
    padding: 5rem 3rem;
}

.section-growth .growth-pill{
    border-radius: 100px;
    padding: 0.55rem 2rem;
    background-color: rgb(255, 255, 255, 0.25);
    margin: 0 auto;
    display: inline-flex;
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.join-modal .modal-body{
    padding: var(--m4-8rem) !important;
}
.join-modal .cm-header{
    margin-top: var(--m4-24rem);
}
.join-modal .cm-header h2{
    font-size: 27px !important;
    color: var(--swj-900);
}

.join-modal .modal-content {
    background-image: url("../images/assets/bg@modal-special.jpg");
    background-size: cover !important;
	background-repeat: no-repeat !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
    background-position: center !important;
}

.hero-about .caption {
    margin: 0 auto;
}

.footer{
    background-color: var(--swg-50);
    padding: 3rem 0;
}

.footer .copyright-links{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .copyright-links a{
    margin: 0 0.7rem;
}
