@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap&Julius+Sans+One&display=swap");

:root {
    --primary-color: #56021f;
    --secondary-color: #7360f2;
    --primary-color-light: #d17d98;
    --third-color: #636363;
    --four-color: #303142;
    --primary-color-rgb: 255, 114, 104;
    --secondary-color-rgb: 115, 96, 242;
    --third-color-rgb: 99, 99, 99;
    --four-color-rgb: 48, 49, 66;
    --link-color: #303142;
    --link-color-hover: #56021f;
    --link-color-active: #56021f;
    --gradient-color-from: #034a89;
    --gradient-color-to: #1b8df1;
    --gradient-two-color-from_two: #2f057b;
    --gradient-two-color-to_two: #6441c1;
}

*,
::after,
::before {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    background-color: #ebecf0;
    font-size: 24px;
    line-height: 1.66666;
    color: var(--third-color);
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
    overscroll-behavior: none;
    font-family: inter;
    margin: 0;
    padding: 0;
    font-family: "Mona Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}
body.bg-white{
    background-color: #fff;
}
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #2e2e2e;
    border: 2px solid transparent;
    background-clip: padding-box;
}

body::-webkit-scrollbar-thumb:hover {
    border: 0;
}

body::-webkit-scrollbar-track {
    background: inherit;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

a {
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    color: var(--link-color);
}

a:before,
a:after {
    transition: inherit;
}

a:hover,
a:focus {
    color: var(--link-color-hover);
}

a:active,
a.nice-select.open {
    color: var(--link-color-active);
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

a,
a:hover,
a:focus,
a:before,
a:after {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--four-color);
    font-weight: 700;
    margin: 0 0 15px;
    clear: both;
    line-height: 1.41666;
}

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 42px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 22px;
}

h6,
.h6 {
    font-size: 18px;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

p {
    margin: 0 0 15px;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
input,
input:focus,
input:active,
textarea{
    background: transparent;
    outline: 0;
}
input,
textarea{
    color: #fff;
}
textarea{
    padding-top: 15px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    /* box-shadow: inset 0 0 20px 20px #1b8df1; */
    box-shadow: 0 0 0px 1000px #1b8df1 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
.btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    padding: 18px 38px;
    line-height: 140%;
    letter-spacing: 0.005em;
    border-radius: 10px;
    transition: 0.5s;
    position: relative;
    cursor: pointer;
    height: auto;
    outline: none;
    box-shadow: none !important;
    border: 0px !important;
    overflow: hidden;
}
.neer-btn-primary {
    background-image: linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='var(--gradient-color-from)',endColorStr='var(--gradient-color-to)');
}
.btn.btn-default:after {
    content: "";
    background: #fff;
    position: absolute;
    height: 120%;
    width: 15px;
    opacity: 0.2;
    left: -45%;
    top: -10%;
    transition: all 0.8s;
    transform: rotate(15deg);
}
.btn:hover:after {
    left: 130%;
}
.neer-container {
    padding: 0 40px;
    margin: 0 auto;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
img {
    height: auto;
    max-width: 100%;
    box-shadow: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
.w50 {
    width: 50%;
}
.iti{
    width: 100%;
}
.iti--separate-dial-code .iti__selected-flag{
    background: transparent !important;
}
.iti--separate-dial-code .iti__selected-dial-code{
    color: #fff;
}
.iti__arrow{
    border-top: 4px solid #fff;
}
@media screen and (max-width: 991px) {
    .neer-container {
        padding: 0 24px;
    }
}
