:root {
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-25: 25px;
    --fs-40: 40px;
    --fs-45: 45px;

    --fs-18: 18px;
    --fs-26: 26px;
    --color-white: #FFF;
}

.heading-50 {
    color: var(--Dark-Blue, #0A2152);
    /* text-align: center; */
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-50) * 1.2);
    letter-spacing: -0.55px;
}

.filter-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.properties-view {
    padding-top: 54px;
    padding-bottom: 54px;
}

.properties-heading {
    max-width: 855px;
    margin: 0 auto;
    text-align: center;
}

.filter-box .btn-filter {
    color: var(--Paragraph, #4C4C4C);
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.2);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--Outline, #BBB);
    background-color: transparent;
    transition: all 0.3s ease;
}

.filter-box .btn-filter.active,
.filter-box .btn-filter:hover,
.filter-box .btn-filter:focus {
    background-color: #0066CB;
    color: var(--color-white);
    border-color: #0066CB;
}

.properties-heading .heading-50 {
    margin-bottom: 11px;
}

.properties-heading p {
    padding-bottom: 36px;
}

.filter-box {
    margin-bottom: 50px;
}

.product-items {
    border: 2px solid #000;
    background: var(--color-white);
    padding: 39px 31px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-icon {
    margin-bottom: 33px;
}

.product-items h2 {
    color: var(--Black, #000);
    font-family: Inter;
    font-size: var(--fs-26);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-26) * 1.2);
    letter-spacing: -0.286px;
    margin-bottom: 18px;
}

.product-items p {
    color: var(--Paragraph, #4C4C4C);
    font-family: Roboto;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.2);
}

.btn.btn-primary {
    display: inline-flex;
    height: 46px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--Blue-Color, #0066CB);
    border-radius: 0;
    color: var(--color-white);
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-18) * 1.2);
    /* 100% */
    text-transform: uppercase;
}

.product-content .btn.btn-primary {
    margin-top: 25px;
}

.form-flex {
    display: flex;
    gap: 0px;
    max-width: 574px;
    margin: 0 auto;
}

.form-flex .form-control {
    border-width: 2px;
    color: var(--color-white);
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.2);
    letter-spacing: -0.198px;
}

.form-flex .btn.btn-primary:focus {
    border-color: var(--color-white);
    box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
}

.form-flex .form-control:focus {
    color: var(--color-white);
    background-color: transparent;
    border-color: var(--color-white);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
}

.form-flex input.form-control {
    border-radius: 0;
    background-color: transparent;
}

.form-flex input.form-control::placeholder {
    color: var(--color-white);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    letter-spacing: -0.198px;
}

.form-flex .btn.btn-primary {
    border-width: 2px;
    background-color: transparent;
    border-color: var(--color-white);
    border-left: none;
    color: var(--color-white);
    font-family: Inter;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

.btn.btn-outline {
    margin-top: 58px;
    color: var(--Blue-Color, #0066CB);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 0;
    display: inline-flex;
    height: 46px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border: 2px solid var(--Blue-Color, #0066CB);
    background: var(--White, #FFF);
    transition: all 0.3s ease;
}

.btn.btn-outline:hover {
    background-color: var(--Blue-Color, #0066CB);
    color: var(--White, #FFF);
}

.load-more {
    text-align: center;
}

ul.nav-links li a.active {
    color: var(--Blue-Color, #0066CB);
}

.tab-filter .product-list {
    display: none;
}

.tab-filter .product-list.active {
    display: grid;
}

.width-1099 {
    max-width: 1099px;
    margin: 0 auto;
}

.toview-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.toview-section .heading-50 {
    text-align: center;
}

.buytwotokens {
    margin: 0 auto;
    max-width: 992px;
    flex-shrink: 0;
    background: var(--Light-Gray, #FAFAFC);
    margin-top: 65px;
    padding: 44px 65px;
}

.discount-text {
    text-align: center;
    font-size: var(--fs-50);
    line-height: calc(var(--fs-50) * 1.5);
    color: var(--color-0066CB);
    font-style: normal;
    font-weight: 700;
    margin-top: 30px;
}

.buytwotokens .heading-50 {
    color: var(--Black);
    text-align: center;
    font-family: Inter;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.55px;
}

.icons-form {
    display: flex;
    align-items: center;
}

.flex-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 38px;
    margin-bottom: 30px;
}

.flex-form div:nth-child(1) {
    max-width: 353px;
    width: 100%;
}

.flex-form div:nth-child(2) {
    max-width: 250px;
    width: 100%;
}

.flex-form div:nth-child(3) {
    max-width: 215px;
    width: 100%;
}

.form-items input.form-control::placeholder {
    color: #000;
}

.form-items input.form-control {
    border: 0;
    color: #000;
    font-family: Inter;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-16) * 1.5);
    letter-spacing: -0.304px;
    padding: 12px 12px;
}

.form-items input.form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.form-items {
    border-radius: 5px;
    border: 1px solid var(--Outline, #BBB);
    background: #FFF;
}

.icons-form span {
    padding-left: 10px;
    ;
}

.buytwotokens .form-check-input {
    width: 36px;
    height: 19px;
}

.buytwotokens .form-check-label {
    margin-left: 13px;
    color: #000;
    font-family: Roboto;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-16) * 1.5);
    letter-spacing: -0.176px;
    margin-top: 2px;
}

.billing {
    margin-top: 40px;
    margin-bottom: 35px;
}

.billing .heading-20 {
    color: #000;
    font-family: Inter;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    letter-spacing: -0.22px;
    margin-bottom: 17px;
}

.billing p {
    color: var(--Paragraph, #4C4C4C);
    font-family: Inter;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-20) * 1.5);
    letter-spacing: -0.38px;
    padding-bottom: 0;
}

.btn-payment {
    display: inline-flex;
    height: 46px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--Blue-Color, #0066CB);
    border-radius: 0;
    color: var(--color-white);
    margin: 0 auto;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.btn-payment:hover,
.btn-payment:active,
.btn-payment:focus {
    background-color: var(--color-0A2152);
    color: var(--color-white);
}

.payment {
    text-align: center;
}

.payment p {
    color: var(--Black, #000);
    font-family: Inter;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    padding-bottom: 25px;
}

.radio-form .form-check label.form-check-label {
    margin-left: 10px;
}

.radio-form {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.radio-form input.form-check-input {
    width: 20px;
    height: 20px;
    border-color: #000;
}

.radio-form input.form-check-input[type="radio"]:checked {
    border-color: #0066cb;
}

.form-check label.form-check-label {
    margin-left: 0;
}

.width-881 {
    max-width: 881px;
    margin: 0 auto;
    text-align: center;
}

.width-881 .heading-50 {
    color: #0A2152;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.55px;
    margin-bottom: 21px;
}

.width-881 p {
    max-width: 605px;
    color: #4C4C4C;
    text-align: center;
    font-family: Roboto;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
    margin: 0 auto;
    margin-bottom: 40px;
}

.cart-items {
    border: 2px solid var(--Blue-Color, #0066CB);
    background: #FFF;
    max-width: 466px;
    height: auto;
    text-align: center;
    padding: 60px 64px;
    display: grid;
    align-items: center;
    transition: all 0.3s ease;
}

.cs-cart {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.ourplans-seciton {
    padding-bottom: 100px;
}

.cart-items h6 {
    color: #0066CB;
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-40) * 1.2);
    margin-bottom: 6px;
}

.properties-10 p {
    color: #4C4C4C;
    text-align: center;
    font-family: Roboto;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-25) * 1.5);
    padding-bottom: 43px;
}

.month-cart {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-20) * 1.5);
}

.cart-items:hover {
    border-color: #000000;
    box-shadow: 0px 7px 15px 0px #00000050;
}

.cart-items:hover .universal-anchor.blue-bg a {
    background: var(--color-0A2152);
    border-color: var(--color-0A2152);
}

.username {
    width: 184px;
    height: 184px;
    border-radius: 50%;
    background-color: #0066CB;
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    margin-bottom: 16px;
    overflow: hidden;
}

div.username p {
    color: var(--color-white);
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 600;
    line-height: 86px;
    text-transform: uppercase;
    padding-bottom: 0;
}

.left-sidebar {
    background: var(--Paragraph, linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #4C4C4C);
    padding-top: 60px;
    max-width: 451px;
    width: 100%;
    padding-bottom: 59px;
}

.profile-edit {
    display: grid;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* .onboarding-holders h1,
.onboarding-holders h2,
.onboarding-holders h3,
.onboarding-holders h4,
.onboarding-holders h5,
.onboarding-holders h6,
.onboarding-holders p,
.onboarding-holders a,
.onboarding-holders li {
    padding: revert;
    margin: revert;
    list-style: revert;
} */

span.profile-edit {
    background-color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

img.image-here {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-container {
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.username-text {
    color: #fff;
    text-align: center;
    font-size: var(--fs-45);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-50) * 1.2);
    margin-bottom: 8px;
}

.company-name {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    margin-bottom: 26px;
}

.subscription-plan h6 {
    color: #fff;
    font-family: Inter;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-25) * 1.5);
    margin-bottom: 5px;
}

.left-sidebar p {
    color: #FFF;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
    max-width: 80%;
}

.subscription-plan {
    padding: 20px 40px;
    border-top: 2px solid white;
}

.user-edit {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-edit a {
    color: #fff;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 88.889% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.subscription-plan.d-grid {
    row-gap: 15px;
}

.logout-setting a {
    color: #FFF;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-18) * 1.5);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.logout-setting {
    display: grid;
    row-gap: 30px;
}

.flex-dashboard {
    display: flex;
    column-gap: 60px;
}

.flex-dashboard .heading-25 {
    color: #0A2152;
    font-size: var(--fs-25);
    font-weight: 600;
    line-height: calc(var(--fs-25) * 1.5);
}

.dashboard-main {
    width: 100%;
}

.dashname {
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 2px solid #000;
}

.property-box {
    padding-top: 28px;
    padding-left: 43px;
    border-bottom: 2px solid #BBB;
    background: #FFF;
}

.property-box h6 {
    color: #000;
    font-size: var(--fs-20);
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    margin-bottom: 10px;
    ;
}

.view-propertie {
    padding-top: 16px;
    border-top: 1px solid silver;
    padding-bottom: 20px;
    display: flex;
    gap: 50px;
    max-width: 990px;
    width: 100%;
}

.view-propertie a {
    color: #000;
    font-family: Inter;
    font-size: var(--fs-18);
    font-weight: 600;
    line-height: calc(var(--fs-18) * 1.5);
}

.mx-701 {
    max-width: 701px;
}

.list-mt47 {
    margin-top: 47px;
}

.heading-30 {
    font-size: var(--fs-30);
    line-height: var(--fs-30);
}

.onlytitle-here .heading-30 {
    color: #0A2152;
    font-family: Inter;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 700;
    line-height: var(--fs-30);
    margin-bottom: 21px;
}

.grid-checkbox input.form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 2px solid #4c4c4cc9;
}

.grid-checkbox input.form-check-input:checked {
    border-color: transparent;
}

.grid-checkbox label.form-check-label {
    color: #4C4C4C;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
    padding-bottom: 0;
    padding-left: 5px;
}

label.file_upload {
    border-radius: 7px;
    background: #ECECEC;
    padding: 8px 22px;
    cursor: pointer;
    color: #000;
    font-family: Inter;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-16) * 1.5);
    letter-spacing: -0.176px;
}

.tel-flex {
    display: flex;
}

.tel-flex select {
    max-width: 143px;
    border-right: 0;
    color: var(--Paragraph, #4C4C4C);
    font-family: Inter;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-16) * 1.5);
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
}

/* About us  */
.black-overlay {
    background-color: #000;
}

.black-overlay .imageslider img {
    opacity: 0.5;
}

.black-overlay .onlycontent {
    max-width: 735px;
    padding: 0px 18px;
}

.black-overlay .fs-30,
.black-overlay .onlycontent p {
    font-weight: 400;
}

.mw-675 {
    max-width: 675px;
    margin: 0 auto;
}

.mw-780 {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.mw-847 {
    max-width: 847px;
    margin: 0 auto;
}

.exchanges-items .heading-50 {
    color: #0A2152;
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--fs-50) * 1.2);
    letter-spacing: -0.55px;
    margin-bottom: 6px;
}

.exchanges-flex {
    display: flex;
    gap: 43px;
    justify-content: center;
    margin-top: 65px;
}

.section-exchange {
    padding-top: 70px;
    padding-bottom: 126px;
}

.mw-675 .heading-50 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.45px;
    margin-bottom: 29px;
}

.exchanges-flex p {
    color: #4C4C4C;
}

.mission-loop {
    display: flex;
    align-items: center;
    gap: 139px;
}

.mission-content .m-center {
    max-width: 523px;
    margin: 0 auto;
}

.m-center .heading-30 {
    color: #0A2152;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-30) * 1.2);
    letter-spacing: -0.33px;
    margin-bottom: 26px;
}

.mw-710 {
    max-width: 710px;
    margin: 0 auto;
    text-align: center;
}

.mw-710 .heading-50 {
    color: #0A2152;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.55px;
    margin-bottom: 22px;
}

.do-section .container {
    background: #FAFAFC;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sup-footer {
    background: #0066CB;
    padding: 90px 0;
    text-align: center;
    color: var(--color-white);
}

.mw-995 {
    max-width: 995px;
    margin: 0 auto;
}

.sup-footer .heading-50 {
    color: var(--color-white);
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.55px;
    margin-bottom: 25px;
}

.sup-footer p {
    color: #FAFAFC;
    text-align: center;
    font-family: Roboto;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 300;
    line-height: calc(var(--fs-25) * 1.5);
    opacity: 0.7;
    margin-bottom: 40px;
}

.feature-items {
    border: 1px solid #BBB;
    background: #FFF;
    padding: 48px 30px;
    text-align: center;
    min-height: 420px;
}

.feature-items img {
    margin-bottom: 30px;
}

.heading-22 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-22) * 1.5);
}

.feature-items .heading-22 {
    margin-bottom: 14px;
}

.key-features-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.key-features-section .heading-50 {
    padding-bottom: 50px;
}

.benefits-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #FAFAFC;
}

.benefits-section .heading-50 {
    margin-bottom: 30px;
}

.benefits-section p {
    color: #4C4C4C;
    font-size: var(--fs-25);
    font-weight: 400;
    line-height: calc(var(--fs-25) * 1.5);
    opacity: 0.7;
}

.benefits-section .feature-items {
    border: 0;
}

.benefits-section .feature-items p {
    color: #4C4C4C;
    font-family: Roboto;
    font-size: var(--fs-18);
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
    opacity: 1;
}

.benefits-section .feature-items {
    min-height: auto;
}

.benefits-section .mw-995 {
    margin-bottom: 28px;
}

.blog-content {
    border-width: 2px;
}

.heading-40 {
    color: var(--Dark-Blue, #0A2152);
    font-family: Inter;
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-40) * 1.2);
    letter-spacing: -0.44px;
}

.buyeronboard-sec .heading-40 {
    margin-bottom: 27px;
}

/* single blog page */
.rules-box {
    margin-top: 20px;
}

.heading-20 {
    font-size: var(--fs-20);
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    letter-spacing: -0.22px;
}

.rules-box .heading-20 {
    margin-bottom: 10px;
    font-weight: 700;
}

.heading-18 {
    color: #212529;
    font-family: Roboto;
    font-size: var(--fs-18);
    font-weight: 600;
    line-height: calc(var(--fs-18) * 1.5);
}

.rules-box .heading-18 {
    margin-top: 8px;
}

.rules-box ul li {
    list-style: disc;
    margin-left: 25px;
}

.rules-box ul li p {
    padding-bottom: 5px;
}

/* contact us  */
.mw-1296 {
    max-width: 1296px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.contact-information {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contactform {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contactform-items {
    max-width: 600px;
    width: 100%;
    display: grid;
    align-items: center;
}

.contact-information .form {
    background: hsla(210, 100%, 40%, 0.5);
    padding: 45px 50px;
}

.contact-content .heading-40 {
    margin-bottom: 16px;
    max-width: 575px;
}

.contact-content p {
    color: var(--Paragraph, hsl(0, 0%, 30%, 0.7));
    font-family: Roboto;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-25) * 1.5);
    /* 133.333% */
}

.quick-items ul {
    display: flex;
    gap: 22px;
}

.quick-contact {
    margin-top: 20px;
    display: grid;
    row-gap: 21px;
}

.quick-items h6 {
    margin-bottom: 10px;
    color: #4C4C4C;
    font-family: Inter;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-18) * 1.5);
}

.quick-items a {
    color: #0A2152;
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-22) * 1.5);
}

.contactform-items .only-label p,
.contactform-items .signup-input label {
    color: #fff;
}

.contactform-items textarea {
    border-color: transparent;
}

.contactform-items input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 22px !important;
    width: 18px;
    border: 1px solid hsl(0, 0%, 100%);
    background-color: transparent;
}

.contactform-items input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.contactform-items input[type="checkbox"]:checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-price .quantity-box {
    width: 147px;
    height: 43px;
    flex-shrink: 0;
    border: 1px solid var(--Outline, #424242);
    background: var(--White, #FFF);
    color: var(--Outline, #BBB);
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--fs-30) * 1.5);
    border: 1px solid var(--Outline, #BBB);
    background: var(--White, #FFF);

    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-items h6 {
    color: var(--Black, #000);
    text-align: center;
    font-family: Inter;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-20) * 1.5);
    letter-spacing: -0.22px;
    margin-bottom: 18px;
}

.quantity-price {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 48px;
}

.toview-small-font .heading-50 {
    font-size: var(--fs-40);
    line-height: calc(var(--fs-40) * 1.2);
    text-align: center;
}

/* agent-pricing-agent */

/* checkout page  */
.checkout-section {
    margin-top: 65px;
    margin-bottom: 65px;
}

.mw-1299 {
    max-width: 1299px;
    margin: 0 auto;
    background: #FAFAFC;
    padding: 50px 100px;
}

.checkout-section .mw-1299 {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.heading-25 {
    color: #0A2152;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-25) * 1.5);
    margin-bottom: 20px;
}

.checkout-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading-17 {
    color: #0A2152;
    font-size: var(--fs-17);
    font-weight: 700;
    line-height: calc(var(--fs-17) * 1.5);
}

.checkout-items {
    max-width: 500px;
    width: 100%;
}

.checkout-top {
    border-bottom: 1px solid #BBB;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.checkout-top .submit-signup {
    max-width: 100%;
}

.checkout-top .signup-input {
    margin-bottom: 0%;
}

.payment a {
    display: block;
    text-align: left;
    color: #999;
    font-family: Inter;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--fs-25) * 1.5);
}

.checkout-top table {
    width: 100%;
}

.checkout-top table tr td {
    color: #000;
    font-family: Roboto;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
    padding-bottom: 10px;
}

.checkout-top table tr td:last-child {
    text-align: right;
}

.box-payment .checkout-top {
    border-bottom-color: #000000;
}

.box-payment {
    border: 1px solid #000000;
    padding: 25px;
    padding-bottom: 0;
}

.box-payment .checkout-top {
    margin-bottom: 18px;
    padding-bottom: 12px;
}

.have-code p {
    color: #000;
    font-family: Roboto;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-18) * 1.5);
}

.find-code {
    display: flex;
    gap: 22px;
}

.find-code .submit-signup {
    padding-top: 0;
}

.checkout-top label {
    color: #4C4C4C;
    font-family: Roboto;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--fs-14) * 1.5);
}

.secoure-checkout {
    text-align: center;
    margin-top: 23px;
}



/* reponsinve css */
@media (max-width: 1599px) {
    :root {
        --fs-18: 16px;
        --fs-26: 20px;
    }

    .filter-box ul {
        gap: 10px;
    }
}

@media(max-width: 1400px) {
    :root {
        --fs-20: 18px;
        --fs-25: 20px;
        --fs-45: 35px;
    }

    .billing .heading-20 {
        margin-bottom: 10px;
    }

    .username {
        width: 150px;
        height: 150px;
    }

    .left-sidebar {
        max-width: 400px;
        width: 100%;
    }

    .left-sidebar {
        padding-top: 40px;
    }

    .flex-dashboard {
        column-gap: 30px;
    }

    .property-box {
        padding-left: 0px;
    }

    .list-mt47 {
        margin-top: 30px;
    }

    .logout-setting {
        display: grid;
        row-gap: 20px;
    }
}

@media(max-width: 1199px) {
    :root {
        --fs-22: 18px;
    }

    .filter-box ul {
        flex-wrap: wrap;
    }

    .product-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-loop {
        gap: 80px;
    }

    .m-center .heading-30 {
        margin-bottom: 10px;
    }

    .mw-995 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sup-footer {
        padding: 70px 0;
    }

    .section-exchange {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .exchanges-flex {
        margin-top: 30px;
    }

    .key-features-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .key-features-section .heading-50 {
        padding-bottom: 10px;
    }

    .contactform {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .quick-items h6 {
        margin-bottom: 5px;
    }
}

@media(max-width: 991px) {
    :root {
        --fs-25: 18px;
        --fs-40: 30px;
    }

    .cart-items {
        padding: 30px;
    }

    .cs-cart {
        gap: 20px;
    }

    .exchanges-flex p {
        text-align: center;
    }

    .exchanges-flex {
        display: flex;
        gap: 30px;
    }

    .mission-loop {
        gap: 30px;
    }

    .contactform {
        display: grid;
    }
}

@media(max-width: 767px) {
    :root {
        --fs-20: 16px;
    }

    .flex-form {
        display: block;
    }

    .flex-form div:nth-child(1),
    .flex-form div:nth-child(2),
    .flex-form div:nth-child(3) {
        max-width: 100%;
    }

    .product-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .cs-cart {
        display: block;
    }

    .cart-items {
        margin: 0 auto;
    }

    .cs-cart .cart-items:first-child {
        margin-bottom: 30px;
    }

    .form-items {
        margin-bottom: 10px;
    }

    .flex-dashboard {
        display: block;
    }

    .deshboard {
        padding-bottom: 70px;
    }

    .left-sidebar {
        max-width: 100%;
        ;
    }

    .tel-flex select {
        max-width: 30%;
    }

    .mission-loop {
        display: grid;
    }

    .exchanges-flex {
        display: grid;
        gap: 35px;
    }

    .mission-content .m-center {
        text-align: center;
    }

    .mission-loop.justify-content-lg-end .mission-content {
        order: 1;
    }

    .do-section .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .feature-items {
        min-height: auto;
    }

    .buyeronboard-sec .heading-40 {
        margin-bottom: 15px;
    }

    .contact-information {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact-information .form {
        background: hsla(210, 100%, 40%, 0.5);
        padding: 20px 20px;
    }

    .checkout-section .mw-1299 {
        display: grid;
    }

    .mw-1299 {
        padding: 50px 20px;
    }
}