/* font Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

/* variables */
:root {
    --gray: 24, 24, 27;
    --dead-white: 231, 233, 234;
    --primary: 65, 81, 229;
}


#navbar {
    width: 100%;
    height: 100%;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

#nav-logo {
    width: 55px;
}

.nav-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-wrapper ul li {
    margin: 0 1rem;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(var(--gray));
}

.nav-wrapper ul li a {
    text-decoration: none;
    color: rgba(var(--gray));
    font-weight: 700;
    transition: .2s ease-in-out;
}

.nav-wrapper ul li a:hover {
    opacity: .6;
    transition: .2s ease-in-out;
}

.btn-md {
    padding: .8rem 2rem;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    background: #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .2s ease-in-out;
}

.btn-md:hover {
    opacity: .8;
    transition: .2s ease-in-out;
}

.btn-md i {
    font-size: 1.125rem;
}

.black-bg {
    background: rgba(var(--gray));
    color: rgba(var(--dead-white));
}

.bordered-bg {
    background: white;
    color: rgba(var(--gray));
    border: 1px solid rgba(var(--gray), .3);
    padding: .6rem 1rem;
    font-size: .7rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.primary-bg {
    background: rgba(var(--primary));
    color: rgba(var(--dead-white));
}

.hero-title {
    font-size: 55px;
    font-weight: 600;
    color: rgba(var(--dead-white));
    line-height: 100%;
}

.txt-blue {
    color: rgba(var(--primary));
}

.txt-white {
    color: rgba(var(--dead-white));
}

.txt-black {
    color: rgba(var(--gray));
}

.hero-desc {
    font-size: 22px;
    font-weight: 400;
    color: rgba(var(--dead-white), .6);
    line-height: normal;
}

.super-btn {
    display: flex;
    align-items: center;
    position: relative;
}

.super-btn button {
    padding-left: 5rem;
}

.super-btn-icon {
    background: rgba(var(--gray));
    position: absolute;
    display: flex;
    height: 100%;
    border-left: 1px solid rgba(var(--dead-white), .2);
    border-bottom: 1px solid rgba(var(--dead-white), .2);
    border-top: 1px solid rgba(var(--dead-white), .2);
    align-items: center;
    justify-content: center;
    color: rgba(var(--dead-white));
    font-size: 1.5rem;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: +1;
}

.full-height {
    height: 100vh;
}

.section-top {
    display: flex;
    justify-content: space-between;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    color: rgba(var(--gray));
    line-height: 100%;
}

.section-desc {
    color: rgba(var(--gray), .6);
    font-size: 18px;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 100%;
    max-width: 70%;
}

.section-top-content {
    max-width: 65%;
}

.feature-card {
    border-radius: 60px;
}

.feature-card-top {
    padding: 3rem;
    height: 50%;
    background: rgba(var(--gray));
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
}

.feature-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.feature-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(var(--primary), .3);
    color: rgba(var(--primary));
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    border-radius: 20px;
    justify-content: center;
}

.feature-card-name {
    font-size: 25px;
    font-weight: 600;
    color: rgba(var(--dead-white));
    margin-right: auto;
    margin-left: 1rem;
    margin-bottom: 0;
    max-width: 70%;
}

.container-fluid {
    width: 85%;
}

/* mobile */
@media (max-width: 768px) {
    .container-fluid {
        width: 90%;
    }
}

.feature-card-top p {
    color: rgba(var(--dead-white), .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
    margin-top: 1rem;
}

.feature-card-bottom img {
    width: 100%;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.swiper-slide {
    opacity: .3;
    transition: opacity .3s ease-in-out;
}

.swiper-slide-next {
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

.center-section-top {
    display: flex;
    justify-content: center;
    text-align: center;
}

.center-section-top .super-btn {
    display: inline-block;
}

.feedback-card {
    border-radius: 40px;
    padding: 2rem;
    background: rgba(var(--gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feedback-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 100%;
}

.feedback-image img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-name {
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--dead-white));
    margin-left: 1rem;
    margin-right: auto;
}

.feedback-stars ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.feedback-stars {
    margin-left: 2rem;
}

.feedback-star {
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(var(--primary));
    border-radius: 5px;
    color: rgba(var(--dead-white));
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .1rem;
    margin-bottom: 1px;
}

.feedback-bottom p {
    color: rgba(var(--gray), 1);
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 0;
    text-align: left;
    margin-bottom: 0;
    background: rgba(var(--dead-white));
    padding: 1rem;
    border-radius: 20px;
}

.term-label {
    margin-top: 1rem;
    color: rgba(var(--dead-white), .4);
    font-size: 10px;
}

.term-label a {
    color: rgba(var(--dead-white), .6);
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease-in-out;
}

.term-label a:hover {
    color: rgba(var(--dead-white), 1);
    transition: .2s ease-in-out;
}


.contact-wrapper {
    background: rgba(var(--gray));
    padding: 3rem;
    border-radius: 30px;
    height: 100%;
}

.contact-title {
    font-weight: 600;
}

.custom-input {
    width: 100%;
    padding: 1rem;
    background: rgba(var(--dead-white), .15);
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    resize: none;
    font-weight: 400;
    color: rgba(var(--dead-white));
    border: 1px solid rgba(var(--dead-white), .2);
}

.custom-input::placeholder {
    font-weight: 500;
    color: rgba(var(--dead-white), .6);
}

.custom-input:active,
.custom-input:focus {
    outline: none;
}

.contact-form button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.ai-contact {
    background: rgba(var(--dead-white));
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(var(--gray), .2);
    min-height: 100%;
    position: relative;
}

.ai-contact .messages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1rem;
    height: 28vh;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
}

.ai-contact .messages::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.ai-contact .input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    position: relative;
    width: 100%;
}

.ai-contact .input-wrapper input {
    background: white;
    margin-right: 1rem;
    color: rgba(var(--gray));
    border: 1px solid rgba(var(--gray), .2);
    margin-top: 0;
}

.ai-contact .input-wrapper input::placeholder {
    color: rgba(var(--gray), .6);
}

.ai-contact .input-wrapper button {
    height: 3.7rem;
    width: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ai-contact .input-wrapper button i {
    font-size: 1.75rem;
}

button:disabled {
    cursor: not-allowed;
    opacity: .7;
    background: rgba(var(--gray));
}

.loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lang-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 1.5rem;
    top: 2px;
}

.selected-lang {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 9rem;
    justify-content: center;
}

.selected-lang span {
    font-weight: 700;
    margin-left: .5rem;
    font-size: .8rem;
    position: relative;
    top: 1px;
}

.selected-lang img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    width: 100%;
    z-index: +2;
}

.dropdown div {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    font-size: .8rem;
    position: relative;
    top: 1px;
    font-weight: 700;
}

.dropdown div:hover {
    background: #f0f0f0;
}

.dropdown img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.terms-wrapper h1 {
    font-size: 30px;
    font-weight: 700;
    color: rgba(var(--gray));
    line-height: 100%;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.terms-wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    color: rgba(var(--gray));
    line-height: 100%;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.terms-wrapper p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--gray));
    line-height: 150%;
    margin-bottom: 1rem;
}