@charset "utf-8";

@import url('../font/stylesheet.css');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Color */
    --title-color: #ffffff;
    --text-light: #93989A;
    --primary-color: #262242;
    --secondary-color: rgba(153, 156, 162, 0.1);
    --white-color: #ffffff;
    --black-color: #010102;

    /* Typography */
    --body-font: 'Helvetica Now Display', sans-serif;
    --title-font: 'Helvetica Now Display', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-bolder: 900;

    /* Others */
    --transition: 0.3s;
}

/* -----------------------------------
    General CSS
-------------------------------------*/
html,
body {
    font-size: 16px;
    color: var(--white-color);
    font-family: var(--body-font);
    vertical-align: baseline;
    line-height: 32px;
    font-weight: var(--font-weight-bold);
}

body {
    background-color: var(--black-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    backface-visibility: hidden;
}

[type="submit"] {
    cursor: pointer;
}

p {
    font-family: var(--body-font);
    color: var(--body-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: var(--font-weight-semi-bold);
    margin-bottom: 0;
}

h1 {
    font-size: 88px;
    line-height: 100px;
}

h2 {
    font-size: 66px;
    line-height: 81px;
}

h3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: var(--font-weight-medium);
}

h4 {
    font-size: 25px;
    line-height: 24px;
}

h5 {
    font-size: 32px;
    line-height: 38px;
}

h6 {
    font-size: 25px;
    line-height: 30px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    outline: none !important;
}

a:active,
a:hover {
    text-decoration: none;
    outline: 0 none;
    color: #f36eae;
}

.fix {
    overflow: hidden;
}

.no-marg {
    margin: 0;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: 0;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

blockquote {
    padding: 25px 35px;
    background: #f5f5f5;
    margin: 30px 0 30px 30px;
    box-shadow: -5px 0 #232323;
}

::-moz-selection {
    background: var(--primary-color);
    text-shadow: none;
    color: #ffffff;
}

::selection {
    background: var(--primary-color);
    text-shadow: none;
    color: #ffffff;
}

input[type="email"],
input[type="text"],
textarea,
input[type="phone"],
button {
    outline: none;
    border: none;
}

.input-grp input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid #FFFFFF;
    border-radius: 6px;
    vertical-align: middle;
    cursor: pointer;
}

.input-grp input[type="checkbox"]:checked::before {
    position: absolute;
    content: "\f00c";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font: 600 14px 'Font Awesome 6 Free';
    color: var(--white-color);
    text-align: center;
    line-height: 20px;
}

textarea {
    overflow: hidden;
}

button {
    display: inline-block;
    background-color: transparent;
    border: 0;
    outline: 0;
}

.color-text {
    background-image: linear-gradient(71.24deg, #982DEC -8.42%, #DC8DF8 39.7%, #A9C4F3 82.05%);
    background-clip: text;
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* animation: textanim 2s linear infinite; */
}

@keyframes textanim {
    100% {
        background-position: 200%;
    }
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pt-200 {
    padding-top: 200px !important;
}

.pt-320 {
    padding-top: 320px !important;
}

.pb-170 {
    padding-bottom: 170px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-112 {
    padding-bottom: 112px !important;
}

.pr-60 {
    padding-right: 60px;
}

.mt-minus-90 {
    margin-top: -90px;
}

.mb-minus-90 {
    margin-bottom: -90px;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mt-100 {
    margin-top: 100px;
}

.scroll-mt-120 {
    scroll-margin-top: 120px;
}

.opc-7 {
    opacity: 0.71;
}

.bg-color {
    background-color: var(--primary-color);
}

/* -----------------------------------
    Global Design
-------------------------------------*/

.sec-spacer {
    padding: 130px 0;
}

.sec-spacer-90 {
    padding: 90px 0;
}

.sec-spacer-top {
    padding-top: 150px;
}

.sec-spacer-top-85 {
    padding-top: 85px;
}

.sec-spacer-top-95 {
    padding-top: 95px;
}

.sec-spacer-bottom-75 {
    padding-bottom: 75px;
}

.sec-spacer-bottom-80 {
    padding-bottom: 80px;
}

.sec-spacer-bottom {
    padding-bottom: 125px;
}

.sec-spacer-bottom-100 {
    padding-bottom: 100px;
}

.sec-spacer-bottom-120 {
    padding-bottom: 120px;
}

.sec-spacer-bottom-130 {
    padding-bottom: 130px;
}

.btn {
    display: inline-block;
    width: max-content;
    height: 46px;
    color: var(--white-color);
    border-radius: 85px;
    line-height: 46px;
    padding: 0;
}

.primary-btn {
    background-image: linear-gradient(71.24deg, #982DEC -8.42%, #DC8DF8 39.7%, #A9C4F3 82.05%);
    border: 0;
}

.btn:hover {
    color: var(--white-color);
    background-image: linear-gradient(71.24deg, #c1467d -8.42%, #c1467d 39.7%, #c1467d 82.05%);
}

.btn:hover img,
.btn:hover i {
    /* animation: aniArrow cubic-bezier(0, 0.6, 1, 0.4) reverse 0.5s; */
    animation: toRightFromLeft .6s linear forwards;
}

.btn:focus {
    box-shadow: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    left: -28px;
    font-size: 20px !important;
    outline: none;
    z-index: 1;
}

.owl-next {
    left: auto;
    right: -28px;
}

.owl-dot {
    cursor: pointer;
}

.sec-title .clr-text {
    background-image: linear-gradient(94.84deg, #B186CB 5.59%, #FDA9B6 96.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */

.kt-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: ease-in .1s;
    z-index: 100;
}

.kt-header.sticky {
    top: 0;
    background-color: var(--black-color);
    border-color: rgb(29, 29, 38);
}

.header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(50, 50, 50, 0.24);
    border-radius: 10px;
    padding: 12px 40px;
}

.header-3 .header-container {
    background-color: transparent;
    padding: 12px 0;
}

.header-3 .header-left {
    display: flex;
    align-items: center;
}

.header-3 .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-3 .nav-menu a {
    display: block;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: #A1A1AA;
    line-height: 18px;
    text-transform: capitalize;
}

.header-3 .header-right,
.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.header-actions {
    gap: 16px;
}

.header-3 .btn {
    height: 52px;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    background-color: #141417;
    border-radius: 0;
    padding: 0 24px;
    line-height: 50px;
}

.header-3 .primary-btn {
    color: #000;
    background-image: linear-gradient(95.22deg, #B186CB -6.09%, #F9B2B9 108.11%);
}

/* Lang Switcher */

.lang-switcher {
    position: relative;
}

.lang-switcher .flag {
    display: inline-block;
    vertical-align: baseline;
}

.lang-switcher .lang {
    font: var(--font-weight-medium) 14px/17px var(--body-font);
}

.lang-switcher .lang:hover {
    color: var(--white-color);
}

.lang-switcher .lang-list {
    position: absolute;
    top: 90px;
    left: 0px;
    width: max-content;
    background-color: #1D1D26;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 12px 12px;
    padding: 6px 12px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.lang-switcher .lang-list .single-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.lang-switcher .lang-list .single-lang .lang-text {
    display: block;
    font: var(--font-weight-medium) 14px/17px var(--body-font);
    color: var(--white-color);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.lang-switcher .lang-list::before {
    content: '';
    display: block;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(66.16deg, #5B0EEA 0.12%, #EE4525 95.94%);
}

.lang-switcher .lang-list-open {
    opacity: 1;
    top: 52px;
    visibility: visible;
}

/* Newsletter */

.kt-newsltr-2 {
    padding-bottom: 150px;
}

/* .kt-newsltr-2 .ltr-content{
    display: flex;
    align-items: center;
    gap: 250px;
} */

.ltr-content h2 {
    font: var(--font-weight-medium) 80px/90px 'DM Sans', sans-serif;
}

.ltr-content .btn {
    width: 152px;
    height: 58px;
    font: var(--font-weight-bold) 22px/22px 'DM Sans', sans-serif;
    color: #000;
    background-image: linear-gradient(92.71deg, #B488CA -3.66%, #F9B3B9 111.36%);
    border: 0;
    border-radius: 0;
    line-height: 58px;
}

/* Join Us */

.kt-join-us {
    padding: 200px 0 130px;
}

.kt-join-us .sec-title {
    font: var(--font-weight-medium) 60px/70px 'DM Sans', sans-serif;
    background-image: linear-gradient(94.84deg, #B186CB 5.59%, #FDA9B6 96.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 80px;
}

.contact-info-wpr {
    position: relative;
    max-width: 90%;
    background: url("../images/shapes/border-area.png") no-repeat bottom left;
    background-size: 100% 100%;
    margin: 0 auto;
    padding: 50px;
}

.contact-info-wpr::after {
    position: absolute;
    content: "";
    top: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/shapes/grdnt-elips.png") no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.contact-info {
    border-bottom: 1px solid #151515;
    padding: 16px 0 24px;
}

.contact-info:last-of-type {
    border: 0;
    margin-bottom: 50px;
}

.contact-info h3 {
    font: var(--font-weight-medium) 26px/36px 'DM Sans', sans-serif;
}

.contact-info p {
    max-width: 350px;
    font: var(--font-weight-medium) 16px/26px 'DM Sans', sans-serif;
    color: #A1A1AA;
    margin-top: 8px;
}

.contact-info a {
    display: block;
    font: var(--font-weight-medium) 20px/26px 'DM Sans', sans-serif;
    text-decoration: underline;
    text-decoration-color: #A1A1AA;
    margin-top: 8px;
}

.cnct-btn {
    display: inline-block;
    width: 360px;
    height: 55px;
    background-color: #141414;
    border: 0;
    text-align: center;
    line-height: 55px;
    margin-bottom: 24px;
}

.cnct-btn:last-child {
    color: #000;
    background-image: linear-gradient(96.89deg, #B689C9 -3.92%, #EFACBB 105.6%);
}

.clr-text {
    background-image: linear-gradient(94.84deg, #B186CB 5.59%, #FDA9B6 96.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.log-form {
    background-color: #121212;
    border-radius: 21px;
    padding: 40px;
}

.kt-signup .heading h3 {
    font: var(--font-weight-medium) 32px/40px var(--body-font);
    margin: 32px 0;
}

.kt-signup .heading p {
    font: var(--font-weight-normal) 16px/22px var(--body-font);
    margin: 8px 0 16px;
    text-align: center;
}

.log-form .input-grp {
    position: relative;
    margin-bottom: 10px;
}

.log-form .input-grp label {
    font: var(--font-weight-normal) 18px/28px 'DM Sans', sans-serif;
    color: #A1A1AA;
    margin-bottom: 10px;
}

.log-form .input-grp input {
    width: 100%;
    height: 54px;
    color: var(--white-color);
    background: #2D2D2D;
    border: 0;
    margin-bottom: 10px;
    padding: 8px 16px;
    outline: none;
}

.log-form .input-grp textarea {
    width: 100%;
    height: 114px;
    color: var(--white-color);
    background: #2D2D2D;
    border: 0;
    margin-bottom: 10px;
    padding: 8px 16px;
    outline: none;
}

.log-form .input-grp input::placeholder,
.log-form .input-grp textarea::placeholder {
    font: var(--font-weight-normal) 16px/20px 'DM Sans', sans-serif;
    color: #FFFFFF;
    opacity: .2;
}

.log-form .input-grp img {
    position: absolute;
    top: 52px;
    right: 16px;
}

.contact-info-wpr .submit-btn {
    width: 130px;
    height: 50px;
    font: var(--font-weight-medium) 18px/18px 'DM Sans', sans-serif;
    color: #000;
    background-image: linear-gradient(92.71deg, #B488CA -3.66%, #F9B3B9 111.36%);
    border: 0;
    border-radius: 0;
    line-height: 50px;
    text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Footer */

.footer-2 {
    padding-top: 140px;
}

.footer-2 .social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.footer-2 .footer-content p {
    max-width: 178px;
    font: var(--font-weight-normal) 16px/26px var(--body-font);
    color: rgba(255, 255, 255, 0.5);
    margin: 12px 0;
}

.footer-2 .footer-widget h5 {
    font: var(--font-weight-bold) 14px/20px var(--body-font);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.footer-2 .footer-menu li a {
    display: inline-block;
    font: var(--font-weight-normal) 15px/24px var(--body-font);
    color: #8B8B8D;
    margin-bottom: 8px;
}

.footer-2 .footer-menu li:last-child a {
    margin-bottom: 0;
}

.footer-2 .payments {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.footer-2 .payments img {
    width: 24px;
}

.footer-widget .shape {
    position: relative;
    top: -16px;
    left: -50px;
}

.footer-bottom {
    border-top: 1px solid #3F3F46;
    padding: 28px 0;
}

.footer-bottom p {
    font: var(--font-weight-normal) 16px/24px var(--body-font);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 25px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    background-image: linear-gradient(97.38deg, #DC8DF8 -8.73%, #F4AEBB 94.39%);
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--white-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--white-color), var(--white-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--white-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.contact-info-wpr .submit-btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
    touch-action: none;
    opacity: 0.7;
}