/* ===================================================
>>> TABLE OF CONTENTS:
======================================================
01. Fonts
02. General
03. Scroll top button
04. Header

=================================================== */

/* ----------------------------------------------------------------
    01. Fonts
------------------------------------------------------------------- */

/* Galano Grotesque Font */

/* Thin */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 100;
    src: local("Galano Grotesque Thin"), url("../fonts/GalanoGrotesqueThin.otf") format("opentype");
}


/* ExtraLight */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 200;
    src: local("Galano Grotesque ExtraLight"), url("../fonts/GalanoGrotesqueExtraLight.otf") format("opentype");
}

/* Light */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 300;
    src: local("Galano Grotesque Light"), url("../fonts/GalanoGrotesqueLight.otf") format("opentype");
}

/* Regular */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 400;
    src: local("Galano Grotesque Regular"), url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
}

/* Medium */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 500;
    src: local("Galano Grotesque Medium"), url("../fonts/GalanoGrotesqueMedium.otf") format("opentype");
}

/* SemiBold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 600;
    src: local("Galano Grotesque SemiBold"), url("../fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
}

/* Bold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 700;
    src: local("Galano Grotesque Bold"), url("../fonts/GalanoGrotesqueBold.otf") format("opentype");
}

/* ExtraBold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 800;
    src: local("Galano Grotesque ExtraBold"), url("../fonts/GalanoGrotesqueExtraBold.otf") format("opentype");
}

/* Heavy */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 900;
    src: local("Galano Grotesque Heavy"), url("../fonts/GalanoGrotesqueHeavy.otf") format("opentype");
}

/* Black */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 1000;
    src: local("Galano Grotesque Black"), url("../fonts/GalanoGrotesqueBlack.otf") format("opentype");
}

:root {
    --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Galano Grotesque", var(--fallback-fonts);
}

/* Colors */
:root {
    --color-primary: 0, 173, 239;
    --color-primary-dark: 0, 128, 179;
    --color-white: #fff;
    --font-remixicon: remixicon;
    --font-bootstrap-icons: bootstrap-icons;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-primary)) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary));
}

::selection {
    background: rgb(var(--color-primary));
}

::selection {
    color: var(--color-white);
    text-shadow: none;
}

/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/

body {
    font-family: var(--font-primary);
    font-weight: 500;
    overflow-x: hidden;
}
.grey-color {
    background: rgb(243, 249, 255);
}
.black-color {
    background: #333333;
}
.text-white {
    color: #FFFFFF;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #282337;
}

p {
    color: #373737;
}

@media (min-width: 1270px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        /*max-width: 1250px !important;*/
    }
}

a {
    color: rgb(var(--color-primary));
    text-decoration: none;
}

a:hover {
    color: rgb(var(--color-primary-dark));
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.list-dot li {
    list-style: square;
    list-style-position: inside;
    font-size: 16px;
    font-weight: 400;
}

.list-dot-two{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.list-dot-two li{
    font-size: 16px;
    position: relative;
    padding-inline-start: 25px;
    width: 100%;
    font-weight: 400;
}


@media (min-width:768px) {
    .list-dot-two.two li{
        width: 48%;
    }
}

.list-dot-two li:before{
    content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  background: rgb(var(--color-primary));
  transform: rotate(45deg);
  width: 10.17px;
  height: 10.17px;
  opacity: 0.4;
}

.bg-trasparent {
    background: transparent !important;
}

.w-fit-content {
    width: fit-content;
}

input[type="checkbox"] {
    accent-color: rgb(var(--color-primary)) !important;
    height: 15px;
    width: 15px;
}

input[type="radio"] {
    accent-color: rgb(var(--color-primary)) !important;
    height: 15px;
    width: 15px;
}
.fw-600{
    font-weight: 600;
}

/* ----------------------------------------------------------------
    03. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 10px;
    bottom: -40px;
    z-index: 99999;
    background: rgb(var(--color-primary));
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgb(var(--color-primary));
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 67px;
}

/* ----------------------------------------------------------------
    04. Header
------------------------------------------------------------------- */
.main-header {
    background:#373640;
    height: 67px;
    position: relative;
}

.header-sticky{
    position: fixed;
    z-index: 14;
    width: 100%;
    box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
    transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
    background-color: rgb(0, 0, 0);
}

.main-header.dropdown-open {
    background-color: rgb(252, 252, 252);
}

.main-header .nabbar-nav {
    margin-bottom: 0;
    height: 100%;
}

.main-header .nabbar-nav>.container-lg {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
    display: inline-block;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand img {
    max-height: 30px;
}


/* Desktop Navigation */
@media (min-width: 992px) {

    .main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
        margin-inline-end: 32px;
    }

    .main-header .nabbar-nav .mainmenu {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: 32px;
    }

    .main-header .nabbar-nav .mainmenu li {
        position: relative;
    }

    .main-header .nabbar-nav .mainmenu li.megamenu {
        position: inherit;
    }

    .main-header .nabbar-nav .mainmenu>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        font-family: var(--font-primary);
        font-size: 15px;
        white-space: nowrap;
        transition: 0.3s;
        color: #FFFFFF;
        font-weight: 600;
    }

    .main-header .nabbar-nav .mainmenu>li>a>span.offer{
        position: relative;
    }
    .main-header .nabbar-nav .mainmenu>li>a>span.offer:after{
        content: attr(data-offer);
    background: rgb(var(--color-primary));
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    padding: 1px 4px;
    margin-inline-start: 5px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    top: -5px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown>a>.dropdown-indicator {
        font-size: 12px;
        line-height: 0;
        margin-inline-start: 5px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a {
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a>.dropdown-indicator {
        transform: rotate(-180deg);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
        display: flex;
        -moz-box-pack: center;
        justify-content: center;
        background-color: rgb(252, 252, 252);
        border-radius: 0px 0px 50px 50px;
        padding: 32px 0px;
        position: absolute;
        top: 67px;
        left: 0px;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 200ms ease-in-out;
        z-index: 5;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
        visibility: visible;
        pointer-events: unset;
        opacity: 1;
    }

    .main-header .navbar-button,
    .main-header .nabbar-nav .mobile-menu-header {
        display: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-right: auto;
        margin-left: auto;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
        max-width: 960px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
        border-bottom: 1px dashed rgb(235, 235, 235);
        list-style: none;
        padding-bottom: 24px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: calc(var(--bs-gutter-x) * -.5);
        margin-left: calc(var(--bs-gutter-x) * -.5);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div {
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 16px;
        padding: 32px 24px 0px;
        background-color: rgb(243, 249, 255);
        border-radius: 10px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>p:first-child {
        color: rgb(54, 54, 54);
        font-size: 20px;
        font-weight: bold;
        line-height: 24px;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>p:nth-child(2) {
        color: rgb(54, 54, 54);
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>a {
        color: rgb(var(--color-primary));
        display: flex;
        -moz-box-align: center;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 16px;
        text-decoration: none;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
        padding-bottom: 2px;
        width: fit-content;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>a:hover {
        background-size: 100% 1px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>a>i {
        margin-inline-start: 5px;
        transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>a:hover>i {
        margin-inline-start: 10px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list>div>img {
        margin-top: 0px;
        margin-bottom: -17px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading{
        display: flex;
        flex-direction: row;
        gap: 18px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading span{
        display: block;
        padding: 4px 8px;
        border-radius: 10px;
        width: max-content;
        display: flex;
        -moz-box-align: center;
        align-items: center;
        -moz-box-pack: center;
        justify-content: center;
        white-space: nowrap;
        height: 24px;
        position: relative;
        z-index: 5;
        background-color: rgb(144, 219, 150);
        color: rgb(54, 54, 54);
        font-size: 13px;
    }
    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading span:after{
        content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(144, 219, 150) transparent transparent transparent;
    transform: translatey(-50%) rotate(90deg);
    }
    
    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo p{
        color: rgb(124, 144, 170);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 16px;
        padding-bottom: 8px;
        margin-bottom: 0; 
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a{
        color: rgb(var(--color-primary));
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a i{
        margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a:hover{
        background-size: 100% 1px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a:hover i{
        margin-inline-start: 10px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>p {
        color: rgb(124, 144, 170);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 16px;
        padding-bottom: 8px;
        padding-left: 16px;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a {
        -moz-box-align: center;
        align-items: center;
        background-color: transparent;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        padding: 16px 32px 16px 16px;
        position: relative;
        text-decoration: none;
        transition: 0.4s ease-in-out;
        width: 100%;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover {
        background-color: rgb(243, 249, 255);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner {
        display: flex;
        -moz-box-align: center;
        align-items: center;
        gap: 8px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:after {
        content: '\ea6c';
        right: 10px;
        position: absolute;
        opacity: 0;
        transition: 0.4s ease-in-out;
        transform: translateX(-60%);
        font-family: var(--font-remixicon);
        font-size: 17px;
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover:after {
        opacity: 1;
        transform: translateX(-20%);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon {
        align-self: start;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner {
        -moz-box-align: center;
        align-items: center;
        background-color: rgb(243, 249, 255);
        border-radius: 100px;
        height: 38px;
        display: flex;
        -moz-box-pack: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        width: 38px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner > i{
        font-size: 20px;
        line-height: 0;
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover>.inner>.icon>.inner {
        background-color: rgb(255, 255, 255);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings {
        color: rgb(54, 54, 54);
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels {
        background-color: rgb(186, 230, 211);
        color: rgb(31, 32, 68);
        -moz-box-align: center;
        align-items: center;
        border-radius: 20px;
        display: inline-flex;
        font-size: 12px;
        font-weight: 500;
        -moz-box-pack: center;
        justify-content: center;
        line-height: 16px;
        padding: 2px 10px;
        position: relative;
        width: fit-content;
        text-decoration: none;
        text-transform: uppercase;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.subheading {
        color: rgb(124, 144, 170);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom {
        -moz-box-align: center;
        align-items: center;
        display: flex;
        gap: 8px;
        padding-top: 24px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .icon {
        -moz-box-align: center;
        align-items: center;
        background-color: rgb(243, 249, 255);
        border-radius: 100px;
        display: flex;
        height: 38px;
        -moz-box-pack: center;
        justify-content: center;
        min-width: 38px;
        width: 38px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom .content {
        color: rgb(54, 54, 54);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
        width: 763px;
        transform: translate(0px, 26px) !important;
        left: unset !important;
        right: 0 !important;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu{
        width: 383px;
        transform: translate(0px, 26px) !important;
        left: unset !important;
        right: 0 !important;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu{
        width: 700px;
        transform: translate(0px, 26px) !important;
        left: unset !important;
        right: 0 !important;
    }


    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or {
        display: flex;
        -moz-box-align: center;
        align-items: center;
        -moz-box-pack: justify;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or:before {
        content: "";
        display: block;
        border-left: 1px dashed rgb(205, 216, 223);
        height: 70px;
        width: 1px;
        margin-bottom: 8px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or:after {
        content: "";
        display: block;
        border-left: 1px dashed rgb(205, 216, 223);
        height: 70px;
        width: 1px;
        margin-top: 8px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.or:before {
        content: "";
        display: block;
        border-left: 1px dashed rgb(205, 216, 223);
        height: 35px;
        width: 1px;
        margin-bottom: 8px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.or:after {
        content: "";
        display: block;
        border-left: 1px dashed rgb(205, 216, 223);
        height: 35px;
        width: 1px;
        margin-top: 8px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or p {
        color: rgb(205, 216, 223);
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        padding: 8px;
        display: block;
        height: 100%;
        margin-bottom: 0;
    }

}

@media (min-width: 1200px) {
    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
        max-width: 1140px;
    }
}

@media (min-width: 1270px) {
    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
        max-width: 1250px !important;
    }
}

.main-header .nabbar-nav .nav-right-side-bar {
    display: flex;
    gap: 0 25px;
}

.main-header .nabbar-nav .nav-right-side-bar .item>a {
    font-size: 18px;
    cursor: pointer;
    color: #FFFFFF;
}

.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu {
    background: unset;
    border: unset;
    padding: unset;
}


.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner {
    background-color: rgb(252, 252, 252);
    box-shadow: rgba(46, 147, 238, 0.2) 0px 0px 20px 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: 200ms ease-in-out;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    padding: 32px;
}

.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.heading {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: start;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgb(235, 235, 235);
    margin-bottom: 24px;
}

.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.heading svg {
    width: 28px;
    height: 28px;
}

.main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.heading p {
    color: rgb(54, 54, 54);
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner{
    -moz-box-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    -moz-box-pack: center;
    justify-content: center;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a{
    padding: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    transition: all 0.5s;
    border-radius: 4px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a:hover{
    background: rgba(var(--color-primary), 0.2);
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables{
    padding: 4px 8px;
    border-radius: 6px;
    width: max-content;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    height: 24px;
    position: absolute;
    top: -12px;
    z-index: 5;
    font-size: 14px;
    font-weight: 400;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables:after{
    content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables.warning{
    background-color: rgb(255, 164, 100);
    color: rgb(54, 54, 54);
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables.warning:after{
    border-color: rgb(255, 164, 100) transparent transparent transparent;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables.success{
    background-color: #bae6d3;
    color: rgb(54, 54, 54);
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .lables.success:after{
    border-color: #bae6d3 transparent transparent transparent;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .headings{
    color: rgb(54, 54, 54);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu>.inner > .inner a .contents{
    color: rgb(133, 152, 177);
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
    gap: 8px;
}


.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents {
    display: flex;
    align-items: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    gap: 24px;
    flex-direction: column;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover {
    background-color: rgb(243, 249, 255);
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a:after {
    content: '\ea6c';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: var(--font-remixicon);
    font-size: 17px;
    color: rgb(var(--color-primary));
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.icon {
    align-self: start;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.icon>.inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
}


.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover>.inner>.icon>.inner {
    background-color: rgb(255, 255, 255);
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content>.headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content>.subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>.links>p {
    color: rgb(166, 182, 204);
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 16px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>.links a {
    -moz-box-align: center;
    background: transparent;
    color: rgb(0, 112, 209);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 19px;
    text-decoration: none;
    width: fit-content;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>.links a+a {
    margin-top: 8px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu>.inner>.inner>.contents>.links a:hover {
    text-decoration: underline;
}



.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
    gap: 8px;
}


.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents {
    display: flex;
    align-items: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    gap: 24px;
    flex-direction: column;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover {
    background-color: rgb(243, 249, 255);
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a:after {
    content: '\ea6c';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: var(--font-remixicon);
    font-size: 17px;
    color: rgb(var(--color-primary));
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.icon {
    align-self: start;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.icon>.inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.icon>.inner > i{
    font-size: 20px;
    color: rgb(var(--color-primary));
    line-height: 0;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a:hover>.inner>.icon>.inner {
    background-color: rgb(255, 255, 255);
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content>.headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu>.inner>.inner>.contents>a>.inner>.content>.subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}



/* Mobile Navigation */

@media (max-width: 991px) {
    .main-header .navbar-button {
        height: auto;
        width: auto;
        text-align: center;
        outline: none;
        border: 0 none;
        padding: 0;
        background: transparent;
        display: block;
        font-size: 25px;
        margin-inline-end: 15px;
    }

    .main-header .mobile-menu-header {
        display: flex;
        border-bottom: 1px solid #eeeeee;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .main-header .mobile-menu-header .logo img {
        max-height: 30px;
    }

    .main-header .mobile-menu-header .close-icon .navbar-close {
        border: 0 none;
        width: 40px;
        height: 40px;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        background: transparent;
        line-height: 0;
    }

    .main-header .header-menu {
        z-index: 9999;
        position: fixed;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        visibility: hidden;
        opacity: 0;
        transition: opacity .5s ease-out;
    }

    .main-header .header-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .main-header .header-menu>.inner {
        width: 320px;
        z-index: 999;
        position: absolute;
        background: #FFFFFF;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
        height: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        opacity: 0;
        left: -150px;
        transition: all .5s ease-out;
    }

    .main-header .header-menu.active>.inner {
        opacity: 1;
        left: 0;
        overflow-y: auto;
    }

    .main-header .nabbar-nav .mainmenu {
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .main-header .nabbar-nav .mainmenu>li {
        display: block;
        padding-bottom: 16px;
        border-bottom: 1px solid rgb(246, 246, 249);
    }

    .main-header .nabbar-nav .mainmenu>li>a {
        color: rgb(54, 54, 54);
        text-decoration: none;
        background-color: transparent;
        border: medium;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        line-height: 19px;
        width: 100%;
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open {
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a>.dropdown-indicator {
        font-size: 17px;
        transform: rotate(-90deg);
        transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open>.dropdown-indicator {
        transform: rotate(-180deg);
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown .submenu {
        display: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
        list-style: none;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: calc(var(--bs-gutter-x) * -.5);
        margin-left: calc(var(--bs-gutter-x) * -.5);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: 15px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.img-list {
        display: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>p {
        color: rgb(124, 144, 170);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 16px;
        padding-bottom: 8px;
        padding-left: 0;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a {
        -moz-box-align: center;
        align-items: center;
        background-color: transparent;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        padding: 10px 0;
        position: relative;
        text-decoration: none;
        transition: 0.4s ease-in-out;
        width: 100%;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner {
        display: flex;
        -moz-box-align: center;
        align-items: center;
        gap: 8px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon {
        align-self: start;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner {
        -moz-box-align: center;
        align-items: center;
        background-color: rgb(243, 249, 255);
        border-radius: 100px;
        height: 38px;
        display: flex;
        -moz-box-pack: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        width: 38px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner > i{
        font-size: 20px;
        line-height: 0;
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings {
        color: rgb(54, 54, 54);
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels {
        background-color: rgb(186, 230, 211);
        color: rgb(31, 32, 68);
        -moz-box-align: center;
        align-items: center;
        border-radius: 20px;
        display: inline-flex;
        font-size: 12px;
        font-weight: 500;
        -moz-box-pack: center;
        justify-content: center;
        line-height: 16px;
        padding: 2px 10px;
        position: relative;
        width: fit-content;
        text-decoration: none;
        text-transform: uppercase;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.subheading {
        color: rgb(124, 144, 170);
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }


    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item-bottom {
        display: none;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
        left: auto !important;
        right: 0 !important;
        width: 400px;
        transform: translate(0px, 26px) !important;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner {
        flex-direction: column;
        gap: 16px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or {
        display: flex;
        -moz-box-align: center;
        align-items: center;
        -moz-box-pack: justify;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or:before {
        content: "";
        display: block;
        margin-bottom: 0px;
        margin-right: 8px;
        border-left: medium;
        border-top: 1px dashed rgb(205, 216, 223);
        width: 100%;
        height: 1px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or:after {
        content: "";
        display: block;
        margin-top: 0px;
        margin-left: 8px;
        border-left: medium;
        border-top: 1px dashed rgb(205, 216, 223);
        width: 100%;
        height: 1px;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu>.inner>.inner>.or p {
        color: rgb(205, 216, 223);
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        padding: 8px;
        display: block;
        height: 100%;
        margin-bottom: 0;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu{
        width: 383px;
        transform: translate(0px, 26px) !important;
        left: unset !important;
        right: 0 !important;
    }
    .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu{
        width: 323px;
        transform: translate(0px, 26px) !important;
        left: unset !important;
        right: 0 !important;
    }
}

@media (max-width:575px) {
    .main-header .nabbar-nav .nav-right-side-bar{
        gap: 0 14px;
    }
    .main-header .nabbar-nav .nav-right-side-bar .item .dropdown-menu > .inner{
        padding: 23px;
    }
    .main-header .nabbar-nav .nav-right-side-bar .item.support-dropdown .dropdown-menu {
        width: 320px;
        transform: translate(60px, 26px) !important;
    }

    .main-header .nabbar-nav .nav-right-side-bar .item.notification-dropdown .dropdown-menu{
        width: 320px;
        transform: translate(40px, 26px) !important;
    }
    .main-header .nabbar-nav .nav-right-side-bar .item.account-dropdown .dropdown-menu{
        transform: translate(0px, 26px) !important;
    }
    
}


/* banner CSS */

.banner{
    overflow: hidden;
    position: relative;
    padding: 60px 0px 40px;
}
.banner.pb-increase{
    padding-bottom: 60px;
}

@media (max-width:991px) {
    .banner{
        padding-top: 40px;
    }
}

.banner.one{
    background: linear-gradient(60deg,#505cdd 0%,#ac5dec 100%);
}

.banner .banner-heading{
display: block;
}

.banner .banner-heading h5{
    color: rgb(54, 54, 54);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin: 0px 0px 8px;
    text-transform: initial;
    margin-bottom: 0;
}

.banner .banner-heading h1{
    color: #FFFFFF;
  font-size: 57px;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.banner .banner-heading p{
    color: rgb(236, 236, 236);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.banner .banner-heading .list-one-line{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.banner .banner-heading .list-one-line li{
    -moz-box-align: center;
  align-items: center;
  color: rgb(54, 54, 54);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  position: relative;
  padding-inline-start: 15px;
}
.banner .banner-heading .list-one-line li:before{
    content: '';
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 7px;
  left: 0;
}

.banner .banner-heading .btn-and-starting-price{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    align-items: center;
}
.banner .banner-heading .starting-price{
    display: flex;
    flex-direction: column;
}

.banner .banner-heading .starting-price .st{
    font-size: 14px;
    display: block;
    text-align: start;
}

.banner .banner-heading .starting-price h3{
    font-size: 25px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}

.banner .banner-heading .money-back{
    font-size: 15px;
    color: #FFFFFF;
    line-height: 18px;
}

.banner .banner-heading .money-back i{
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
    vertical-align: sub;
}

@media (max-width:767px) {
    .banner .banner-heading h1{
        font-size: 38px;
    }
}

.banner .banner-heading .promocode{
    font-size: 23px;
    color: rgb(var(--color-primary));
    margin-top: 0;
    margin-bottom: 0;
    line-height: 2;
    position: relative;
    font-weight: 600;
}

.banner .banner-heading .promocode .code {
    font-size:25px;
    text-align:center;
    color:rgb(var(--color-primary));
    padding:4px 10px;
    border:3px dotted rgb(var(--color-primary));
    margin-left:10px;
    border-radius:0 0 0 13px;
    position:relative
  }
  .banner .banner-heading .promocode .copy {
    padding:0 10px;
    background:rgb(var(--color-primary));
    border-radius:0 4px 4px 0;
    margin-inline-start:-3px;
    cursor:pointer;
    border: 1px solid rgb(var(--color-primary));
  }
  .banner .banner-heading .promocode .copy svg {
    width:16px;
    height:19px;
    fill:#fff;
    cursor:pointer
  }

  .banner .banner-heading .promocode .promotooltip {
    position: relative;
    display: inline-block;
  }
  
  .banner .banner-heading .promocode .promotooltip .tooltiptext {
    visibility: hidden;
    width: fit-content;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 20px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    white-space: nowrap;
    transform: translate(-50%);
  }
  
  .banner .banner-heading .promocode .promotooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .banner .banner-heading .promocode .promotooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

/* =========================================================================
    Buttons
========================================================================= */

.btn-01{
    line-height: 60px;
  font-size: 18px;
  color: #FFFFFF;
  padding: 0 30px;
  position: relative;
  background: #00ADEF;
  font-weight: 700;
  display: block;
  width: fit-content;
  transition: all 0.5s;

  cursor: pointer;
  border: 0;
}

.btn-01:hover{
    background: #000000;
    color: #fff;

}

/* ----------------------------------------------------------------
   Section Gap & Heading
------------------------------------------------------------------- */
.section-gap {
    padding: 60px 0;
}

.section-heading {
    display: block;
}

.section-heading.gap-bottom {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
}

.section-heading p {
    font-size: 16px;
    font-weight: 400;

}

.section-heading.center h2,
.section-heading.center p {
    text-align: center;
}

.section-heading.white h2,
.section-heading.white p {
    color: #fff;
}

.section-heading.white p {
    opacity: 0.7;
}

@media (max-width:767px) {
    .section-gap {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 33px;
    }

    .section-heading.gap-bottom {
        margin-bottom: 40px;
    }
}

/* ----------------------------------------------------------------
   Domain Search Homepage
------------------------------------------------------------------- */
.banner-up-domain-search{
    position: relative;
    z-index: 1;
}

.banner-up-domain-search > .container{
    margin-top: -45px;
}

.banner-up-domain-search > .container .inner{
    -moz-box-align: center;
  align-items: center;
  background-color: rgb(252, 252, 252);
  border-radius: 100px;
  box-shadow: rgba(46, 147, 238, 0.2) 0px 0px 20px 0px;
  display: flex;
  list-style: none;
  padding: 16px 32px;
  z-index: 5;
  width: 100%;
}


.banner-up-domain-search > .container .inner .inside{
    display: flex;
gap: 15px;
width: 100%;
align-items: center;
}

.banner-up-domain-search > .container .inner .inside p{
    display: block;
    margin-bottom: 0;
    color: rgb(54, 54, 54);
    font-size: 14px;
    line-height: 18px;
    max-width: max-content;
    width: 100%;
}

.banner-up-domain-search > .container .inner .inside .inputs{
    -moz-box-align: center;
  align-items: center;
  display: flex;
  width: 100%;
  gap: 15px;
}

.banner-up-domain-search > .container .inner .inside .inputs .input-box{
    display: flex;
  width: 100%;
}

.banner-up-domain-search > .container .inner .inside .inputs .input-box span{
    -moz-box-align: center;
  align-items: center;
  background-color: rgb(241, 243, 246);
  border: 1px solid rgb(205, 216, 223);
  border-radius: 4px 0px 0px 4px;
  color: rgb(166, 182, 204);
  display: flex;
  font-size: 14px;
  line-height: 18px;
  padding: 16px 8px;
  text-align: center;
}

.banner-up-domain-search > .container .inner .inside .inputs .input-box input{
    border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: rgb(205, 216, 223);
  border-image: none;
  border-radius: 0px 4px 4px 0px;
  color: rgb(54, 54, 54);
  line-height: 18px;
  padding: 16px;
  font-size: 14px;
  width: 100%;
  outline: unset;
}

.banner-up-domain-search > .container .inner .inside .inputs .submit-box{
    display: block;
}


.banner-up-domain-search > .container .inner .inside .inputs .submit-box .btn-01, .banner-up-domain-search > .container .inner .inside .inputs .submit-box .btn-01:hover{
    line-height: 1;
    bacgroung:#000;
    padding: 15px 20px;

}

@media (max-width:991px) {
    .banner-up-domain-search > .container .inner{
        border-radius: 10px;
    }
}

/* ----------------------------------------------------------------
   Home Page Services
------------------------------------------------------------------- */
.swiper-homepage-product .swiper-arrows{
    display: flex;
    justify-content: end;
    gap: 15px;
}

.swiper-homepage-product .swiper-arrows a{
    -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}

.swiper-homepage-product .swiper-arrows a:before{
    content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}

.swiper-homepage-product .swiper-arrows a:hover:before{
    opacity: 0.3;
}

.swiper-homepage-product .swiper-arrows a.swiper-button-disabled{
    background-color: rgb(252, 252, 252);
    border: 1px solid rgb(235, 235, 235);
    color: rgb(205, 216, 223);
    cursor: auto;
}
.swiper-homepage-product .swiper-arrows a.swiper-button-disabled:before{
    content: unset;
}

.service-01{
    border-radius: 10px;
  border: 1px solid rgb(235, 235, 235);
  flex: 1 1 0%;
  padding: 32px;
  transition: border 0.2s ease-in, box-shadow 0.2s ease-in;
  width: 100%;
  height: 100%;
  display: block;
}

.service-01:hover{
    border: 1px solid rgb(116, 193, 255);
    box-shadow: rgba(46, 147, 238, 0.2) 0px 4px 8px;
}

.service-01 .icon{
    margin-bottom: 18px;
}

.service-01 .icon > .inner{
    -moz-box-align: center;
  align-items: center;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(243, 249, 255);
  padding: 10px;
  transition: 0.2s;
}

.service-01 .icon > .inner i{
    font-size: 25px;
    line-height: 0;
    color: rgb(var(--color-primary));
}

.service-01 h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: rgb(54, 54, 54);
    transition: color 0.2s;
    margin-bottom: 15px;
}

.service-01:hover h3{
    color: rgb(var(--color-primary));
}

.service-01 p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(54, 54, 54);
    margin-bottom: 0;
}

.service-01 .starting-price{
    font-size: 16px;
  line-height: 26px;
  color: rgb(var(--color-primary));
  display: block;
  font-weight: 700;
  margin-bottom: 0;
}
.service-01 a{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: rgb(var(--color-primary));
    display: block;
}

.service-01:hover a span{
    text-decoration: underline;
}

.service-01 a i{
    margin-inline-start: 5px;
    transition: all 0.2s;
}

.service-01:hover a i{
    margin-inline-start: 8px;
}

.swiper .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }
  
  .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid rgb(var(--color-primary));
  }
  
  .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgb(var(--color-primary));
  }

  .ulcollapse{
    list-style: none;
  position: relative;
  padding: 0px;
  margin: 0;
  }

  .ulcollapse li{
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(235, 235, 235);
  }

  .ulcollapse li.active{
    border-color: rgb(var(--color-primary));
  }

  .ulcollapse li + li{
    margin-top: 20px;
  }

  .ulcollapse li a{
    color: rgb(54, 54, 54);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s;
  }

  .ulcollapse li.active a, .ulcollapse li a:hover{
    color: rgb(var(--color-primary)) !important;
    font-weight: 500;
  }

  .ulcollapse li.active a{
    padding-bottom: 15px;
  }

  .ulcollapse li a i{
    width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  background: rgb(243, 249, 255);
  margin-inline-end: 10px;
  font-size: 20px;
  }
  .ulcollapse li a i.fal{
    font-size: 17px;
  }

  .ulcollapse li p{
    color: rgb(54, 54, 54);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  display: none;
  }


  .swiper-testimonilas .swiper-arrows{
    display: flex;
    justify-content: end;
    gap: 15px;
}

.swiper-testimonilas .swiper-arrows a{
    -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}

.swiper-testimonilas .swiper-arrows a:before{
    content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}

.swiper-testimonilas .swiper-arrows a:hover:before{
    opacity: 0.3;
}

.swiper-testimonilas .swiper-arrows a.swiper-button-disabled{
    background-color: rgb(252, 252, 252);
    border: 1px solid rgb(235, 235, 235);
    color: rgb(205, 216, 223);
    cursor: auto;
}
.swiper-testimonilas .swiper-arrows a.swiper-button-disabled:before{
    content: unset;
}

.testimonilas-item{
    display: flex !important;
  -moz-box-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  background: rgb(252, 252, 252);
  border: 1px solid rgb(235, 235, 235);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  flex-direction: column;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
}

.testimonilas-item:hover{
    border: 1px solid rgb(116, 193, 255);
    box-shadow: rgba(46, 147, 238, 0.2) 0px 4px 8px;
}

.testimonilas-item .icon{
    margin-bottom: 16px;
}

.testimonilas-item .icon img{

}

.testimonilas-item > p{
    color: rgb(54, 54, 54);
    font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.testimonilas-item .tetimonilas-ownor{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.testimonilas-item .tetimonilas-ownor h3{
    font-size: 16px;
  line-height: 18px;
  color: rgb(54, 54, 54);
  font-weight: 600;
    margin-bottom: 0;
}

.testimonilas-item .tetimonilas-ownor img{
    max-height: 25px;
    opacity: 0.5;
}

/* map  css start*/

.network-map-wrap ul li {
	position: absolute;
	z-index: 1;
	width: 10px;
	height: 10px;
	margin: -6px;
	background-color: rgb(var(--color-primary));
	border-radius: 50%;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
  -webkit-transition: .5s linear;
}

@-webkit-keyframes ripple {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
      box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
    }
    100% {
      -webkit-box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
      box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
    }
  }
  
  @keyframes ripple {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
      box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.1), 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1);
    }
    100% {
      -webkit-box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
      box-shadow: 0 0 0 10px rgba(var(--color-primary), 0.1), 0 0 0 20px rgba(var(--color-primary), 0.1), 0 0 0 30px rgba(var(--color-primary), 0);
    }
  }

.custom-map-location li {
	list-style: none;
}

.network-map-wrap ul li span {
    display: block;
    width: max-content;
    height: max-content;
    top: -100%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -100%);
    opacity: .9;
    max-width: 200px;
    padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  z-index: 1070;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  }

  .network-map-wrap ul li span:after{
    content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  }

  @media (max-width:575px) {
    .network-map-wrap img{
        min-height: 265px;
    }
  }

/* faq css start  */

.faq-items .accordion li{
    list-style: none;
    padding: 24px 0px;
    border-bottom: 1px solid rgb(205, 216, 223);
}

.faq-items .accordion li a{
    color: rgb(54, 54, 54) !important;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  gap: 16px;
  -moz-box-pack: justify;
  justify-content: space-between;
  line-height: 24px;
  transition: all 0.3s;
  align-items: center;
  line-height: 1.2;
}


.faq-items .accordion li.active a{
    color: rgb(var(--color-primary)) !important;
}

.faq-items .accordion li a i{
    font-size: 25px;
    transition: all 0.3s;
}

.faq-items .accordion li.active a i{
    transform: rotate(-180deg);
}

.faq-items .accordion li p{
    display: none;
    margin-bottom: 0;
    color: rgb(54, 54, 54);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 16px;
}

.main-footer{
    background-color: rgb(0, 0, 0);
  border-radius: 0px;
  padding: 60px 0px 30px;
  position: relative;
}

@media (max-width:767px) {
    .main-footer{
        padding: 40px 0px 30px;
    }
}

.main-footer .footer-info a.logo{
display: block;
}

.main-footer .footer-info a.logo img{
    max-height: 33px;
}

.main-footer .footer-info p{
    color: rgb(124, 144, 170);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 16px 0px;
    margin-bottom: 0;
    margin-top: 5px;
}

.main-footer  .footer-social-media {
    display:flex;
    flex-wrap:wrap
  }
  .main-footer .footer-social-media a {
    width:35px;
    height:35px;
    line-height:40px;
    border-radius: 50px;
    border:1px solid;
    border-color:rgb(var(--color-primary));
    color:#fff;
    text-align:center;
    font-size:15px;
    transition:all .5s;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:5px;
    background: rgb(var(--color-primary));
  }
  .main-footer .footer-social-media a i {
    font-size: 16px;
    color:#fff;
    line-height: 0;
  }
  .main-footer .footer-social-media a:hover {
    color:#fff;
    background: rgb(var(--color-primary-dark));
    border-color:rgb(var(--color-primary-dark));
  }
  .main-footer .footer-social-media a:hover i {
    color:#fff;
  }


  .main-footer .footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-footer .footer-list li {
    list-style: none;
    margin: 10px 0;
}

.main-footer .footer-list li.heading_list {
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 0;
}

.main-footer .footer-list li a {
    position: relative;
    color: rgb(140, 140, 140);
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    padding-bottom: 2px;
    display: inline-block;
    text-decoration: none;
}

.main-footer .footer-list li a:hover {
    background-size: 100% 1px;
}

.main-footer .footer-bootm-item{
    display: block;
}

.main-footer .footer-bootm-item h4{
    color: rgb(54, 54, 54);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.main-footer .footer-bootm-item img{
    display: block;
    margin: auto;
    max-height: 70px;
}

.main-footer .copy-right-content{
    display: block;
    text-align: center;
}

.main-footer .copy-right-content p{
    color: rgb(119, 119, 119);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 0;
}

.swiper.swiper-plans .swiper-arrows{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.swiper.swiper-plans .swiper-arrows a{
    -moz-box-align: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  border: medium;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  height: 42px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: relative;
  width: 42px;
  font-size: 25px;
  color: #fff;
}

.swiper.swiper-plans .swiper-arrows a:before{
    content: "";
  background-color: rgb(var(--color-primary));
  border-radius: 50%;
  bottom: -4px;
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}

.swiper.swiper-plans .swiper-arrows a:hover:before{
    opacity: 0.3;
}

.swiper.swiper-plans .swiper-arrows a.swiper-button-disabled{
    background-color: rgb(252, 252, 252);
    border: 1px solid rgb(235, 235, 235);
    color: rgb(205, 216, 223);
    cursor: auto;
}
.swiper.swiper-plans .swiper-arrows a.swiper-button-disabled:before{
    content: unset;
}


.price-section{
    padding: 20px;
    background: #f7f7f7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 23px;
    position: relative;
    text-align: start;
}

.price-section h4{
    font-size: 20px;
    line-height: 28px;
    color: rgb(var(--color-primary));
    font-weight: 800;
    margin-bottom: 5px;
}

.price-section h3{
    color: #0080b3;
    font-weight: 800;
    font-size: 45px;
    margin-bottom: 0;
}

.price-section h3 sup, .price-section h3 sub{
    color: #5f6b79;
  font-size: 20px;
  font-weight: 400;
  margin: 0 5px;
}

.price-section .discount-price{
    font-weight: 400;
    font-size: 16px;
    color: #c73636;
    display: block;
}

.price-section .discount-price .off{
    background: rgb(186, 230, 211);
  border-radius: 12px;
  color: rgb(31, 32, 68);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  margin-bottom: 1px;
  padding: 2px 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-inline-start: 5px;
}

.price-section ul{
    margin-top: 30px;
}

.price-section ul li{
    font-size: 14px;
    color: rgb(54, 54, 54);
    cursor: default;
    font-weight: 400;
}

.price-section ul li + li{
    margin-top: 10px;
}

.services-02{
    display: block;
}

.services-02 .icon{
    margin-bottom: 15px;
}
.services-02 .icon img{
    max-height: 45px;
}

.services-02 h4{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.services-02 p{
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 10px;
}




.verticle-pricing-box{
    padding: 13px;
    background-color: #dcf4f6;
    border-radius: 10px;
}
.verticle-pricing-box .pricing-title{
 background-color: #ffffff;
 padding: 24px;
 border-radius: 10px;
}
.verticle-pricing-box.pro .pricing-title {
    background-color: #00adef24;
}
.verticle-pricing-box .pricing-title span{
    background-color: #00adef29;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    color: #001042;
}

.verticle-pricing-box .pricing-title h5{
font-size: 1.25rem;
font-weight: 600;
}

.verticle-pricing-box .pricing-title p{
    font-size: 14px;
    font-weight: 400;
}

.verticle-pricing-box .pricing-features{
    display: flex;
    flex-wrap: wrap;
}

.verticle-pricing-box .pricing-features li {
    width: 50%;
    display: block;
    position: relative;
    padding-inline-start: 29px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

@media (max-width:992px) {
   .verticle-pricing-box  .pricing-features li{
        width: 100%;
    }
}



.verticle-pricing-box .pricing-features li:after{
    content: '\F26E';
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 24px;
  color: rgb(var(--color-primary));
  font-family: var(--font-bootstrap-icons);
  line-height: 1;
}

.verticle-pricing-box  .pricing-amount{
    padding-inline-start: 40px;
    border-inline-start: 1px solid rgba(0,16,66,.1);
}

@media (max-width:992px) {
   .verticle-pricing-box  .pricing-amount{
    padding-inline-start: calc(var(--bs-gutter-x) * .5);
    padding-top: 20px;
    border-inline-start: unset;
    border-top: 1px solid rgba(0,16,66,.1);
}
}

.verticle-pricing-box  .pricing-amount h3{
font-size: 1.875em;
font-weight: 600;
}

.verticle-pricing-box  .pricing-amount p{
    font-size: 14px;
    font-weight: 400;
}


.theme-preview{
    padding: 8px;
    background: #fff;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07) !important;
    border-radius: 4px;
}

.theme-preview .previewimg{
    height: 250px;
    overflow: hidden;
    display: block;
    position: relative;
}
@media (max-width:575px) {
    .theme-preview .previewimg{
        height: 200px;
    }  
}

.theme-preview .previewimg:after{
    content: attr(data-theme-name);
  background: #e1eaff;
  color: #2f0f0f;
  font-size: 16px;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 1px;
}

.theme-preview .buying-option{
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.theme-preview .buying-option a:first-child{
    padding: 0;
    display: block;
    width: fit-content;
    border-radius: 5px;
    color: rgb(var(--color-primary)) !important;
    line-height: 1.5;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
}

.theme-preview .buying-option a:first-child:hover{
    background-size: 100% 1px;
}

.theme-preview .buying-option a:last-child{
    padding: 10px 15px;
    display: block;
    width: fit-content;
    background: #53d267 !important;
    border-radius: 5px;
    color: #fff !important;
    line-height: 1.5;
    transition: all 0.3s;
}

.theme-preview .buying-option a:last-child:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transform: translatey(-5px);
}



.tabs-section-two .tabs {
    display: block;
    width: 100%;
}

.tabs-section-two .tabs .items {
    display: block;
    margin: 0 auto 60px;
    border-bottom: 1px solid #e0e0e0;
}

.tabs-section-two .tabs .items .item {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 12px 0;
    position: relative;
    color: rgb(var(--color-primary));
    cursor: pointer;
}

.tabs-section-two .tabs.many-tabs .items .item {
    font-size: 16px;
}

.tabs-section-two .tabs .items .item+.item {
    margin-inline-start: 40px;
}

.tabs-section-two .tabs .items .item.active {
    color: #1b1b1b;
    font-weight: 600;
}

.tabs-section-two .tabs .items .item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background: 0 0;
    transition: width .5s linear;
}

.tabs-section-two .tabs .items .item.active:after {
    width: 100%;
    background: rgb(var(--color-primary));
}

.tabs-section-two .contents {
    display: block;
}

.tabs-section-two .contents .item {
    display: none;
}

.tabs-section-two .contents .item.active {
    display: block;
}

@media (max-width:767px) {
    .tabs-section-two .tabs .items .item {
        font-size: 14px;
    }

    .tabs-section-two .tabs .items .item+.item {
        margin-inline-start: 30px;
    }

    .tabs-section-two .tabs .items {
        margin: 0 auto 30px;
    }

    .tabs-section-two .tabs.many-tabs .items {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
        display: none;
    }

    .tabs-section-two .tabs.many-tabs .items {
        display: flex;
    }

    .tabs-section-two .tabs.many-tabs .items .item {
        white-space: nowrap;
    }
}




/*==============new plan css======================*/

.price-section {
    background: #f7f7f7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 23px;
    position: relative;
    text-align: start;
    border: 1px solid #66A8F7;
    text-align: center;
    height: 100%;
    padding: 0px !important;
}
.price-section.active {
    border: 2px solid #1A4884;
}

.price-section p{
    font-size: 14px;
    font-weight: 400;
}
.card-body{
    padding: 20px;
}

.plan-header-space{
    display: block;
    height: 52px;
    width: 100%;
}

.plan-header-space.active span {
    padding: 0.625rem 0;
    background-color: #1A4884;
    color: #fff;
}
.plan-header-space.active span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.40625rem;
    text-transform: uppercase;
    padding: 15px;
    width: 100%;
    display: block;
    border-radius: 20px 20px 0px 0px;
}

.discount-price{
    margin-top: 30px;
}

.discount-price span{
    background: #e5fcff !important;
    width: 100%;
    margin-left: auto !important;
  margin-right: auto !important;
  font-size: 0.90rem !important;
  margin-bottom: 2rem !important;
  padding: 5px 10px !important;
  border-radius: 0px !important;
}

/*.price-section .btn-01 {
    line-height: 60px;
    font-size: 18px;
    color: #fff;
    padding: 0 30px;
    position: relative;
    background: rgb(var(--color-primary));
    font-weight: 700;
    display: block;
    width: fit-content;
    transition: all 0.5s;
     box-shadow: none !important; 
    cursor: pointer;
    border: 0;
}*/

.price-section ul {
    padding: 0 0 0 30px !important;
    margin-top: 0;
    text-align: start;
}
.price-section ul li {
    display: flex;
    align-items: start;
}

.price-section ul li::before {
    content: "\F272";
    font-family: bootstrap-icons;
    font-size: 20px;
    position: relative;
    margin-inline-end: 5px;
    color: #1d2a3b;
    font-weight: 900;
    top: -4px;
}


.more-features-btn{
    background: unset;
    border: unset;
    line-height: 40px;
    padding: 20px 30px;
    width: 100%;
}
.more-features-btn {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1875rem;
    line-height: 122%;
    border-top: 2px solid #23b7f0;
}



.hidden {
    display: none;
}

.more-features-btn i {
     color: rgb(var(--color-primary)) !important; 
    transition: color 0.3s ease;
}

.more-features-btn.active i {
    color: rgb(var(--color-primary)) !important;  
}

.swiper.swiper-plans {
	overflow: inherit !important;
}
.entry-card {
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.entry-content {
    background-color: #fff;
    padding: 36px 36px 36px 36px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.entry-content .entry-title a {
    color: #333;
}

.entry-content .entry-title a:hover {
    color: #4782d3;
}

.entry-content .entry-meta span {
    font-size: 12px;
}

.entry-title {
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.entry-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.entry-thumb img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.entry-thumb .thumb-hover {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(71, 130, 211, 0.85);
    display: block;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 40px;
    line-height: 100px;
    border-radius: 50%;
    margin-top: -50px;
    margin-left: -50px;
    text-align: center;
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.entry-thumb:hover .thumb-hover {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.article-post {
    border-bottom: 1px solid #eee;
    padding-bottom: 70px;
}

.article-post .post-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.article-post .post-thumb .post-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all .3s;
    -webkit-transition: all .3s;
    opacity: 0;
}

.article-post .post-thumb .post-overlay span {
    width: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    transform: translateY(70%);
    -webkit-transform: translateY(70%);
    transition: all .3s;
    -webkit-transition: all .3s;
    height: 100%;
    color: #fff;
}

.article-post .post-thumb:hover .post-overlay {
    opacity: 1;
}

.article-post .post-thumb:hover .post-overlay span {
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
}

.post-content .post-title {
    font-weight: 500;
}

.post-meta {
    padding-top: 15px;
    margin-bottom: 20px;
}

.post-meta li:not(:last-child) {
    margin-right: 10px;
}

.post-meta li a {
    color: #999;
    font-size: 13px;
}

.post-meta li a:hover {
    color: #4782d3;
}

.post-meta li i {
    margin-right: 5px;
}

.post-meta li:after {
    margin-top: -5px;
    content: "/";
    margin-left: 10px;
}

.post-meta li:last-child:after {
    display: none;
}

.post-masonry .masonry-title {
    font-weight: 500;
}

.share-buttons li {
    vertical-align: middle;
}

.share-buttons li a {
    margin-right: 0px;
}

.post-content .fa, .post-content .far, .post-content .fas {
    color: #ddd;
}

.post-content a h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0px;
}

.article-post .owl-carousel {
    margin-bottom: 20px !important;
}

.post-masonry h4 {
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 700;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.media-body h5 a {
    color: #555;
}
.categories li a:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    margin-right: 5px;
}
/*
Template sidebar
*/

.sidebar-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.categories li {
    vertical-align: middle;
}

.categories li > ul {
    padding-left: 15px;
}

.categories li > ul > li > a {
    font-weight: 300;
}

.categories li a {
    color: #999;
    position: relative;
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}

.categories li a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    margin-right: 5px;
}

.categories li a:hover {
    color: #444;
    background-color: #f5f5f5;
}

.categories > li.active > a {
    font-weight: 600;
    color: #444;
}

.media-body h5 {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 20px;
    font-weight: 400;
}

.media-body h5 a {
    color: #555;
}

.media-body h5 a:hover {
    color: #4782d3;
}
