/* ===================================================
>>> 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: 57, 239, 192;
    --color-primary-dark: 15, 189, 145;
    --color-secondary: 18, 118, 140;
    --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;
}

.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;
}

.w-fit-content{
    width: fit-content;
}

/* ----------------------------------------------------------------
    03. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    background: rgb(var(--color-primary));
    width: 40px;
    height: 40px;
    border-radius: 4px;
    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, rgba(0, 0, 0, 0.25) 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: 15px;
}

.bg2 {
    background-color: #F2F3F4;
}

/* ----------------------------------------------------------------
    04. btns css
------------------------------------------------------------------- */
.btn-02 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #00112C;
    padding: 12px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: #00112c;
    cursor: pointer;
}
.btn-02:hover {
    background-color: #00112c;
    color: #fff;
}
.btn-03 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #fff;
    padding: 12px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}
.btn-03:hover {
    background-color: #fff;
    color: #00112C;
}

.theme_btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #fff;
    padding: 15px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: rgb(var(--color-primary-dark));
    transition: all .4s;
    cursor: pointer;
}
.theme_btn:hover {
    color: #00112c;
    background-color:#fff;
}

.theme_btn.two{
    border: 2px solid #00112c;
    color: rgb(var(--color-primary-dark));
    transition: all .4s;
}
.theme_btn.two:hover {
    color: #fff;
    background-color:#00112c;
}

.gap-bottom{
    margin-bottom: 30px;
}


/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
    padding: 20px;
    position: relative;
    box-shadow: 0 0 15px #40444733;
    border-radius: 8px;
    border: 1px solid #bfbfbf;
}

.sunrise-form .labels {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    width: 100%;
}

.sunrise-form .smd-info {
    position: absolute;
    right: 20px;
    top: 6px;
}

.sunrise-form .smd-info .tooltip-txt {
    position: relative;
    cursor: help;
    color: rgb(var(--color-primary));
    font-weight: 500;
    font-size: 15px;
}



.sunrise-form .smd-info .tooltip-txt .tooltip-info {
    display: none;
    padding: 15px;
    z-index: 5;
    cursor: default;
    background: #272727;
    color: #ededed;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    top: 25px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
    width: 635px;
    right: 2px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
    background: url('../images/up_arrow.png') 0 0 no-repeat;
    right: 29px;
    width: 22px;
    height: 12px;
    position: absolute;
    top: -10px;
    display: block;

}

.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
    display: block;
}

.sunrise-form .smd-info .tooltip-txt+.tooltip-txt {
    cursor: pointer;
}

@media (max-width:991px) {
    .sunrise-form .smd-info {
        display: none;
    }
}

.sunrise-form .input {
    width: 100%;
    background: #ececec;
    border: 1px solid #e9e9e9;
    padding: 15px;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
}
/* ----------------------------------------------------------------
    04. Header
------------------------------------------------------------------- */
.main-header {
    background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 5;
  padding: 18px 0px;
}

.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: #002143;
    top: 0;
}

.main-header.light{
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.main-header.light.header-sticky{
    background: #fff;
}

/*.main-header.dropdown-open {
    background-color: #002143;
}*/

.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;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand:not(.light-logo) .lightlogo{
display: none;
}
.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand.light-logo .lightlogo{
    display: block;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand.light-logo .darklogo{
    display: none;
}


/* 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 > 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: rgb(255, 255, 255);
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .main-header.light .nabbar-nav .mainmenu > li > a{
        color: rgb(0, 0, 0);
    }


    .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 {
        position: absolute;
        top: 44px;
        display: block;
        opacity: 0;
        visibility: hidden;
        z-index: 9;
        background: #fff;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one{
        padding: 15px;
        min-width: 230px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
        visibility: visible;
        opacity: 1;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two{
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
        padding: 25px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li{
        display: block;
    }


    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li.heading-dropdown{
        font-size: 16px;
        text-decoration: underline;
        color: #000;
        margin-bottom: 10px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li > a{
        display: block;
    white-space: nowrap;
    color: #5b5b5b;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s;
    line-height: 34px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li > a:hover{
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one > li > a{
        display: block;
    white-space: nowrap;
    color: #5b5b5b;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
    line-height: 2;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one > li > a:hover{
        color: rgb(var(--color-primary));
    }


    .main-header .navbar-button,
    .main-header .nabbar-nav .mobile-menu-header {
        display: none;
    } 

}

.main-header .nabbar-nav .nav-right-side-bar .login-btn-nav {
    padding: 7px 15px;
    display: block;
    border-radius: 5px;
    background: rgb(0, 33, 67);
    color: #fff;
    border: 2px solid #fff;
}
.main-header .nabbar-nav .nav-right-side-bar .login-btn-nav:hover {
    padding: 7px 15px;
    display: block;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: #002143;
    border: 2px solid #fff;
}


.main-header.light .nabbar-nav .nav-right-side-bar .login-btn-nav{
    border: 2px solid rgb(0, 33, 67);
}


.dropdown.notification .dropdown-toggle::after{
    content: unset !important;
}

/* 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;
        color: #fff;
    }

    .main-header.light .navbar-button{
        color: #012143;
    }

    .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;
        padding: 15px;
        padding-top: 10px;
        padding-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li.heading-dropdown{
        display: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li > a{
        display: block;
        color: #5b5b5b;
        font-size: 16px;
        line-height: 2;
        font-weight: 400;
        transition: all 0.3s;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li > a:hover{
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > a{
        display: block;
        color: #5b5b5b;
        font-size: 16px;
        line-height: 2;
        font-weight: 400;
        transition: all 0.3s;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > a:hover{
        color: rgb(var(--color-primary));
    }
}


.banner{
    background: #002143;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner.bannerlight{
    background: #fff;
}
.banner-up{
    background: #fff;
    padding: 100px 0px 70px 0px !important;
}

.banner .banner-illustration {
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    height: 100%;
}

.banner .banner-illustration .img1 {
    width: 250px;
    position: absolute;
    left: 40px;
    top: 140px;
}

.banner .banner-illustration .img2 {
    width: 370px;
    position: absolute;
    right: 40px;
    top: 120px;
}

.banner .banner-inner{
    padding: 100px 0 70px 0;
}



.banner.bg-img .banner-inner {
    padding-top: 200px;
    padding-bottom: 200px;
}


.banner .banner-heading{
    display: block;
}

.banner-heading .heading-top {
    font-size: 14px;
    color: rgb(var(--color-primary-dark));
    border: 1px solid rgb(var(--color-primary-dark));
    border-radius: 100px;
    display: inline-block;
    padding: 7px 17px;
    background: #0fbd911a;
    margin-bottom: 14px;
    font-weight: 400;
}

.banner .banner-heading h1{
    font-size: 50px;
  color: #fff;
  font-weight: 700;
}

.banner:not(.bannerlight) .banner-heading p{
    color: #fff;
}

.banner.bannerlight .banner-heading h1{
    color: #002143;
}

.banner.bannerlight .banner-heading p{
    color: #4f4f4f;
}

.banner_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.banner_list li {
    width: 45%;
    line-height: 30px;
    align-items: start;
    display: flex;
    padding: 0 6px 14px 0;
}

.banner-price  .price-value{
    font-size: 60px;
    font-weight: 700;
    padding-left: 2px;
}

.banner_list li span {
    font-size: 14px;
    margin-left: 13px;
    font-weight: 400;
    color: #002143;
}
.banner-price  .price-value{
    font-size: 60px;
    font-weight: 700;
    padding-left: 2px;
    color: #002143;
}

@media(max-width:480px){
    .banner-price  .price-value{
    font-size: 40px;
}
}

.banner-price .crncy_icon {
    font-size: 30px;
    font-weight: 600;
    color: #002143;
}
.banner-price sub{
    font-size: 35px;
    font-weight: 600;
    color: #002143;
}

@media (max-width:480px) {
    .banner .banner-heading h1 {
        font-size: 32px;
    }
    .banner_list li {
    width: 100%;
}
}

.banner .banner-heading .form-banner{
    position: relative;
    display: block;
}

.banner .banner-heading .form-banner .input {
    width: 100%;
    background: #fff;
    padding: 20px 15px;
    padding-inline-end: 80px;
    line-height: 1.5;
    color: #747474;
    border: 1px solid #00214352;
    border-radius: 20px;
    outline: unset;
}

.banner .banner-heading .form-banner .submit{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.banner .banner-heading .form-banner .submit:hover{
    background: rgb(var(--color-primary-dark));
}


.transfer-form .select{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.transfer-form .submit{
    position: unset !important;
  background: rgb(var(--color-primary));
  padding: 15px 30px !important;
}



.hero-bottom {
    position: absolute;
    background: url(../images/svg9.svg) repeat-x;
    height: 80px;
    bottom: -25px;
    left: -2%;
    right: -2%;
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
}

.banner.two {
    padding: 150px 0 70px 0;
}

@media(max-width:1269px){
    .hero-bottom {
        bottom: -28px;
        left: 31%;
        width: 38%;
    }
    
    .banner .banner-illustration .img1 {
        top: 60%;
    }
    
    .banner .banner-illustration .img2 {
        top: 62%;
    }
}

@media(max-width:1140px){
    .hero-bottom {
        bottom: -28px;
        left: 35%;
        width: 30%;
    }
}
@media(max-width:991px){
    .hero-bottom {
        display: none;
    }
    
    .banner .banner-illustration .img1 {
        display: none;
    }
    
    .banner .banner-illustration .img2 {
        display: none;
    }
    .banner.bg-img .banner-inner {
        padding-top: 120px;
        padding-bottom: 70px;
    }
}

.img-design{
    position: relative;
    z-index: 1;
}

.img-design img{
    border-radius: 8px;
    position: relative;
    display: block;
}

.img-design img {
    box-shadow: -15px 15px 0px 0px rgb(var(--color-primary-dark));
}

.img-design::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    top: -15px;
    left: 15px;
    z-index: 2;
    border-radius: 8px;
}
.banner.bannerlight .img-design::before {
    border: 1px solid #0021435c;
}


main section {
    padding: 80px 0px 80px 0px;
}
@media(max-width:480px){
    main section {
    padding: 0px 0px 80px 0px;
}
}

/*========main css========*/
.feature-style-one{
    padding: 20px 15px;
    height: 100%;
    text-align: center;
}
.feature-style-one h3 {
    font-size: 34px;
    font-weight: 900;
    color: #00112C;
    margin-top: 20px;
    letter-spacing: 0.5px;
}
.feature-style-one p {
    font-size: 16px;
    font-weight: 400;
    color: #00112C;
}

.inner-link {
    font-weight: 600;
    color: rgb(var(--color-primary-dark));
    font-size: 16px;
    margin-top: 15px;
}

.inner-link:hover {
    color: rgb(var(--color-secondary));
    text-decoration: underline;
}

.inner-link:active {
  padding: 20px 30px;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
}

.baner-list li{
    display: flex;
    align-items: start;
    gap: 0px 15px;
}
.baner-list li img {
    min-width: 32px;
}

.section-heading h2 {
    font-size: 45px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 48px;
    font-weight: 600;
    color: #00112C;
}
.section-heading p {
    font-size: 16px;
    color: #00112C;
    font-weight: 300;
}

.section-heading h4{
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 32px;
    color: #00112C;
    font-weight: 600;
}
.search-bar{
    background-color: #04294F;
    color: #ffffff;
}

/*.text-white h2 ,.text-white p ,.text-white li{
    color: #ffffff !important;
}*/

.domain-search .form-banner{
    position: relative;
    display: block;
}

.domain-search .form-banner .input{
    width: 100%;
    background: #fff;
    padding: 20px 15px;
    padding-inline-end: 80px;
    line-height: 1.5;
    color: #747474;
    border: 0;
    border-radius: 20px;
    outline: unset;
}

.domain-search .form-banner .submit{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.domain-search .form-banner .submit:hover{
    background: rgb(var(--color-primary-dark));
}




@media(max-width:480px){
    .feature-style-one h3 {
    font-size: 25px;
}
.section-heading h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.section-heading h4 {
    font-size: 20px;
    font-weight: 500;
}
}

.support-bg{
    background: #F0F0FF;
    padding: 30px 20px;
    border-radius: 8px;
}

.support-bg .contact-heading {
    margin-inline-start: 35px;
    border-right: 1px solid #dadadd;
}

@media(max-width:992px){
    .support-bg .contact-heading {
    border-right: unset;
    border-bottom: 1px solid #dadadd;
    padding-bottom: 30px;
}
}
.col-lg-4:last-child .contact-heading {
  border-right: unset;
}
.support-bg .contact-heading .content span{
   font-size: 20px;
    color: #123455;
    transition: all .4s;
    font-weight: 600;
}
.bg3{
    background: #E6F5FF;
}

.support-bg .contact-heading a{
    font-size: 13px;
    color: #123455;
    transition: all .4s;
}
.support-bg .contact-heading a:hover{
    text-decoration: underline;
}
.call-heading{
     padding: 30px 20px;
    border-radius: 8px;
}

.domain-card {
    border: 1px solid rgb(215, 215, 215);
    border-radius: 8px 8px 0px 0px;
    height: 100%;
}

.domain-card .top-heading {
    background-color: rgb(232, 232, 232);
    padding: 25px;
    border-radius: 5px 5px 0px 0px;
    position: relative;
}
.domain-card .top-heading h2 {
    margin: 0;
    padding: 0;
    line-height: 0;
    position: absolute;
    top: 20%;
    font-size: 50px;
    color: #fff;
}

.domain-card .search-bar {
    padding: 15px 20px 20px 20px;
    background: rgb(var(--color-white));
    position: relative;
    overflow: hidden;
}

.domain-card .search-bar > img{
opacity: 0.5;
}

/*.domain-price {
    display: block;
    margin-top: 20px;
}*/
.domain-price .name {
    font-size: 27px;
    font-weight: 500;
    line-height: 30px;
    color: rgb(10, 11, 11);
    width: 90%;
    position: absolute;
    top: 27px;
    left: 34px;
    text-transform: capitalize;
}
.domain-price .price {
    font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: rgb(var(--color-primary-dark));
  text-align: center;
  display: block;
  padding-top: 17px;
}
.domain-price .price small {
    font-size: 15px;
}

.feature-style-3 h4{
    font-size: 25px;
    font-weight: 600;
    color: #00112c;
    margin-top: 15px;
}
.feature-style-3 p {
    font-size: 16px;
    font-weight: 400;
    color: #00112c;
}

@media(max-width:480px){
    .feature-style-3{
        text-align: center;
    }
}

.important-notes .list.check li{
    align-items: start;
    line-height: 23px;
}

.important-notes .section-heading{
    border: 2px solid rgb(var(--color-primary-dark));
    padding: 50px;
    border-radius: 8px;
}

.feature-style-3.two {
    padding: 20px;
    border: 2px solid rgb(0, 33, 67);
    border-radius: 8px;
    background: rgba(57, 239, 192, 0.13);
    height: 100%;
}

.tabing .tabs {
    border-left: 1px solid rgb(var(--color-secondary));
}

.tabing .tabs button {
    display: block;
    border: unset;
    background: transparent;
    padding: 10px 30px 10px 10px;
    color: #b5b5b5;
    font-weight: 500;
    border-left: 5px solid transparent;
    width: 100%;
    text-align: start;
}
.tabing .tabs button.active {
    border: 1px solid;
    border-left: 5px solid;
    color:#00112c;
    width: 90%;
    border-color: rgb(var(--color-secondary));
    text-align: start;
}

.tab-content {
 display: none;
}


.tab-select {
    border: 1px solid rgb(var(--color-primary-dark));
    border-radius: 8px;
    background: unset;
    font-size: 20px;
    font-weight: 600;
}

.tab-content.active {
 display: block;
}
.tab-select {
            display: none;
            margin-bottom: 20px;
            padding: 10px;
            width: 100%;
        }

@media screen and (max-width: 767px) {
            .tab-buttons {
                display: none;
            }

            .tab-select {
                display: block;
            }
        }


.group-button{
    display: flex;
    align-items: center;
    gap: 30px;
}

@media(max-width:480px){
    .group-button{
    display: block;
}
.group-button a:first-child{
    margin-bottom:15px;
}
.important-notes .section-heading{
    padding: 10px;
}
}

/* ----------------------------------------------------------------
     contact form css
------------------------------------------------------------------- */
.login-content{
    text-align: center;
    padding-top: 30px;
    height: 100vh;
}



.login-form{
    padding: 30px;
    border: 1px solid #63666959;
    border-radius: 8px 8px 0px 0px;
    margin-top: 20px;
    max-height: 400px;
    overflow: auto;
}
.login-content span{
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
}
.login-content span label{
    border-bottom: 2px solid #0fbd91;
}
.login-form h4{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}
.login-form label {
    font-size: 16px;
    font-weight: 400;
    color: #6f737d;
    margin-bottom: 4px;
}
.pwrest{
    display: flex;
    justify-content: space-between;
}

.login_footer{
    padding: 20px;
    border-left: 1px solid #63666959;
    border-right: 1px solid #63666959;
    border-bottom: 1px solid #63666959;
    border-radius: 0px 0px 8px 8px;
}
.login_footer span{
    font-size: 16px;
}

.login-sidebar {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #002143;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

@media(max-width:991px){
    .login-sidebar {
    height: auto;
    padding-bottom: 50px;
}
}
.feature-style-4.bordered{
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
}

.bg-primary{
    background:#002143!important;
}

.login-sidebar h4{
    font-size: 20px;
    font-weight: 500;
}
.login-sidebar .feature-style-4 p{
    font-size: 15px;
    font-weight: 400;
}

/* ----------------------------------------------------------------
     contact form css
------------------------------------------------------------------- */
.contact-form{
    padding: 50px;
    border-radius: 8px;
    background: #fff;
}
.contact-form p{
    font-size: 16px;
    color: rgb(99, 102, 105) !important;
    font-weight: 400;
}

 .inputs {
    display: block;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #63666959;
}

.abt-cmpny {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: all .4s;
    height: 100%;
}

.abt-cmpny .icon{
    background: #fff;
    border-radius: 8px;
    width: fit-content;
    padding: 12px;
    border-radius: 8px;
}

.abt-cmpny .content h4{
    font-size: 25px;
    font-weight: 500;
    color: #00112C;
}
.abt-cmpny .content span {
    font-size: 14px;
    font-weight: 500;
    color: #00112CA3;
}

.abt-cmpny:hover {
    transform: scale(1.05) !important;
}

.feature-style-3.bordered{
    border: 1px solid #00112CA3;
    border-radius: 8px;
    transition: all .4s;
    padding: 30px;
    height: 100%;
}

.policy h3 {
    font-size: 25px;
    font-weight: 500;
    color: rgb(var(--color-primary-dark));
}
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 2px dotted rgb(var(--color-primary-dark));
     opacity: 0.50; 
}

@media(max-width:480px){
    .contact-form{
    padding: 10px;
}
}
/* ----------------------------------------------------------------
    Tabings Css
------------------------------------------------------------------- */
.tabs-section-one .tabs {
    display: block;
    width: 100%;
}

.tabs-section-one .tabs .items {
    display: flex !important;
    width: 100%;
}

.tabs-section-one .tabs .items .item {
    flex: 1 1 auto;
    -webkit-box-flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 20px 10px;
    position: relative;
    cursor: pointer;
    display: block;
    background: #d8ebff;
    color: #333;
    text-align: center;
    border-inline-end: 1px solid #c6d4ea;
}

.tabs-section-one .tabs .items .item.active {
    background: rgb(var(--color-primary));
    color: #fff;
    border-color: rgb(var(--color-primary));
}

.tabs-section-one .tabs .items .item:last-child{
    border: unset;
}

.tabs-section-one .contents {
    display: block;
}

.tabs-section-one .contents .item {
    display: none;
}

.tabs-section-one .contents .item.active {
    display: block;
}

@media (max-width:500px) {
    .tabs-section-one .tabs .items .item{
        padding: 15px 10px;
        font-size: 14px;
    }
}

.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-secondary));
    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-secondary));
}

.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;
    }
}
/* ----------------------------------------------------------------
    27. Titan Email Video
------------------------------------------------------------------- */

.titanmail-video{
    background-color: rgb(250, 251, 254);
    border: 15px solid rgba(196, 192, 192, 0.5);
    border-radius: 5px;
    overflow: hidden; 
    }
    .titanmail-video video{
        height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
    }














/*========Footer css========*/
.testimonial{
        background-image: url(../images/testimonials_bg.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
}

.testi-heading{
    color: rgb(var(--color-primary));
}
.testimonial-left-img{
margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.testi-card{
    display: flex;
}

.w-85{
    width: 85%;
}

.testi-card .testi-content{
    width: 100%;
    margin-inline-end: 20px;
}
.testi-card .testi-right-end-imgt{
    width: 15%;
}

.testi-right-end-img ul li + li {
    margin-top: 10px;
}
 .testi-right-end-img ul li:hover{
   cursor: pointer;
}

.testi-right-end-img ul li:hover img{
    border-color: rgb(var(--color-primary-dark));
 }

.testi-card .review {
    background: #ffffff;
    padding: 45px 50px 50px 40px;
    margin: 30px 0px 30px 30px;
    box-shadow: -5px 8px 20px 0px rgba(0, 37, 89, 0.06);
    border-radius: 10px;
    position: relative;
}

.testi-card .review::after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -29px;
    border-bottom: 0 solid;
    border-left: 0 solid;
    border-right: 45px solid;
    border-top: 45px solid;
    background-color: initial;
    border-color: transparent;
    border-top-color: #ffffff;
}
.testi-card .author-img{
  width: 110px;
  border: 1px solid rgb(var(--color-secondary));
  border-radius: 10px;
  margin-right: 20px;
}

.testi-card .author-img img {
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 10px;
    width: 100px;
    margin-bottom: -1px;
}

.testi-content .about-autor{
    margin-left: 30px;
    margin-top: 55px;
    display: flex;
    align-items: center;
}

.author-details img {
    width: 60px;
    margin-top: 10px;
}

.section-heading h5{
        font-size: 20px;
        font-weight: 600;
        color: #00112c;
}

.author-details span {
    font-size: 16px;
    font-weight: 400;
    color: #454545;
}

.testi-right-end-img ul li img{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid transparent;
}

@media(max-width:480px){
    .testi-right-end-img ul li img{
       display: none;
}
.testi-card .review {
    background: #ffffff;
    padding: 45px 10px 10px 10px;
    margin: 30px 0px 30px 10px;
    box-shadow: -5px 8px 20px 0px rgba(0, 37, 89, 0.06);
    border-radius: 10px;
    position: relative;
}
.testi-content .about-autor {
    margin-left: 10px;
}
}

.shopping-cart {
    background-image: url(../images/brand_map.png);
    background-position: center center;
    background-size: cover;
    background-color: #f7f7f7;
    background-size: 50%;
}

.shopping-cart ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.shopping-cart ul li {
    padding: 10px 10px;
    border: 1px solid rgb(var(--color-primary));
    margin: 0px 10px 20px 10px;
    border-radius: 8px;
} 
@media(max-width:767px){
    .shopping-cart ul li{
        width: 33.33%;
    }
}
@media(max-width:480px){
    .shopping-cart ul li{
        width: 40%!important;
        padding: 10px;
    }
}
/*========Footer css========*/
.main-footer{
    padding: 100px 0px 50px 0px;
    background: #00112C;
    color: #ffffff;
}
.main-footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}
.main-footer ul li a {
    color: #ffffff;
    transition: var(--transition);
    line-height: 35px;
    font-weight: 400;
    font-size: 16px;
}

.footer-social-link ul {
    display: flex;
    align-items: center;
    gap: 0px 15px;
}
.footer-social-link li a i{
    color: #ffffff;
    transition: var(--transition);
    font-size: 20px;
}
.footer-social-link li a:hover i{
    color: #38E8B0;
}
.main-footer ul li a:hover{
    color: #38E8B0;
}

footer hr {
    border: 0;
    border-bottom: 1px solid #8795AA;
    margin-top: 30px;
    margin-bottom: 25px;
}
.policy {
    font-size: 13px;
    line-height: 27px;
    font-weight: 300;
    letter-spacing: 1px;
}
.policy a {
    font-size: 13px;
    color: rgb(var(--color-white));
    font-weight: 300;
    margin-inline-end: 8px;
}
.policy a:hover{
    color: rgb(var(--color-primary));
}


@media(max-width:480px){
    .main-footer{
    padding: 50px 0px !important;
}
}

/*--------------------------------------------------------------
# accordion
--------------------------------------------------------------*/

.accordion li {
    background: #FFFFFF;
    padding: 0px 20px;
    border: 1px solid #00112C;
    border-radius: 8px;
    transition: var(--transition);
}


.accordion li a {
    font-size: 16px;
    font-weight: 500;
    color: #00112C;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    justify-content: space-between;
}
.accordion li+li{
    margin-top: 15px;
}

.accordion li a.active {
    color: var(--color-secondary);
}

.accordion li a::after {
    content: '\F286';
    min-width: 30px;
    height: 30px;
    display: flex;
    font-family: bootstrap-icons;
    background: rgb(var(--color-secondary));
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin-inline-start: auto;
    border-radius: 8px;
}
.accordion li.active a::after{
  content: '\F282';
  width: 30px;
  height: 30px;
  font-family: bootstrap-icons;
  transition: all .4s;
}

.accordion li p {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #00112C;
    font-weight: 400;
}


@media(max-width:480px){
    .accordion li a {
        font-size: 18px;
    }
}
/* --------------------------------------------------------------
    Scroll Top
-------------------------------------------------------------- */

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    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, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}


.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    background: rgb(var(--color-primary));
}

.scroll-top:hover {
    background: rgb(var(--color-primary-dark));
    color: #fff;
}


/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */

.plan-style-one {
    background-color: #f2f2f2;
    padding: 32px 24px;
    border-radius: 8px;
    transition: all 0.4s;
    margin-top: 7px;
    height: 100%;
}

.plan-style-one .title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #00112c;
    transition: all 0.4s;
}

.plan-style-one .price {
    font-size: 40px;
    line-height: 56px;
    font-weight: 700;
    color: #00112c;
    margin: 20px 0px;
    transition: all 0.4s;
}
.plan-style-one .price span {
    font-size: 17px;
    line-height: 16px;
    font-weight: 500;
    color: #4e4f51;
}

.plan-style-one p.content {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #4e4f51;
    transition: all 0.4s;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.plan-style-one h4 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #00112c;
    padding-top: 20px;
    transition: all 0.4s;
}

.list.check li{
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
        color: #00112c;
        padding-top: 15px;
        display: flex;
        align-items: center;
        transition: all 0.4s;
}
.list.check li::before{
    content: "\F633";
    padding: 2px;
    font-family: bootstrap-icons;
    border-radius: 50%;
    line-height: 16px;
    font-size: 16px;
    color: rgb(var(--color-white));
    background-color: rgb(var(--color-primary));
    margin-inline-end: 8px;
}

.feature-list{
    display: flex;
    flex-wrap: wrap;
}

.feature-list li{
    width: 45%;
}

@media(max-width:767px){
    .feature-list li{
    width: 100%;
}
}
.plan-btn1 {
    display: inline-block;
    background-color: rgb(var(--color-primary));
    border-radius: 7px;
    padding: 14px 20px;
    color: #00112c;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s;
    border: none;
    line-height: 13px;
}

.plan-btn1 {
    width: 100% !important;
    bottom: 22px;
    justify-content: center;
    display: flex;
}

.button.up {
    margin-top: 30px;
    transition: all .4s;
    padding: 0px 20px;
}
.button.up:hover{
    transform: translateY(-4px);
  transition: all 0.4s;
}

.plan-style-one:hover {
    background-color: rgb(var(--color-primary-dark));
    transition: all .4s;
}

.plan-style-one:hover .title{
    color: rgb(var(--color-white))!important;
}

.plan-style-one:hover .title ,.plan-style-one:hover .price ,.plan-style-one:hover span ,.plan-style-one:hover p.content ,.plan-style-one:hover h4 , .plan-style-one:hover li {
    color: #fff!important;
}

.plan-style-one:hover .list.check li::before{
        color: rgb(var(--color-primary-dark));
        background-color: rgb(255, 255, 255);
}
.plan-style-one:hover .plan-btn1{
        background-color: #fff;
        color: #00112c;
        display: flex;
}

.plan-style-one:hover .plan-btn1 i{
    color: #00112c;
}

.plan-style-one.active{
    background:rgb(var(--color-primary-dark));
}

.plan-style-one.active .title ,.plan-style-one.active .price ,.plan-style-one.active span ,.plan-style-one.active p.content ,.plan-style-one.active h4 , .plan-style-one.active li {
    color: #fff!important;
}

.plan-style-one.active .list.check li::before{
        color: rgb(var(--color-primary-dark));
        background-color: rgb(255, 255, 255);
}
.plan-style-one.active .plan-btn1{
        background-color: #fff;
        color: #00112c;
        display: flex;
}

.plan-style-one.active .plan-btn1 i{
    color: #00112c;
}






/* --------------------------------------------------------------
    Top Bar
-------------------------------------------------------------- */


.topbar {
    padding: 12px 0;
    background: #f9f9f9;
}

.topbar .top-bar-support {
    display: flex;
}

.topbar .top-bar-support li+li {
    margin-inline-start: 15px;
}

.topbar .top-bar-support li a {
    display: flex;
    color: #535353;
    font-size: 15px;
    width: fit-content;
    align-items: center;
    line-height: 1;
}

.topbar .top-bar-support li a span {
    padding-inline-start: 10px;
}

.top-bar-dropdown button {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    background: none;
    outline: none;
    border: none;
    line-height: 1;
}

.top-bar-dropdown button i {
    margin-inline-end: 0px;
}


.top-bar-dropdown button::after {
    content: "\F282";
    font-family: 'bootstrap-icons';
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    margin-inline-start: 5px;
    vertical-align: middle;
}

.top-bar-dropdown button.show::after, .top-bar-dropdown.show button::after {
    transform: rotate(-180deg);
    color: rgb(var(--color-secondary));
}


.top-bar-dropdowns .top-bar-dropdown+.top-bar-dropdown {
    margin-inline-start: 5px;
}

/* .top-bar-dropdown.language-dropdown-menu .dropdown-menu {
    max-height: 400px;
    overflow: auto;
}

.top-bar-dropdown.nofication-dropdown-menu .dropdown-menu {
    min-width: 300px;
} */


.dropdown-menu {
	border: none;
	border-radius: 10px;
	padding: 10px 15px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
	background: rgb(255, 255, 255);
	margin-top: 5px;
	width: 220px;
}

.dropdown-menu li+li {
    border-top: 0px solid #cac7c7;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #828282;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
	color: #002143;
	border-radius: 5px;
}

.top-bar-dropdown ul.dropdown-menu li a:focus, .top-bar-dropdown ul.dropdown-menu li a:hover {
    background: unset;
    color: rgb(var(--color-secondary)) !important;
}

.top-bar-dropdown.language-dropdown-menu ul.dropdown-menu {
    max-width: 350px;
    min-width: 350px;
    left: unset !important;
    right: 0 !important;
    transform: translate(0, 25px) !important;
    padding: 15px;
    background-color: rgb(255, 255, 255);
}
.top-bar-dropdown.language-dropdown-menu ul.dropdown-menu li {
    display: inline-block;
    width: fit-content;
    border: unset;
}

.top-bar-dropdown.language-dropdown-menu ul.dropdown-menu li a {
    display: block;
    width: fit-content;
    min-width: 100px;
    padding: 9px 7px;
    font-size: 13px;
    font-family: var(--font-family-monospace);
    font-weight: 400;
}

.top-bar-dropdown.language-dropdown-menu ul.dropdown-menu li a:hover {
    color: #fff;
    background: unset;
}

.top-bar-dropdown.nofication-dropdown-menu .dropdown-menu{
    min-width: 300px;
    transform: translate3d(0px, 22px, 0px) !important;
  }

  .top-bar-dropdown.nofication-dropdown-menu .dropdown-menu li + li{
    border-top: 2px dashed #eee7e7;
  }

  .top-bar-dropdown.nofication-dropdown-menu .dropdown-menu li a{
    color: #777676;
  font-size: 13px;
  font-weight: 400;
  padding: 15px 10px;
  line-height: 1.5;
  font-family: var(--font-family-monospace);
  }

  .top-bar-dropdown.account-dropdown-top-bar .dropdown-menu{
    padding: 10px;
    min-width: 190px;
  }
  
  .top-bar-dropdown.currency-dropdown-top-bar .dropdown-menu{
    padding: 5px;
    min-width: 100px;
  }

  .top-bar-dropdown.account-dropdown-top-bar .dropdown-menu li + li{
    border: unset;
  }

  .top-bar-dropdown.currency-dropdown-top-bar .dropdown-menu li + li{
    border: unset;
  }

 

.top-bar-dropdown button.show, .top-bar-dropdown.show button {
    color: rgb(var(--color-secondary))!important;
}

.top-bar .dropdown-menu li a {
    color: #555353;
    font-size: 13px;
    font-weight: 600;
} 


.top-bar-dropdown.account-dropdown-top-bar .dropdown-menu li a{
    color: #666;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-family-monospace);
  border-radius: 5px;
}

.top-bar-dropdown.account-dropdown-top-bar .dropdown-menu li a:hover{
    background: #eee;
  color: #404040 !important;
}

.top-bar-dropdown.currency-dropdown-top-bar .dropdown-menu li a{
    color: #666;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family-monospace);
    border-radius: 5px;
    padding: 8px 10px;
}

.top-bar-dropdown.currency-dropdown-top-bar .dropdown-menu li a:hover{
    background: #eee;
  color: #404040 !important;
}

.tabs-design-one .tabs {
    display: block;
    width: 100%;
}

.tabs-design-one .tabs .items {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    /* border-left: 1px solid rgb(var(--color-secondary)); */
}
.tabs-design-one .tabs .items .item {
    display: block;
    border: unset;
    background: transparent;
    padding: 10px 30px 10px 10px;
    color: #b5b5b5;
    font-weight: 500;
    border-left: 5px solid transparent;
    width: 100%;
    text-align: start;
    cursor: pointer;
    border: 1px solid #35eebe;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.tabs-design-one .tabs .items .item:last-child {
    margin-bottom: 0px;
}

.tabs-design-one .tabs .items .item.active {
    border: 1px solid;
    border-left: 5px solid;
    color: #00112c;
    width: 90%;
    border-color: rgb(var(--color-secondary));
    text-align: start;
    background: #35eebe;
    border-radius: 10px;
    border-color: #35eebe;
}


.tabs-design-one .contents {
    display: block;
}

.tabs-design-one .contents .item {
    display: none;
}

.tabs-design-one .contents .item.active {
    display: block;
}

.footer-social-link .btn {
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    margin-top: 15px;
    padding: 10px 15px;
}