@import url("https://fonts.googleapis.com/css2?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&display=swap");

:root {
    --main-blue: #0149ed;
    --soft-blue: #43bcff;
    --code-blue: #1972f4;
    --dark: #383838;
    --bg-gradient: linear-gradient(
        72.36deg,
        rgba(101, 150, 255, 0.015) 0.38%,
        rgba(4, 78, 238, 0.1) 100%
    );
    --toggle-white: #383838;
    --toggle-dark: #fff;
    --mobile-menu: linear-gradient(
        to top,
        #43bcff,
        #95c9ff,
        #c5d8ff,
        #e7eaff,
        #ffffff
    );
    --bg-light: #f2f5f8;
    --form-label: #505050;
    --form-placeholder: #9c9898;
    --menu-overlay: #0149ed;
    --menu-hover: #0149ed;
    --reset-btn-bg: #ffffff;
    --how-works-banner-bg: rgba(242, 245, 248, 0.6);
    --how-works-banner-blue: #1972f4;
    --how-works-blur: 100px;
    --partnership-icon: url("../image/ship-dark.svg");
    --gray-toggle: #83838b;
    --auth-bg: #eff3fe;
    --auth-form-blue: #176ef3;
    --toggle-bg: #fff;
    --primary-red: #ff0000;
    --blue-to-white: #1972f4;
    --profile-orange: #e98224;
    --status-purple: #9d50de;
    --status-yellow: #ffc107;
    --status-green: #5ece54;
    --status-red: #e92424;
    --status-blue: #2473e9;
    --border-gray: #e2e2e2;
    --border-transparent: transparent;
    --disabled-bg: #efefef;
}

.dark-mode {
    --soft-blue: #1a5a96;
    --bg-gradient: #323232;
    --toggle-white: #f0ebe3;
    --toggle-dark: #616161;
    --mobile-menu: #383c42;
    --menu-overlay: #31363f;
    --footer-border: #807f7f;
    --form-label: #ffffff;
    --form-placeholder: #7c7c7c;
    --reset-btn-bg: #0149ed;
    --code-blue: #1972f4;
    --how-works-banner-bg: rgba(41, 41, 41, 0.6);
    --how-works-banner-blue: #1972f4;
    --bg-light: #31363f;
    --how-works-blur: 40px;
    --partnership-icon: url("../image/ship-white.svg");
    --gray-toggle: #fff;
    --auth-bg: #323232;
    --toggle-bg: #323232;
    --blue-to-white: #fff;
    --border-gray: #4d4d4d;
    --border-transparent: #4d4d4d;
    --disabled-bg: #4d4d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
    margin: 0;
    padding: 0;
}
ul,
ol {
    list-style-type: none;
}

body {
    background: var(--bg-gradient) no-repeat;
    scroll-behavior: smooth;
}

.page-loader-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

.scroll-to-top {
    position: fixed;
    border: none;
    outline: none;
    bottom: 40px;
    right: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--main-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow:
        0 2px 4px 0 rgba(0, 0, 0, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.08);
}

.main-bg {
    height: 100dvh;
    overflow: auto;
}

.main-logo {
    margin-bottom: 40px;
}
.main-logo .author-text {
    bottom: 11px;
    right: 37px;
    text-wrap: nowrap;
    color: var(--toggle-white);
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.my-75 {
    margin-top: 75px;
    margin-bottom: 75px;
}

.my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.my-150 {
    margin-top: 150px;
    margin-bottom: 150px;
}

.my-200 {
    margin-top: 200px;
    margin-bottom: 200px;
}
.gap-6 {
    gap: 6rem;
}

.toggle-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.toggle-slot {
    position: relative;
    height: 30px;
    width: 60px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 700ms ease;
    background-color: transparent;
}
.toggle-slot.theme-dark {
    background: url("../image/toggle-day.svg") no-repeat center center / contain;
}
.toggle-slot.theme-light {
    background: url("../image/toggle-night.svg") no-repeat center center /
        contain;
}
.toggle-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    --webkit-transition: transform 700ms cubic-bezier(0.26, 2, 0.46, 0.71);
    transition: transform 700ms cubic-bezier(0.26, 2, 0.46, 0.71);
}
.toggle-checkbox:checked ~ .toggle-slot .toggle-icons {
    --webkit-transform: translate(-34px, 0);
    transform: translate(-34px, 0);
}
.header {
    height: 95px;
}
.header-logo-wrapper {
    display: inline-block;
    width: 200px;
}
.header-logo-wrapper img {
    width: 100%;
    object-fit: cover;
}
.header .home-icon {
    position: relative;
    z-index: 99;
    font-size: 18px;
}
.desktop-nav ul li a {
    padding: 7px 15px !important;
    font-size: 14px;
    color: var(--toggle-white);
    display: inline-block;
    font-weight: 500;
    background-image: none;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 5px !important;
    text-align: center;
}
.desktop-nav ul li a:hover {
    color: var(--toggle-white) !important;
    opacity: 0.7;
}
.desktop-nav ul li a.login-btn {
    background-color: var(--main-blue);
    border-radius: 11px !important;
    color: #fff !important;
}
.desktop-nav ul li a.login-btn:hover {
    background-color: var(--main-blue);
}
.desktop-nav ul li a.home-icon:hover {
    color: var(--toggle-white) !important;
}
.banner-text br,
.big-title br {
    display: none;
}
/* .text-animation {
    height: 70px;
    overflow: hidden;
}
.text-animation > div > div {
    height: 2.6rem;
    width: 200px;
    margin-bottom: 3rem;
    display: inline-block;
    text-align: left;
    background-color: transparent;
    font-size: 30px;
    font-weight: bold;
}
.text-animation div:first-child {
    animation: text-animation 9s infinite;
}
.question div {
    border-radius: 5px;
    font-weight: 500;
    color: var(--dark);
    padding: 0 8px;
    background-color: transparent;
} */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.form-section {
    height: calc(100vh - 95px);
    padding: 0 120px;
}
.form-section .form-side {
    gap: 300px;
}
.form-section .start-form-inner {
    margin-bottom: 150px;
}
.form-section .big-title {
    margin-bottom: 50px;
}
.form-control {
    background-color: var(--toggle-dark) !important;
    color: var(--form-label) !important;
}
.form-control:not(.chat-form .prompt-input) {
    border-radius: 10px !important;
    font-size: 14px !important;
}
.form-control:focus {
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 0.25rem rgba(230, 246, 207, 0.25);
}
.form-control input::placeholder,
.form-control::placeholder {
    color: var(--form-placeholder);
    font-size: 15px;
}
.form-control.react-tel-input {
    padding: 0 !important;
}
.react-tel-input .form-control {
    border: none !important;
    width: 100% !important;
    padding-top: 15px !important ;
    padding-bottom: 15px !important;
    min-height: 37px;
}
.react-tel-input .form-control:focus {
    border: none !important;
    box-shadow: none !important;
}
.react-tel-input .country-list .country-name {
    color: initial !important;
}
::-webkit-calendar-picker-indicator {
    --webkit-filter: invert(0.5);
    filter: invert(0.5);
}
.react-tel-input .selected-flag {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    background-color: #fff;
}
.flag-dropdown {
    border: none !important;
    padding: 0 !important;
    margin-right: 20px !important;
}
.chat-form .start-chat-btn {
    top: 5px;
    right: 5px;
    background-color: var(--main-blue);
    color: #fff;
    font-weight: 500;
    border-radius: 40px !important;
    padding: 12px 50px !important;
    --webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.chat-form .start-chat-btn:hover {
    background: var(--bg-gradient);
    color: var(--toggle-white);
    border-color: var(--main-blue);
    box-shadow:
        0 2px 4px 0 rgba(0, 0, 0, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.08);
}
.chat-form .prompt-input {
    width: 100%;
    min-height: 60px;
    padding: 10px 125px 10px 15px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    color: #000;
    outline: none !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-left: 55px;
}
.start-chat-form .ai-icon {
    left: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
}
.chat-form-wrapper .speech-bubble {
    bottom: 90%;
    left: 40px;
    margin-bottom: 20px;
    background-color: #1b75f3;
    color: #fff;
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 14px;
    --webkit-transform: translateY(200%);
    transform: translateY(200%);
    --webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}
.chat-form-wrapper .speech-bubble::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #1b75f3;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0);
}
.chat-form-wrapper .speech-bubble.visible {
    --webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.PhoneInputInput {
    border: none !important;
    outline: none !important;
}
.chat-form-wrapper {
    margin-bottom: 150px;
}
.chat-form-wrapper .enco-text {
    color: var(--toggle-white);
}
.request-form-wrapper {
    padding: 0 16px;
    transition: all 1s ease;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.request-form-wrapper .form-info {
    margin-bottom: 15px;
}
.request-form-wrapper .form-info .yz-text {
    color: var(--toggle-white);
    font-weight: 500;
}
.request-form {
    padding: 20px;
    background-color: var(--toggle-dark);
    color: var(--toggle-white);
    height: auto;
    overflow: auto;
}
.request-form legend {
    padding: 5px 0;
    margin-bottom: 15px;
    color: var(--form-label);
    display: inline-block;
    border-bottom: 2px solid var(--main-blue);
    font-size: 18px !important;
}
.request-form .form-label:not(.phone-label),
.membership-form .form-label {
    color: var(--form-label);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
.request-form .form-label .requirement-block,
.membership-form .form-label .requirement-block,
.membership-form .form-check-label .requirement-block {
    font-size: 8px;
    color: var(--primary-red);
}
.request-form .submit-btn {
    background-color: var(--main-blue);
    color: #fff;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.request-form .submit-btn:hover {
    opacity: 0.8;
}
.request-form .reset-btn {
    background-color: var(--reset-btn-bg);
    color: var(--toggle-white);
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.request-form .reset-btn:hover {
    opacity: 0.8;
}
.request-form .react-tel-input .country-list {
    color: var(--toggle-white) !important;
}
.request-form .react-tel-input .flag-dropdown {
    border-radius: 7px 0 0 7px !important;
}
.request-form .request-form-buttons {
    height: 107px;
}
.request-form .react-datepicker,
.request-form
    .react-datepicker__time-container
    .react-datepicker__time
    .react-datepicker__time-box
    ul.react-datepicker__time-list {
    background-color: var(--toggle-dark) !important;
}
.request-form .react-datepicker-wrapper {
    width: 100% !important;
}
.request-form .react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text,
.request-form h2.react-datepicker__current-month,
.request-form .react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name,
.request-form .react-datepicker-time__header,
.request-form
    .react-datepicker__time-container
    .react-datepicker__time
    .react-datepicker__time-box
    ul.react-datepicker__time-list
    li.react-datepicker__time-list-item {
    color: var(--toggle-white) !important;
}
.request-form .react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover,
.request-form
    .react-datepicker__time-container
    .react-datepicker__time
    .react-datepicker__time-box
    ul.react-datepicker__time-list
    li.react-datepicker__time-list-item:hover {
    background-color: var(--main-blue) !important;
    color: #fff !important;
}
.request-form .react-datepicker__header {
    background-color: var(--toggle-dark) !important;
    color: var(--toggle-white) !important;
}
.request-form .form-select {
    background-color: var(--toggle-dark) !important;
    color: var(--toggle-white) !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    min-height: 37.7px !important;
}
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-wrapper img {
    position: fixed;
    top: 50px;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: -1;
}
.encolay-logo {
    width: 350px;
    height: 101px;
}
.enco-text .enco-logo,
.enco-brand .enco-logo {
    width: 70px;
    height: 20px;
}
.subfooter-brand-two {
    width: 100px;
    height: 40px;
}
.footer {
    padding-top: 20px;
    padding-bottom: 10px;
    padding-right: 80px;
    background-image: var(--bg-gradient);
    border-top: 1px solid var(--footer-border);
}
.footer a {
    color: var(--toggle-white);
    font-size: 14px;
    --webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer a:hover {
    opacity: 0.8;
}
.footer .carbon-text {
    color: var(--toggle-white);
    margin-top: 2px;
    font-size: 14px;
}
.footer .carbon-text .greenix-logo {
    min-width: 100px;
    height: 35px;
}
.footer-logo {
    bottom: 95px;
    left: 140px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    min-width: 300px;
    z-index: 99;
    background: var(--mobile-menu);
    color: #fff;
    --webkit-transform: translateX(100%);
    transform: translateX(100%);
    --webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.open-menu-icon {
    width: 32px !important;
    height: 32px !important;
    text-align: center;
}
.open-menu-icon svg path {
    fill: var(--toggle-white) !important;
}
.mobile-menu.visible {
    --webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu .close-icon {
    position: absolute;
    top: 21px;
    right: 24px;
    font-size: 20px;
    background-color: transparent;
    color: var(--toggle-white);
    cursor: pointer;
    border: none;
    outline: none;
}
.mobile-menu ul li {
    border-bottom: 1px solid #b8c2c8;
    padding-bottom: 5px;
}
.mobile-menu ul li a {
    font-size: 16px;
    color: var(--toggle-white);
    font-weight: 500;
}
.mobile-menu ul li a:hover {
    color: var(--toggle-white);
    opacity: 0.8;
}
.mobile-menu .mobile-footer li {
    border: none !important;
}
.mobile-menu .mobile-footer li a {
    font-size: 14px;
    color: var(--toggle-white);
}
.mobile-menu .mobile-logo {
    width: 90%;
    height: 60px;
    margin-top: 30px;
}
.mobile-menu .mobile-logo .author-text {
    bottom: -4px;
    right: 33px;
    text-wrap: nowrap;
    color: var(--toggle-white);
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--menu-overlay);
    opacity: 0.4;
    visibility: hidden;
}
.temp-logo-text {
    display: none;
}
.mobile-footer ul li {
    border: none !important;
}
.mobile-footer ul li a {
    font-size: 14px;
}
.request-received {
    min-height: calc(100dvh - 162px);
    color: var(--toggle-white);
    display: flex;
    align-items: center;
    padding-bottom: 200px;
}
.request-received h1 {
    font-size: 36px;
}
.request-received p {
    font-size: 18px;
}
/* @keyframes text-animation {
    0%,
    10% {
        margin-top: 0;
    }
    20%,
    30% {
        margin-top: -5.6rem;
    }
    40%,
    50% {
        margin-top: -11.2rem;
    }
    60%,
    70% {
        margin-top: -16.8rem;
    }
    80%,
    90% {
        margin-top: -22.4rem;
    }
    100% {
        margin-top: -25rem;
    }
} */

@media (max-width: 991px) {
    .header {
        height: auto;
    }
    #banner {
        margin-top: 35px;
        font-size: 16px !important;
    }
    .chat-form .start-chat-btn {
        right: 4px;
        top: 5px;
    }
    .footer .footer-message {
        order: -1;
    }
}

@media (max-width: 576px) {
    .encolay-logo {
        width: 250px;
        height: 101px;
    }
    .main-logo {
        margin-bottom: 15px;
    }
    .main-logo .author-text {
        bottom: 20px;
        right: 26px;
    }
    .desktop-nav ul li a {
        padding: 5px !important;
    }
    .chat-form .start-chat-btn {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .chat-form .prompt-input {
        padding-right: 90px !important;
        padding-left: 50px !important ;
    }
    .chat-form-wrapper {
        margin-bottom: 0;
    }
    .start-chat-form .ai-icon {
        width: 25px;
        height: 25px;
        top: 18px;
    }
    .chat-form-wrapper .speech-bubble {
        bottom: -50px;
        margin-bottom: 0;
        left: 20px;
    }
    .chat-form-wrapper .speech-bubble::after {
        bottom: 98%;
        clip-path: polygon(0 0, 0 99%, 100% 100%);
    }
    .footer {
        padding-top: 0;
        background-image: none;
    }
    .footer a,
    .footer .carbon-text {
        font-size: 13px;
    }
    .request-received {
        padding-bottom: 0;
    }
    .request-received h1 {
        font-size: 28px;
    }
    .request-received p {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .main-logo .author-text {
        bottom: 20px;
        right: 29px;
    }
    .mobile-menu {
        width: 100%;
    }
    .chat-form .start-chat-btn {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .chat-form .prompt-input::placeholder {
        font-size: 12px;
    }
    .request-form-wrapper {
        padding: 0 10px;
    }
    .footer .carbon-text {
        margin-top: 0;
    }
}
@media (max-width: 413px) {
    .chat-form-wrapper .speech-bubble {
        bottom: -70px;
    }
    .chat-form-wrapper .speech-bubble::after {
        bottom: 95%;
    }
}
@media (max-width: 370px) {
    .wrapped-logo-text {
        display: none;
    }
    .temp-logo-text {
        display: block;
        margin-top: -10px;
        margin-bottom: 10px;
        color: var(--toggle-white);
        text-align: center;
    }
}

/* PAGES STYLES */
.about {
    color: var(--toggle-white);
}
.about-banner {
    min-height: 334px;
    background: url("../image/about-banner.png") no-repeat center center / cover;
}
.about-banner-text {
    margin: 80px 0;
}
.mission-image {
    background: url("../image/our-mission-01.png") no-repeat center center /
        contain;
    min-height: 370px;
}
.vission-image {
    background: url("../image/our-vission-01.png") no-repeat center center /
        contain;
    min-height: 370px;
}
.services-wrapper {
    padding-top: 70px;
}
.service-cards {
    padding-left: 65px;
    z-index: 10;
}
.service-cards .service-bg {
    background-color: var(--bg-light);
    width: 65%;
    height: 90%;
    z-index: -1;
    left: 0;
    right: 0;
    top: -35px;
}
.service-card {
    background-color: var(--toggle-bg);
    color: var(--toggle-white);
    min-height: 220px;
    min-width: 380px;
    padding: 25px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
    gap: 15px;
}
.how-works-wrapper {
    background: var(--how-works-banner-bg);
    min-height: 400px;
}
.how-works-wrapper .big-title {
    animation: inner-left 1s 1s ease both;
}
.how-works-wrapper .big-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 90px;
    width: 90px;
    --webkit-filter: blur(var(--how-works-blur));
    filter: blur(var(--how-works-blur));
    background-color: var(--how-works-banner-blue);
    visibility: hidden;
}
.how-works-wrapper .big-title::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 80%;
    height: 50px;
    width: 50px;
    --webkit-filter: blur(var(--how-works-blur));
    filter: blur(var(--how-works-blur));
    background-color: var(--how-works-banner-blue);
    visibility: hidden;
}
.how-works-wrapper .big-title::after,
.how-works-wrapper .big-title::before {
    animation: be-visible-smooth 1s 1s forwards;
}

.how-works-wrapper .inner {
    gap: 100px;
    position: relative;
    animation: outer-left 1s 1s ease both;
}
.how-works-wrapper .big-title h1 {
    color: var(--toggle-white);
    font-size: 50px;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.how-works-wrapper .how-works-banner {
    width: 170px;
    height: 170px;
    animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.guide-container {
    color: var(--toggle-white);
}
.guide-container .guide-list {
    padding-left: 120px;
}
.guide {
    margin-top: 50px;
    padding: 30px;
}
.guide .guide-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--code-blue);
}
.guide .guide-code {
    color: var(--code-blue);
    font-size: 52px;
}
.guide .guide-title {
    font-weight: 500;
    font-size: 18px;
}
.pricing-wrapper {
    margin: 80px 0;
    color: var(--toggle-white);
}
.accordion {
    color: var(--toggle-white);
    border-color: #fff !important;
}
.accordion-item:first-of-type,
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type > .accordion-header .accordion-button {
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
}
.accordion-button {
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 18px;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}
.accordion-button.collapsed {
    border-radius: 18px;
    background-color: var(--togle-dark);
    color: var(--toggle-white);
    border: none !important;
}
.accordion-item {
    border: none;
    box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
    border-radius: 18px;
    background-color: var(--togle-dark);
    color: var(--toggle-white);
    border: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--toggle-white);
    background-color: var(--toggle-dark);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
}
.accordion-button.collapsed::after {
    content: "\f077";
    font-family: "FontAwesome";
    background-color: var(--togle-dark);
    color: var(--toggle-white);
    border-radius: 50%;
    box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}
.accordion-button:not(.collapsed)::after {
    content: "\f078";
    font-family: "FontAwesome";
    background-color: var(--code-blue);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}
.pages-footer {
    background-color: var(--dark);
    color: #fff;
    font-size: 15px;
    padding: 100px 0;
}
.pages-footer h5 {
    font-weight: 400;
    font-size: 18px;
}
.pages-footer ul li {
    margin-top: 15px;
}
.pages-footer ul li a {
    color: #f0ebe3;
    --webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.pages-footer ul li a:hover {
    color: var(--code-blue);
}
.subfooter {
    min-height: 100px;
}
.subfooter ul li a {
    color: var(--toggle-white);
    --webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}
.subfooter ul li a:hover {
    color: var(--code-blue);
}
.subfooter .social-links li a {
    display: inline-block;
}
.subfooter .social-links li a:hover {
    color: inherit;
}
.subfooter .social-links li a i {
    font-size: 26px;
}
.subfooter-brand {
    color: var(--toggle-white);
}
.subfooter-brand strong {
    border-left: 1px solid var(--toggle-white);
    padding-left: 12px;
}
.partnership-wrapper {
    color: var(--toggle-white);
}
.partnership-banner {
    background-color: var(--bg-light);
}
.partnership-banner .big-title h1 {
    color: var(--toggle-white);
    font-size: 50px;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.be-partner-terms {
    padding: 100px 0;
}
.conditions {
    padding-left: 60px;
}
.conditions ul li {
    position: relative;
}
.conditions ul li::before {
    content: var(--partnership-icon);
    font-family: "FontAwesome";
    position: absolute;
    left: 8px;
    bottom: 100%;
    color: var(--code-blue);
}
.partnership-models {
    background-color: var(--bg-light);
}
.partnership-models ol li {
    position: relative;
    padding-left: 15px;
    padding-bottom: 10px;
}
.partnership-models ol li::before {
    font-family: "FontAwesome";
    content: "\f111";
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 8px;
}
.partnership-advantages {
    padding: 100px 0;
}
.partnership-boxes-wrapper .padding-span {
    padding-left: 100px;
    display: block;
}
#partnershipModel option {
    color: var(--toggle-white);
    background-color: var(--toggle-dark);
}
.box-row-top div,
.box-row-bottom div {
    position: relative;
    padding: 50px;
    color: #fff;
    min-height: 190px;
}
.box-row-top div:nth-child(1),
.box-row-bottom div:nth-child(2) {
    background-color: #2473e9;
}
.box-row-top div:nth-child(2),
.box-row-bottom div:nth-child(1) {
    background-color: #1755b2;
}
.box-row-top div:nth-child(1)::before,
.box-row-bottom div:nth-child(2)::before {
    content: url("../image/partnership-icon-01.svg");
}
.box-row-top div:nth-child(2)::before,
.box-row-bottom div:nth-child(1)::before {
    content: url("../image/partnership-icon-02.svg");
}
.box-row-top div:nth-child(1)::before,
.box-row-bottom div:nth-child(2)::before,
.box-row-top div:nth-child(2)::before,
.box-row-bottom div:nth-child(1)::before {
    position: absolute;
    top: 40px;
    left: 30px;
    display: inline-block;
}
.partnership-form-wrapper {
    padding-top: 70px;
    padding-bottom: 120px;
}
.partnership-form-wrapper .form-steps {
    padding-left: 6rem !important;
}
.partnership-form-wrapper .form-steps li {
    position: relative;
    padding-top: 40px;
}
.partnership-form-wrapper .form-steps li::before {
    content: "";
    position: absolute;
    bottom: 90%;
    left: 105px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--status-blue);
}
.partnership-form-wrapper .form-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 122px;
    width: 93%;
    height: 2px;
    background-color: #c3e1ff;
}
.partnership-form-wrapper .form-steps-mobile li {
    position: relative;
    display: flex;
    align-items: center;
}
.partnership-form-wrapper .form-steps-mobile li {
    padding: 25px 0;
}
.partnership-form-wrapper .form-steps-mobile li::before {
    content: "";
    position: absolute;
    bottom: 60px;
    right: -8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--status-blue);
}
.partnership-form-wrapper .form-steps-mobile li::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -3px;
    width: 2px;
    height: 85%;
    background-color: #c3e1ff;
}
.partnership-form-wrapper .form-wrapper {
    background-color: var(--bg-light);
    padding: 60px 80px;
    border-radius: 15px;
    margin-top: 70px;
}
.partnership-form-wrapper .form-wrapper .form-title {
    padding-left: 0 !important;
}
.partnership-form-wrapper .form-wrapper .form-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--status-blue);
}
.partnership-form-wrapper .form-wrapper form input::placeholder {
    color: var(--form-placeholder);
}
.partnership-form-btn {
    margin-right: -24px;
}
.partnership-form .react-tel-input .flag-dropdown {
    border-radius: 10px !important;
}
.info-bg {
    background: url("../image/container-cutted.png") no-repeat right / contain;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-box {
    min-height: 160px;
}
.info-box strong.with-icon::before {
    content: "\f058";
    font-family: "FontAwesome";
    position: absolute;
    top: -3px;
    right: 106%;
    color: #85b6ff;
    font-size: 20px;
}
.info-box .blur-bg {
    background: rgba(248, 248, 248, 0.6);
    --webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    height: 100%;
    padding: 35px 50px;
}
.info-box {
    color: var(--dark);
}
.commercial {
    background-color: var(--bg-light);
    min-height: 400px;
}
.commercial .commercial-title {
    color: var(--toggle-white);
    animation: outer-left 1s 1s ease both;
}
.commercial .commercial-title h1 {
    font-size: 50px;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.price-card {
    background-color: var(--bg-light);
    color: var(--toggle-white);
    min-height: 350px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(3.85px);
    overflow: auto;
}
.price-card .price-card-inner strong {
    display: inline-block;
    color: var(--gray-toggle);
    margin-bottom: 20px;
}
.price-card .price-card-inner .price-card-header b {
    font-size: 32px;
}
.price-card .price-card-inner .options-list li {
    position: relative;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 26px;
    font-size: 15px;
}
.price-card .price-card-inner .options-list li::before {
    content: "\f058";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 3px;
    color: var(--gray-toggle);
}
.price-card .price-card-inner .price-btn {
    border: 1px solid #7e7e7e;
    border-radius: 10px;
    padding: 10px;
    background-color: transparent;
    margin-top: 10px;
    color: var(--gray-toggle);
    --webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.price-card .price-card-inner .price-btn:hover {
    background-color: var(--main-blue);
    color: #fff;
    border-color: var(--main-blue);
}
.pricing-info-list {
    list-style: disc !important;
    list-style-type: disc !important;
    padding-left: 20px !important;
}
.pricing-info-list li {
    margin-bottom: 10px;
}
.not-found-wrapper {
    min-height: calc(100vh - 612px);
    color: var(--toggle-white);
    display: flex;
    align-items: center;
}
.not-found-wrapper h2 {
    font-size: 80px;
    font-weight: 600;
}

.privacy-and-terms {
    color: var(--toggle-white);
}
.privacy-and-terms h1 {
    font-size: 27px;
}
.privacy-and-terms h2 {
    font-size: 20px;
}
.privacy-and-terms h3 {
    font-size: 20px;
}
.privacy-and-terms section {
    margin: 30px 0;
}
.privacy-and-terms p {
    margin: 15px 0;
}
.privacy-and-terms ul {
    margin-top: 15px;
}
.privacy-and-terms ul li {
    padding: 3px 0;
}
.privacy-and-terms a,
.privacy-and-terms ul li a {
    color: var(--toggle-white);
    text-decoration: underline !important;
}
.privacy-and-terms strong {
    text-transform: capitalize;
}
.print-btn {
    top: 0;
    right: 0;
    color: var(--main-blue);
    text-transform: capitalize;
    font-size: 16px;
    text-decoration: underline !important;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

@keyframes text-clip {
    from {
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@-webkit-keyframes text-clip {
    from {
        -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    to {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes outer-left {
    from {
        transform: translateX(20%);
    }
    to {
        transform: none;
    }
}

@-webkit-keyframes outer-left {
    from {
        -webkit-transform: translateX(30%);
    }
    to {
        -webkit-transform: none;
    }
}

@keyframes inner-left {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: none;
    }
}

@-webkit-keyframes inner-left {
    from {
        -webkit-transform: translateX(-50%);
    }
    to {
        -webkit-transform: none;
    }
}

@keyframes be-visible-smooth {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    1% {
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes be-visible-smooth {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    1% {
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 1400px) {
    .service-cards {
        padding-left: 174px;
    }
    .service-cards .service-bg {
        width: 60%;
    }
}

@media (max-width: 1200px) {
    .guide-container .guide-list {
        padding-left: 0;
    }
    .conditions {
        padding-left: 20px;
    }
    .partnership-form-wrapper .form-steps li:not(:last-child)::after {
        left: 111px;
    }
    .partnership-form-wrapper .form-steps li::before {
        left: 96px;
    }
    .partnership-form-wrapper .form-steps {
        padding-left: 0 !important;
    }
    .about-banner {
        background-size: contain;
    }
    .about-banner-text {
        margin: 60px 0;
    }
    .service-cards {
        padding-left: 95px;
    }
    .service-cards .service-bg {
        width: 64%;
        left: 30px;
    }
    .footer {
        padding-right: 0;
    }
    .enco-brand .enco-logo {
        width: 90px;
    }
}

@media (max-width: 991px) {
    .conditions {
        padding-left: 0;
    }
    .about-banner-text {
        margin: 35px 0;
    }
    .service-card {
        min-width: 0;
    }
    .service-cards .service-bg {
        width: 50%;
    }
    .service-cards {
        padding-left: 55px;
        padding-right: 50px;
    }
    .enco-brand {
        border-bottom: 1px solid var(--toggle-white);
    }
    .enco-brand .enco-logo {
        width: 102px;
        height: auto;
    }
    .subfooter-brand-two {
        width: 120px;
        height: auto;
    }
    .subfooter-brand strong {
        border-left: none;
    }
}

@media (max-width: 768px) {
    .how-works-wrapper .inner {
        gap: 20px;
    }
    .how-works-wrapper .big-title h1,
    .partnership-banner .big-title h1 {
        font-size: 40px;
    }
    .how-works-wrapper .how-works-banner {
        width: 150px;
        height: 150px;
    }
    .how-works-wrapper .big-title::before {
        height: 30px;
        width: 30px;
        top: 100px;
        left: 50%;
    }
    .how-works-wrapper .big-title::after {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 100%;
    }
    .be-partner-terms,
    .partnership-advantages {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .about-banner {
        min-height: 200px;
    }
    .about-banner-text {
        margin: 30px 0;
    }
    .mission-image,
    .vission-image {
        background-size: cover;
        height: auto;
    }
    .services-wrapper {
        padding-top: 40px;
    }
    .service-cards {
        padding-left: 5px;
        padding-right: 0;
    }
    .service-cards .service-bg {
        display: none;
    }
    .print-btn {
        top: 45px;
    }
}
@media (max-width: 576px) {
    .how-works-wrapper .big-title h1,
    .partnership-banner .big-title h1 {
        font-size: 30px;
    }
    .how-works-wrapper .how-works-banner {
        width: 120px;
        height: 120px;
    }
    .how-works-wrapper .big-title::before {
        left: 20%;
        top: 120%;
    }
    .how-works-wrapper .big-title::after {
        left: 20%;
        top: 120%;
    }
    .how-works-wrapper .big-title,
    .how-works-wrapper .big-title::after,
    .how-works-wrapper .big-title::before,
    .how-works-wrapper .inner,
    .how-works-wrapper .big-title h1,
    .how-works-wrapper .how-works-banner,
    .partnership-banner .big-title h1,
    .commercial-title,
    .commercial-title h1 {
        animation: none !important;
    }
    .how-works-wrapper .big-title::before,
    .how-works-wrapper .big-title::after {
        visibility: visible;
    }
    .conditions {
        padding-left: 5px;
    }
    .partnership-form-wrapper .form-wrapper {
        padding: 40px;
    }
    .box-row-top div,
    .box-row-bottom div {
        padding: 30px;
    }
    .box-row-top div:nth-child(1)::before,
    .box-row-bottom div:nth-child(2)::before,
    .box-row-top div:nth-child(2)::before,
    .box-row-bottom div:nth-child(1)::before {
        top: 65px;
        left: 25px;
    }
    .about-banner {
        min-height: 150px;
    }
    .service-cards {
        padding: 20px;
    }
    .scroll-to-top {
        width: 40px;
        height: 40px;
        right: 18px;
    }
    .privacy-and-terms h1 {
        font-size: 22px;
    }
    .privacy-and-terms h2 {
        font-size: 18px;
    }
}

/* MEMEMBERSHIP PAGES STYLES */

.auth-bg {
    min-height: 100dvh;
    background-color: var(--auth-bg);
}
.auth-box {
    min-height: 400px;
    background-color: var(--toggle-dark);
    padding: 60px;
    color: var(--toggle-white);
    border-radius: 11px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.auth-box .signin-form label {
    color: var(--form-placeholder);
}
.auth-box .signin-form .form-control.signin-input {
    min-height: 50px !important;
    height: 50px !important;
}
.auth-box .signin-form .form-floating > label {
    padding: 14px;
    font-size: 13px;
}
.auth-box .signin-form .related-links a {
    font-size: 14px;
}
.auth-box .signin-form .related-links a.forgot-password {
    color: var(--blue-to-white);
    font-weight: 500;
    font-size: 13px;
}
.auth-box .signin-form .related-links a.signup-link {
    color: var(--form-label);
    padding-bottom: 2px;
    font-size: 13px;
    text-decoration: underline !important;
    --webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.auth-box .signin-form .related-links a.signup-link:hover {
    color: var(--blue-to-white);
}
.auth-box .signin-form .form-control:focus {
    border-color: var(--soft-blue);
}
.auth-box .signin-form .signin-btn {
    background-color: var(--auth-form-blue);
    color: #fff;
    border-radius: 11px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.auth-box .signin-form .signin-btn:hover {
    opacity: 0.9;
}
.auth-box .or-separator span {
    color: var(--form-label);
    font-size: 15px;
    position: relative;
    display: block;
    width: 100%;
}
.auth-box .or-separator span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 43%;
    height: 1px;
    background-color: var(--form-placeholder);
    opacity: 0.4;
}
.auth-box .or-separator span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 43%;
    height: 1px;
    background-color: var(--form-placeholder);
    opacity: 0.4;
}
.login-with-google-btn {
    transition:
        background-color 0.3s,
        box-shadow 0.3s;
    padding: 5px 16px 5px 42px;
    border: none;
    border-radius: 11px;
    color: var(--main-blue);
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
        sans-serif;
    pointer-events: none;
}
.login-with-google-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow:
        0 -1px 0 rgba(0, 0, 0, 0.04),
        0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}
.login-with-google-btn:hover {
    background-color: var(--auth-form-blue);
    color: #fff;
}
.auth-footer {
    padding-left: 65px;
}
.auth-footer ul li a {
    font-size: 14px;
    color: var(--form-label);
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.auth-footer ul li a:hover {
    color: var(--main-blue);
}
.signup-form-title {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--main-blue);
}
.membership-type-selector label {
    display: inline-block;
    color: var(--form-label);
    border: 1px solid var(--form-label);
}
.membership-type-selector input:checked + label {
    color: var(--main-blue);
    border-color: var(--main-blue);
}
.membership-type-selector label:hover {
    color: var(--main-blue);
    border-color: var(--main-blue);
}
.auth-box .select-btn {
    background-color: var(--auth-form-blue);
    color: #fff;
    transition: all 0.2s ease;
}
.auth-box .select-btn:hover {
    opacity: 0.9;
}
.corporate-form-wrapper {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}
.corporate-form-wrapper::-webkit-scrollbar {
    width: 5px;
    background: var(--form-placeholder);
}
.corporate-form-wrapper::-webkit-scrollbar-thumb {
    background: var(--blue-to-white);
    border-radius: 10px;
}

.alert {
    top: 15px;
    left: 0;
    right: 0;
    background-color: #0149ed;
    color: #fff;
    border-radius: 11px;
    font-size: 14px;
    text-align: center;
}

.back-btn {
    color: var(--form-label);
    font-weight: 500;
    padding: 5px 10px !important;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    text-align: center;
    border: 1px solid #f5f7f8;
    outline: none;
    border-radius: 11px;
}
.back-btn:hover {
    color: var(--main-blue);
}

/* PROFILE PAGE STYLES */
.profile-wrapper {
    min-height: 100dvh;
}
.profile-header {
    background-color: var(--toggle-bg);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.profile-header-logo {
    width: 180px;
    height: 37px;
}
.profile-icon {
    font-size: 20px;
    color: var(--main-blue);
    padding-top: 4px;
    border: none;
    outline: none;
    background-color: transparent;
    position: relative;
    z-index: 99;
}
.profile-menu {
    position: absolute;
    background-color: var(--toggle-dark);
    color: var(--toggle-white);
    border: 1px solid #ccc;
    top: 80%;
    min-width: 200px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-wrap: nowrap;
    border: none;
    padding: 10px;
    border-radius: 5px;
    z-index: 9999;
}
.profile-menu li {
    cursor: pointer;
    margin-bottom: 8px;
    font-size: 14px;
}
.profile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--toggle-white);
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.profile-menu li a:hover {
    background-color: var(--toggle-white);
    color: var(--toggle-dark);
}
.profile-tables .new-request-link span {
    font-size: 13px;
    background-color: var(--status-blue);
    color: #fff;
    padding: 5px 10px;
    border-radius: 11px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.profile-tables .new-request-link span:hover {
    background-color: var(--dark);
}
.profile-tables .nav-tabs {
    border: none;
}
.profile-tables .details-card {
    border-radius: 11px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.profile-tables .details-card .card-body {
    padding: 30px;
    border-radius: 11px;
}
.profile-tables .nav-tabs .nav-item {
    min-height: 190px;
    border-radius: 20px;
    padding: 0;
}
.profile-tables .nav-tabs .nav-item .nav-link {
    position: relative;
    display: block;
    border: none;
    height: 100%;
    width: 100%;
    color: #fff;
}
.profile-tables .nav-tabs .nav-item:not(.new-request) .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.profile-tables .nav-tabs .nav-item:not(.new-request) .nav-link::after {
    content: url("../image/cross-arrow.svg");
    position: absolute;
    display: inline-block;
    top: 0;
    right: 15px;
    width: 36px;
    height: 36px;
    margin-top: 7px;
    z-index: 999;
}
.profile-tables .nav-tabs .nav-item:not(.new-request) .nav-link .tab-hover {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    background-color: #6482ad;
    border-radius: 40px;
    padding: 3px 12px;
    color: #f9f9f9;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.profile-tables
    .nav-tabs
    .nav-item:not(.new-request)
    .nav-link:hover
    .tab-hover {
    visibility: visible;
    opacity: 1;
}
.profile-tables .nav-tabs .nav-item .nav-link .count {
    display: inline-block;
    font-size: 30px;
}
.profile-tables .nav-tabs .nav-item.actives {
    background: url("../image/tab-waves-blue.png") no-repeat center center /
        cover;
}
.profile-tables .nav-tabs .nav-item.passives {
    background: url("../image/tab-waves-gray.png") no-repeat center center /
        cover;
}
.profile-tables .nav-tabs .nav-item.payments {
    background: url("../image/tab-waves-green.png") no-repeat center center /
        cover;
}
.profile-tables .nav-tabs .nav-item.new-request .nav-link {
    background: var(--bg-gradient);
    color: var(--toggle-white);
    border-radius: 20px;
    border: 1px solid var(--border-transparent);
}
.profile-tables .nav-tabs .nav-item.new-request .nav-link::after {
    content: "";
    position: absolute;
    top: 55px;
    left: 145px;
    height: 60px;
    width: 60px;
    --webkit-filter: blur(40px);
    filter: blur(40px);
    background-color: var(--how-works-banner-blue);
    /* visibility: hidden; */
}
.profile-tables .card-body,
.profile-tables .table {
    background-color: var(--toggle-bg) !important;
}
.profile-tables .card-title,
.profile-tables .table-info {
    color: var(--toggle-white);
}
.profile-tables .card-title {
    font-size: 20px;
}
.profile-tables .table-info {
    font-size: 14px;
}
.profile-tables .table {
    font-size: 13px;
    text-wrap: nowrap;
}
.profile-tables .table th {
    font-weight: 600;
    background-color: var(--toggle-bg);
    color: var(--toggle-white);
    border: none;
}
.profile-tables .table td {
    background-color: var(--toggle-bg);
    color: var(--form-label);
    border: none;
    vertical-align: middle;
    text-transform: capitalize;
}
.profile-tables .table tr {
    border-bottom: 1px solid var(--border-gray);
    background-color: var(--toggle-bg);
}
.profile-tables .table th.status-badge {
    border-radius: 40px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 8px;
    display: inline-block;
    width: 100%;
    text-wrap: nowrap;
    color: #fff;
}
.profile-tables .table th.revize {
    background-color: var(--status-purple);
}
.profile-tables .table th.beklemede {
    background-color: var(--status-blue);
}
.profile-tables .table th.onaylandı {
    background-color: var(--status-green);
}
.profile-tables .table th.reddedildi {
    background-color: var(--status-red);
}
.profile-tables .table th.teklif-geldi {
    background-color: var(--status-yellow);
}
.profile-tables .table th.unknown {
    background-color: var(--gray-toggle);
}
.profile-tables .table .action-button {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-tables .table .action-button i {
    color: #fff;
    font-size: 13px;
}
.profile-tables .table .action-button.inspect {
    background-color: var(--status-blue);
}
.profile-tables .table .action-button.remove {
    background-color: #e92424;
}
.profile-pagination .page-item .page-link {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.profile-pagination .page-item .page-link:focus {
    box-shadow: none;
}
.profile-pagination .page-item .page-link:hover {
    background-color: #383838;
    color: #fff;
}
.profile-pagination .page-item.active .page-link {
    color: #fff;
    background-color: #383838;
}
.pagination-control {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.pagination-control label {
    margin-right: 0.5rem;
    border: 1px solid #eaeaea;
    border-radius: 40px;
    font-size: 13px;
    color: var(--toggle-white);
    padding: 4px 10px;
    font-weight: 500;
}
.items-per-page-select {
    border: none;
    cursor: pointer;
    border-radius: 40px;
    color: var(--toggle-white);
    background-color: transparent;
}
.items-per-page-select:focus {
    outline: none;
    border: none;
}
.items-per-page-select option {
    color: var(--toggle-white);
    background-color: var(--toggle-dark);
}
.settings-wrapper {
    font-size: 14px;
}
.settings-wrapper .card.settings-card {
    background-color: var(--toggle-dark);
    color: var(--form-label);
}
.settings-wrapper .card.settings-card .card-body {
    padding: 30px;
}
.settings-wrapper .user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.change-avatar-btn,
.settings-form .reset-password-btn {
    font-size: 13px;
    color: var(--blue-to-white);
    font-weight: 500;
    border: none;
}
.settings-form .form-title {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--main-blue);
}
.settings-form .form-control {
    font-size: 14px;
    color: var(--form-label) !important;
}
.settings-form .form-control:disabled {
    background-color: var(--disabled-bg) !important;
}
/* .settings-form .form-control. */
.settings-form button {
    border-radius: 11px;
}
.settings-form button.back-btn {
    background-color: var(--togle-dark);
    color: var(--toggle-white);
    border-color: var(--toggle-white);
    font-size: 14px;
}
.settings-form button.submit-btn {
    background-color: var(--auth-form-blue);
    color: #fff;
    border-color: var(--auth-form-blue);
    font-size: 14px;
}
.settings-form button:hover {
    opacity: 0.9;
}
.settings-form .form-check-wrapper {
    padding-left: 15px;
    padding-top: 48px;
}
.settings-form .form-check .form-check-input:focus {
    outline: none;
    box-shadow: none;
}
.settings-form .form-check-input:not(:checked) {
    background-color: #d9d9d9;
}
.settings-form .phone-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--gray-toggle);
    font-weight: 500;
}
.request-details-wrapper .details-card {
    padding: 30px;
    background-color: var(--toggle-bg);
    color: var(--toggle-white);
    font-size: 14px;
    border-radius: 11px;
}
.request-details-wrapper .details-card::-webkit-scrollbar {
    width: 5px;
    background: var(--form-placeholder);
}
.request-details-wrapper .details-card::-webkit-scrollbar-thumb {
    background: var(--blue-to-white);
    border-radius: 10px;
}
.request-details-wrapper .details-card h4 {
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--main-blue);
    margin-bottom: 15px;
}
.request-details-wrapper .details-card .back-btn {
    border: 1px solid #dedede;
    font-size: 14px;
}
.request-form .error-message {
    font-size: 13px;
}
.request-details-wrapper .detailed-request-form label {
    color: var(--form-label);
    font-weight: 600;
}
.request-details-wrapper .detailed-request-form .form-select {
    background-color: var(--toggle-dark);
    color: var(--toggle-white);
    font-size: 14px;
    border-radius: 10px;
}
.request-details-wrapper .detailed-request-form .form-select:focus {
    box-shadow: none !important;
}
.request-details-wrapper .detailed-request-form .details-button-group button {
    border: none;
    padding: 7px 20px;
    text-wrap: nowrap;
    flex-grow: 1;
    color: #fff;
    border-radius: 11px;
}
.request-details-wrapper
    .detailed-request-form
    .details-button-group
    button.accept-btn {
    background-color: var(--status-green) !important;
}
.request-details-wrapper
    .detailed-request-form
    .details-button-group
    button.decline-btn {
    background-color: var(--status-red) !important;
}
.request-details-wrapper
    .detailed-request-form
    .details-button-group
    button.revized-btn {
    background-color: #383838 !important;
}
.request-details-wrapper .detailed-request-form .request-number .copy-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--gray-toggle);
    border: none;
    outline: none;
}
.request-details-wrapper
    .detailed-request-form
    .details-button-group
    button:disabled {
    background-color: #dedede;
}
.request-details-wrapper .details-card .status-badge {
    padding: 5px 10px;
    border-radius: 11px;
    font-size: 14px;
    color: #fff;
}
.request-details-wrapper .details-card .status-badge.teklif-bekleniyor {
    background-color: var(--status-blue);
}
.request-details-wrapper .details-card .status-badge.teklif-bekleniyor::before {
    content: url("../image/waiting.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.request-details-wrapper .details-card .status-badge.teklif-geldi {
    background-color: var(--status-yellow);
}
.request-details-wrapper .details-card .status-badge.teklif-geldi::before {
    content: url("../image/mail-box.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.request-details-wrapper .details-card .status-badge.revize {
    background-color: var(--status-purple);
}
.request-details-wrapper .details-card .status-badge.revize::before {
    content: url("../image/pencil.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.request-details-wrapper .details-card .status-badge.kabul-edildi {
    background-color: var(--status-green);
}
.request-details-wrapper .details-card .status-badge.kabul-edildi::before {
    content: url("../image/accept.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.request-details-wrapper .details-card .status-badge.reddedildi {
    background-color: var(--status-red);
}
.request-details-wrapper .details-card .status-badge.reddedildi::before {
    content: url("../image/declined.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.request-details-wrapper .details-card .status-badge.onaylandı {
    background-color: var(--status-green);
}
.request-details-wrapper .details-card .status-badge.onaylandı::before {
    content: url("../image/accept.svg");
    margin-right: 5px;
    width: 15px;
    height: 15px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    border-radius: 11px;
    padding: 8px 12px;
}
@media (max-width: 991px) {
    .auth-box {
        padding: 40px;
    }
    .auth-footer {
        padding-left: 40px;
    }
    .profile-tables .nav-tabs .nav-item:not(.new-request) .nav-link .tab-hover {
        display: none;
    }
}

@media (max-width: 576px) {
    .auth-box {
        padding: 30px;
    }
    .auth-footer {
        padding-left: 20px;
    }
    .signin-info-text {
        font-size: 14px;
    }
    .profile-tables .table th.status-badge {
        font-size: 12px;
    }
    .profile-header-logo {
        width: auto;
    }
}
