/* 300 */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto-Light"),
        url("../fonts/Roboto-Light.ttf") format("truetype");
}

/* 300 */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto-Regular"),
        url("../fonts/Roboto-Regular.ttf") format("truetype");
}

/* 500 */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto-Medium"),
        url("../fonts/Roboto-Medium.ttf") format("truetype");
}


/* 700 */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto-Bold"),
        url("../fonts/Roboto-Bold.ttf") format("truetype");
}



/* 900 */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto-Black"),
        url("../fonts/Roboto-Black.ttf") format("truetype");
}


: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: "Roboto", var(--fallback-fonts);
}


:root {
    --color-primary: #f57200;
    --color-primary-dark: #cc5f00;
    --color-secondary: #007bff;
    --color-secondary-dark: #0063cc;
    --color-white: #fff;
    --color-black: #000;
    --color-default: #333333;
    --font-remixicon: remixicon;
    --font-bootstrap-icons: bootstrap-icons;
    --transition: all .4s;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-primary) ;
}

::selection {
    background: var(--color-primary) ;
}

::selection {
    color: #fff;
    text-shadow: none;
}

/*--------------------------------------------------------------
    # General
--------------------------------------------------------------*/
body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-default);
}

body{
    overflow-x: hidden;
}

p {
    color: var(--color-default);
}

.fw-500 {
    font-weight: 500;
    font-family: var(--font-primary);
}

.fw-600 {
    font-weight: 600;
    font-family: var(--font-primary);
}

/* container width fix on large screen */

@media (min-width: 1300px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1275px !important;
    }
}

a {
    color: 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: 400;
}

img {
    max-width: 100%!important;
    height: auto;
}

img.max-h-45{
    max-height: 45px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}


.uppercase {
    text-transform: uppercase;
}

button,
input,
textarea {
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

main section {
    padding: 60px 0px;
}

main .section-gap p {
    font-weight: 400;
}
.bg1 {
    background: #e4e4e4;
}

.bg-primary{
    background: var(--color-primary)!important;
}

.bg-secondary{
    background: var(--color-secondary-dark)!important;
}

/* --------------------------------------------------------------
    Popup header
-------------------------------------------------------------- */
.popup-banner {
    display: none; /* Hidden by default */
    width: 100%;
    background-color: orange;
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.popup-opener {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background-color: orange;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
}



/* Top Bar */

.top-bar {
    display: block;
    background: #e1e1e1;
}

.topbar-left a{
    color: var(--color-default);
    font-size: 15px;
}

.top-bar .right-topbar {
    justify-content: end;
    display: flex;
    gap: 20px;
}
.top-bar .top-bar-inner {
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 5px 10px;
}

.top-bar .top-bar-support {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-default);
    display: block;
    line-height: 2;
}

.topbar-media-link ul {
    list-style: none;
}

.topbar-media-link ul li a i {
    font-size: 18px !important;
    color: var(--color-default) !important;
}

.top-bar-dropdown button {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-default);
    letter-spacing: 0.5px;
    background: none;
    outline: none;
    border: none;
}

.top-bar-dropdown button::after {
    content: "\F282";
    font-family: bootstrap-icons;
    color: var(--color-default);
    font-size: 11px;
    transition: var(--transition);
    display: inline-block;
    margin-inline-start: 5px;
}

.top-bar-dropdown button.show:after {
    transform: rotate(-180deg);
    color: rgb(var(--color-primary));
}

.top-bar-dropdown button.show {
    color: rgb(var(--color-primary));
}

.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;
    transform: translate3d(0px, 26px, 0px) !important;
}

.top-bar-dropdown.currency-dropdown-menu .dropdown-menu{
    transform: translate3d(0px, 26px, 0px) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    min-width: 180px;
}

.dropdown-menu li a {
    display: block;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #828282;
    transition: all 0.3s;
    border-radius: 5px;
}

.dropdown-menu li a:hover {
    color: #000000;
    background: #eeeeee;
    border-radius: 5px;
}
/* --------------------------------------------------------------
    Header
-------------------------------------------------------------- */
.main-header{
transition: top 0.3s;
}

.main-header > .navbar{

}

.main-header > .navbar > .container-lg{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.main-header > .navbar > .container-lg > .nav-brand{
    display: inline-block;
    margin-inline-end: 8px;
}

.main-header > .navbar > .container-lg > .nav-brand img{
    max-height: 40px;
}


.navbar-right{
    display: flex;
    align-items: center;
    gap: 0 20px;

}

.navbar-right{
    position: relative;
    z-index: 22;
}
.navbar-right li a > i {
    font-size: 25px;
    line-height: 0;
}
.navbar-right li.inner_dropdown ul.login_dropdown{
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.login_dropdown {
    background: var(--color-white);
    border-radius: 4px;
    width: 180px;
    padding: 5px 0px;
    position: absolute;
    right: -15px;
    top: 44px;
}
.login_dropdown li{
    padding: 5px 15px;
}
.login_dropdown li:hover{
    background: var(--color-primary);
}
.login_dropdown li:hover a{
    color: var(--color-white);
}
.navbar-right >li a {
    padding: 20px 0px;
    color: var(--color-default);
}

.inner_dropdown .login_dropdown a{
    font-size: 16px;
    font-weight: 500;
}

.navbar-right li.inner_dropdown:hover .login_dropdown {
    opacity: 1;
    visibility: visible;
}

@media (min-width:1200px) {
    .hamberger-button {
        display: none;
    }

    .popup-mobile-menu-header {
        display: none;
    }

    .popup-mobile-menu {
        width: 100%;
    }

    .popup-mobile-menu .mainmenu {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
    }

    .popup-mobile-menu .mainmenu li {
        position: relative;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu {
        position: static;
    }


    .popup-mobile-menu .mainmenu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 500;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
    }
    .popup-mobile-menu .mainmenu a .dropdown-indicator {
        font-size: 12px;
        line-height: 0;
        margin-inline-start: 5px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 0px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu:before {
        content: "";
        position: absolute;
        inset-block-start: -7px;
        inset-inline-start: 12%;
        width: 13px;
        height: 13px;
        border: 1px solid transparent;
        transform: rotate(45deg);
        background-color: #fff;
        z-index: 901;
        display: block;
        transition-duration: 0.25s;
        border-bottom: 0;
        border-right: 0;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu li {
        min-width: 250px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu li+li {
        border-top: 2px dotted #e3e2e2;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu a {
        padding: 10px 20px 10px 0px;
        font-size: 17px;
        text-transform: none;
        font-weight: 500;
        color: rgb(64, 64, 64);
        transition: all 0.3s;
        display: block;
    }


    .popup-mobile-menu .mainmenu .has-droupdown.megamenu>ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        min-width: unset;
        align-items: start;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        box-shadow: 4px 7px 13px 0 rgba(50, 50, 50, .2);
        padding: 20px 54px;
        background: var(--color-white);
        z-index: 99;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu:hover>ul {
        opacity: 1;
        visibility: visible;
    }


    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .submenu:before {
        display: none;
        content: unset;
    }



    .popup-mobile-menu .mainmenu .has-droupdown.megamenu>ul>li {
        flex: 0 25%;
        min-width: unset;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu>ul>li.three {
        flex: 0 33.33%;
        min-width: unset;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu>ul>li>ul {
        visibility: hidden;
        opacity: 0;
        position: unset;
        box-shadow: unset;
        padding: 0;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu:hover>ul>li>ul {
        visibility: visible;
        opacity: 1;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu>ul>li>ul>li {
        min-width: unset;
        border: unset;
    }

    .popup-mobile-menu .mainmenu .has-droupdown:hover .submenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu ul li a{
        display: block;
        padding: 10px 15px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu ul li a:hover{
        color: var(--color-primary);
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .heading-content {
        display: block !important;
        font-size: 13px;
        color: #a4a4a4;
        font-weight: 400;
        white-space: break-spaces;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .nav-bar-dropdown-img {
        display: block;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .nav-bar-dropdown-img img {
        display: block;
        max-height: 200px;
        margin: auto;
    }

}

@media (min-width:1380px) {
    .header>.container-sm {
        position: relative;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .rn-megamenu {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: 0;
        padding: 20px 20px;
    }
}

/* mobile navigation */

@media (max-width:1199px) {
    .hamberger-button {
        height: 40px;
        line-height: 40px;
        width: 40px;
        text-align: center;
        /* box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06); */
        border-radius: 5px;
        outline: none;
        color: var(--color-primary);
        border: 0 none;
        padding: 0;
        background: #e3fde3;
        display: block;
        font-size: 16px;
    }

    .heading-content {
        display: none;
    }

    .popup-mobile-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;
    }

    .popup-mobile-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .popup-mobile-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;
    }

    .popup-mobile-menu.active .inner {
        opacity: 1;
        left: 0;
        overflow-y: auto;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header {
        display: flex;
        border-bottom: 1px solid #eeeeee;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header .logo img {
        max-height: 30px;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header .close-menu .close-button {
        background: var(--color-white);
        border: 0 none;
        color: var(--color-default);
        width: 40px;
        height: 40px;
        font-size: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    }

    .popup-mobile-menu .inner .mainmenu .has-droupdown .submenu,
    .popup-mobile-menu .inner .mainmenu .has-droupdown .rn-megamenu {
        display: none;
        padding-inline-start: 10px;
    }

    .popup-mobile-menu .mainmenu {
        list-style: none;
        margin: 0;
        padding: 15px 20px;
    }

    .popup-mobile-menu .mainmenu li {
        margin: 0;
    }

    .popup-mobile-menu .mainmenu li+li {
        border-top: 1px solid #f0f0f0;
    }

    .popup-mobile-menu .mainmenu .has-droupdown>a {
        position: relative;
    }

    .popup-mobile-menu .mainmenu li a {
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 500;
        color: #6F6B80;
        align-items: center;
    }

    .popup-mobile-menu .mainmenu li a:hover,
    .popup-mobile-menu .mainmenu li a.open {
        color: var(--color-primary);
    }

    .popup-mobile-menu .mainmenu li a .dropdown-indicator {
        transition: all 0.3s;
    }

    .popup-mobile-menu .mainmenu li a.open .dropdown-indicator {
        transform: rotate(180deg);
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu {
        padding: 0;
        max-width: 100%;
        list-style: none;
        padding-inline-start: 14px;
        display: none;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .rn-megamenu a img {
        max-height: 40px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown.megamenu .nav-bar-dropdown-img {
        display: none;
    }
}


/* --------------------------------------------------------------
    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:hover {
    background: var(--color-primary);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 58px;
}

.fit-content{
    width: fit-content;
}

.unmetered{
    color: var(--color-secondary);
}
/* button css */

.btn-search{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    fill: #fff;
    cursor: pointer;
}

.btn-search:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transition: var(--transition);
    color: var(--color-white);
}
.btn1 {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    fill: #fff;
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 25px;
    width: fit-content;
    border: 1px solid var(--color-primary);
    display: block;
}

.btn1:hover{
    background-color: var(--color-primary-dark);;
    border-color: var(--color-primary-dark);
    color: #fff;
    fill: #fff;
    cursor: pointer; 
    border-radius: 4px; 
    padding: 10px 25px;
    width: fit-content;
    transition: var(--transition);
}

.plan-btn{
    margin: 20px 0px;
}

.plan-btn{
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0px;
    background: var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.plan-btn:hover{
    background: var(--color-primary-dark);
    transition: var(--transition);
    color: var(--color-white);
}

/* hero banner */

.banner{
    padding: 40px 0px;
}


.hero.banner{
    background: center top url(../images/hero_banner.jpg) no-repeat;
    background-size: cover;
}

.banner h1 {
    max-width: 600px;
    font-weight: 700;
    color: var(--color-white);
}

.banner.upside {
    position: relative;
    padding-bottom: 340px;
}

.hero.banner h1 {
    text-align: center;
    max-width: 600px;
    font-weight: 700;
    margin: 0 auto .75em;
    color: var(--color-white);
}

.top-heading {
    color: var(--color-default);
    font-size: 16px;
    font-weight: 500;
}

.banner.upside h1 {
    max-width: 600px;
    font-weight: 700;
    color: var(--color-black);
}


.banner-ftr {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 10px;
    position: relative;
}

.br-rgt {
    border-right: 1px solid var(--color-default);
    padding-inline-end: 40px;
}

.ftr-one h4 {
    font-size: 21px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0;
}

.ftr-one label {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-default);
}

.price_sec {
    padding: 23px;
    background: var(--color-primary-dark);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 38%;
    width: 170px;
    height: 170px;
    line-height: 45px;
}
.price_sec span{
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
}
.price_sec h4{
    font-size: 30px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}
.price_sec label{
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.hero-form {
    width: 70%;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
}

.hero-form input{
    width: 80%;
    padding: 16px;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid #fff;
}
input:focus{
  box-shadow: unset;
}

.hero-form input:focus{
  border-color: var(--color-white)!important;
  outline: 0;
  box-shadow: unset;
}
.hero-form button{
    width: 20%;
    padding: 16px;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid var(--color-primary);;
}

.spl-ofr{
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 35px;
}

.spl-ofr a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
}

.spl-ofr a:hover {
    text-decoration: underline;
    transition: var(--transition);
}



 .sldr{
    height: 114px;
    padding: 20px;
}
 .sldr.card1 {
    border-color: var(--color-primary);
    background: url(../images/slide_bg.png) -50px 20px no-repeat #fce9da;
    border-radius: 3px;
}

.sldr img {
    max-height: 72px;
    padding-right: 13px;
}

.sldr.card1{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sldr.card1 .btn-search{
    font-size: 13px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 4px;
}

.sldr.card1 .discount-price{
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.sldr.card1 .original-price {
    color: #b7b5b6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: line-through;
    display: block;
}


.sldr.card2 {
    /*height: 114px;
    width: 250px;*/
    background: #fff;
    border: 1px solid #d9e0e8;
    padding: 20px;
    display: table;
    line-height: 1.15;
    border-radius: 3px;
}

.sldr.card2{
    display: flex;
    align-items: center;
}

.sldr.card2 .br-left {
    border-left: 1px solid #e3e3e3;
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    padding-inline-start: 12px;
}

.sldr.card2 .discount-price{
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.sldr.card2 .original-price {
    color: #b7b5b6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: line-through;
    display: block;
}


@media(max-width:767px){
    .hero-form {
    width: 85%;
}
    .hero-form input {
    width: 75%;
}
    .hero-form button {
    width: 25%;
}
}



@media(max-width:480px){
    .hero-form {
    width: 90%;
}
.hero-form input {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.hero-form button {
    width: 100%;
    border-radius: 5px;
}
}
.plan-style.one {
    background-color: #fff;
    border-radius: 10px;
    padding: 0px 35px 0;
    overflow: hidden;
    border: 1px solid #98aec0;
    transition: all ease-in-out 0.5s;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    position: relative;
    z-index: 1;
    height: 100%;
}
.plan-style > svg{
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  fill: #f571002b;
  transition:var(--transition);
}

.plan-style.plan_3 > svg{
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  fill: #f571002b;
  transition:var(--transition);
  top: -60px!important;
}

.plan-style.one h4{
    position: relative;
    font-size: 25px;
    font-weight: 700;
    padding: 20px 0px;
}
.plan-style.one h4::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 3px;
    background-color: var(--color-primary-dark);
    left: 0;
    bottom: 0px;
}

.plan-style.one ul li{
    font-size: 14px;
    line-height: 40px;
    color: #4f4b6c;
    font-weight: 400;
    border-bottom: 1px solid #cbd6df;
}
.plan-style.one ul li:last-child{
    border-bottom: unset;
}

.plan-style.one .plan-pricing sup{
    font-size: 15px;
    font-weight: 600;
    vertical-align: super;
}
.plan-style.one .plan-pricing span {
    font-size: 45px;
    font-weight: 700;
}

.plan-style.one .plan-pricing sub{
    font-size: 15px;
    font-weight: 600;
}

.plan-style.one .oldprice span{
    font-size: 20px;
    color: #c00;
    text-decoration: line-through;
}

.plan-style.one .oldprice sup ,.plan-style.one .oldprice sub{
    font-size: 12px;
    color: #c00;
    vertical-align: super;
}

.plan-style.one select {
    font-size: 16px;
    color: currentColor;
    outline: 0;
    background: #f0f3f4;
    border: none;
    border-radius: 4px;
    padding: 8px;
}


.plan-style.one ul{
    line-height: 32px;
    text-align: start;
}

.plan-style.one ul li {
    padding-inline-start: 20px;
    position: relative;
}

.plan-style.one ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #212121;
    position: absolute;
    transform: rotate(0deg);
    bottom: 0;
    top: 16px;
    left: 0px;
    /* margin: auto; */
    border-radius: 50%;
}

.plan_price_box {
    padding: 20px 40px 0px;
    margin: 0 -40px 0px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    color: var(--color-black);
}

.plan-style.one:hover{
    transform: translateY(-15px);
}

.plan_price_box small {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.inner_plan_price_box {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color: var(--color-black);
}
.plan-style.one .btn1{
    transition: var(--transition);
}
.plan-style.one:hover .plan_price_box .btn1{
    background: var(--color-white);
    color: var(--color-primary);
}
.plantab{
    margin-bottom: 40px;
}
.plantab .tabs{
    display: flex;
    align-items: center;
}

.plantab .tabs .tabbtn {
    padding: 8px 20px;
    color: var(--color-default);
    border-radius: 0;
    border: 1px solid var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.5s;
    display: inherit;
    align-items: center;
}

.plantab .tabs .tabbtn:first-child{
    border-radius: 4px 0px 0px 4px;
}

.plantab .tabs .tabbtn:last-child{
    border-radius: 0px 4px 4px 0px;
}

.plantab .tabs .tabbtn img{
    margin-inline-end: 10px;
}

.plantab .tabs .tabbtn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}


.plantab .tab-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
    display: block;
}
.plantab p {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
    margin-top: 12px;
    display: block;
}

.banner-up {
    position: relative;
    margin-top: -360px;
}
.banner-up.two {
    position: relative;
    margin-top: -248px;
}

.banner-img{
    background: url(../images/banner_img2.png) no-repeat;
    background-size: cover;
}
.banner-img-3{
    background: url(../images/banner_img3.png) no-repeat;
    background-size: cover;
}

.banner-img-4{
    background: url(../images/banner_img4.png) no-repeat;
    background-size: cover;
}
.banner-img-5{
    background: url(../images/banner_img5.png) no-repeat;
    background-size: cover;
}
.banner-img-6{
    background: url(../images/banner_img6.png) no-repeat;
    background-size: cover;
}
.banner-img-7{
    background: url(../images/banner_img7.png) no-repeat;
    background-size: cover;
}

.banner-img-8{
    background: url(../images/banner_img8.png) no-repeat;
    background-size: cover;
}

.banner-img-9{
    background: url(../images/banner_img9.png) no-repeat;
    background-size: cover;
}
.banner-img-10{
    background: url(../images/banner_img10.png) no-repeat;
    background-size: cover;
}
.banner-img-11{
    background: url(../images/banner_img11.png) no-repeat;
    background-size: cover;
}
.banner-img-12{
    background: url(../images/banner_img12.png) no-repeat;
    background-size: cover;
}
.banner-img-13{
    background: url(../images/banner_img13.png) no-repeat;
    background-size: cover;
}
.banner-img-14{
    background: url(../images/banner_img14.png) no-repeat;
    background-size: cover;
}
.banner-img-15{
    background: url(../images/banner_img15.png) no-repeat;
    background-size: cover;
}
.banner-img-16{
    background: url(../images/banner_img16.png) no-repeat;
    background-size: cover;
}
.banner-img-17{
    background: url(../images/banner_img17.png) no-repeat;
    background-size: cover;
}

.banner-img-18{
    background: url(../images/banner_img18.png) no-repeat;
    background-size: cover;
}
.banner-img-19{
    background: url(../images/banner_img19.png) no-repeat;
    background-size: cover;
}

.sec-heading {
    margin-bottom: 32px;
}
.sec-heading h2 {
    font-size: 40px;
    font-weight: 500;
}

.sec-bold{
    font-weight: 600;
}
.feature-style-one {
    padding: 20px;
    border: 1px solid #a6a6a6;
    border-radius: 12px;
    position: relative;
}
.feature-style-one {
    position: relative;
    padding: 60px 20px 20px 20px;
    height: 100% ;
}

@media(max-width:991px){
    .feature-style-one {
   margin-top: 40px;
}
}

.feature-style-one .fs-one.img {
    position: absolute;
    top: -42px;
    left: calc(100% - 63%);
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 0 3px 6px #dad8d8;
    background: var(--color-white);
}
.feature-style-one h3 {
    font-size: 22px;
    padding: 8px;
    margin: 0 auto;
    font-weight: 500;
    color: #212121;
}
.feature-style-one p {
    font-size: 16px;
    color: #49495f;
}

.feature-style-two {
    display: flex;
    align-items: start;
    gap: 20px;
    height: 100%;
}

.feature-style-two .icons img{
    max-width: 50px!important;
}

.plan-style-six .icon img{
    max-width: 40px!important;
}

@media(max-width:480px){
   .feature-style-two{
    display: block;
    text-align: center;
} 

.feature-style-two .icons{
    margin-bottom: 15px;
}
}

.feature-style-two .content span {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    line-height: 0.6;
}
.feature-style-two .content p {
    font-size: 15px;
    color: #49495f;
}


.contact-support {
    background: #f572001f;
}


.feature-style-three{
    padding: 20px;
    background: var(--color-white);
    box-shadow: 0 .4rem .8rem 0 rgba(0,0,0,.1);
    height: 100%;
}

.feature-style-three h4{
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin: 20px 0 8px;
}

.feature-style-three p{
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  margin:0;
}

.sec-heading h4{
    font-size: 25px;
    font-weight: 500;
    color: var(--color-black);
}


.list-check li {
    display: flex;
    align-items: start;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin-inline-start: 0px;
    text-align: start;
}
.list-check li::before {
    content: "\F26E";
    font-family: bootstrap-icons;
    font-size: 25px;
    margin-inline-end: 10px;
    color: var(--color-primary);
    line-height: 30px;
}

.plan-icon img {
    width: 80px;
    height: 80px;
}

.plan-style.two {
    padding: 20px;
    border-radius: 4px;
    background: var(--color-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid var(--color-primary);
    height: 100%;
}
.price-section{
    text-align: center;
}

.plan-style.two h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 13px 0px;
}

.plan-style.two p{
    font-size: 14px;
    font-weight: 400;
}

.text {
    font-size: 15px;
    color: var(--color-default);
}

.price-section .plan2-price {
    font-size: 28px;
    font-weight: 600;
    display: block;
}


.feature-style-four {
    margin-block-end: 10px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    box-shadow: 0 3px 10px 0px rgba(245, 114, 0, 0.32);
    width: 100%;
    position: relative;
    background-color: var(--color-white);
    padding: 20px;
    height: 100%;
}
.feature-style-four img{
    width: 220px;
}

.feature-style-four h4 {
    margin: 18px 0px;
    color: var(--color-default);
}

.website-plan-bg {
    margin-top: 30px;
    height: 424px;
    box-sizing: border-box;
    border: 1px solid #ffb278;
    border-radius: 6px;
    background: no-repeat -42px top url(../images/homeban_sh_bg.png) #fcf0e7;
    padding: 42px 42px 42px 335px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




.website-plan-bg .btn1{
    padding: 20px 45px;
}
.website-plan ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.website-plan ul li {
    width: 50%;
    color: var(--color-default);
    line-height: 35px;
}

.website-plan .price h4{
    font-size: 48px;
    font-weight: 600;
}
.website-plan .price sup ,.website-plan .price sub{
    font-size: 25px;
    font-weight: 600;
}

.website-plan-text h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.plan-price{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.website-plan .plan-price .price ,.website-plan .plan-price .text-start{
    width: 50%!important;
}

@media(max-width:480px){
    .website-plan .plan-price .price ,.website-plan .plan-price .text-start{
    width: 100%!important;
}
.plan-price{
    display: block;
}

.website-plan .plan-price .text-start{
    margin-top: 20px;
}
}

@media(max-width:767px){
    .website-plan ul li {
    width: 100%;
}
.website-plan .plan-price .price, .website-plan .plan-price .text-start {
	width: 100% !important;
}
}
@media(max-width:991px){
    .website-plan-bg {
    margin-top: unset;
    height: unset;
    box-sizing: unset;
    border: 1px solid #ffb278;
    border-radius: 6px;
    background: unset;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
}

@media (min-width:767px) and (max-width:1275px) {
    .website-plan .price h4 {
	font-size: 27px;
	font-weight: 600;
}
}

.shopingcart .swiper-wrapper .swiper-slide img{
    transition: var(--transition);
}
.shopingcart .swiper-wrapper .swiper-slide:hover img{
    opacity: 0.6;
}

.bg3{
    background: #eee;
}
.feature-style-five {
    padding: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    background: var(--color-white);
    height: 100%;
}

.feature-style-five h4 {
    font-size: 20px;
    font-weight: 400;
    padding: 10px 25px;
    background-color: #333333b8;
    color: var(--color-white);
    width: fit-content;
    margin: 0px auto 30px;
    border-radius: 4px;
}


.plan-style-six{
    display: flex;
    align-items: start;
    gap: 20px;
}

.content h4{
    font-size: 20px;
    font-weight: 500;
}
.content p{
    font-size: 15px;
    font-weight: 500;
}

.feature-style-seven h4{
    font-size: 25px;
    font-weight: 500;
}

.feature-style-seven p:has(+ h4) {
  margin-bottom: 20px;
}

.feature-style-seven ul:has(+ h4) {
  margin-bottom: 20px;
}

 
/* ----------------------------------------------------------------
    domain search form
------------------------------------------------------------------- */

.domain_search_form input {
    padding: 15px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    outline: unset !important;
}
.domain_search_form button {
    padding: 18px;
    width: 40px;
    border: unset;
    position: absolute;
    right: 20px;
    top: 0;
    background: unset;
    font-size: 23px;
    line-height: 23px;
}
.domain_search_form .domain_name {
    padding: 11px;
    min-width: 100px;
    border: unset;
    position: absolute;
    right: 9%;
    background: unset;
    font-size: 26px;
    line-height: 0;
}
.domain_search_form.transfer{
    position: relative;
}
 
@media(max-width:480px){
    .banner-img-17 {
    padding-bottom: 100px;
}
    .domain_search_form input {
    padding: 15px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    margin-bottom: 10px;
}
.domain_search_form button {
    padding: 18px;
    width: 70px;
    border: unset;
    position: absolute;
    left: 45%;
    background: unset;
    font-size: 26px;
    line-height: 26px;
    top: 100%;
    background: var(--color-white);
    border-radius: 0px 4px 4px 0px;
}
.domain_search_form.transfer button {
    padding: 14px;
    width: 70px;
    border: unset;
    position: absolute;
    left: 78%;
    background: unset;
    font-size: 26px;
    line-height: 28px;
    top: 0;
    background: var(--color-white);
    border-radius: 0px 4px 4px 0px;
}

.domain_search_form .domain_name {
    padding: 16px;
    width: 135px;
    border: unset;
    position: absolute;
    left: 12px;
    background: unset;
    font-size: 26px;
    line-height: 26px;
    top: 100%;
    background: var(--color-white);
     border-radius: 4px 0px 0px 4px;
}
}

/* ====================domain table css start ====================== */
.domain-tld-table table{
  background-color: #fff;
  border-radius: 20px 20px 20px 20px;
  border-style: none;
  width: 100%;
}
@media (max-width:767px) {
  .domain-tld-table table{
    margin-bottom: 15px;
  } 
}
.domain-tld-table table{
    border: 1px solid var(--color-primary);
}

.domain-tld-table table thead tr {
    border-bottom: none;
    background-color: var(--color-primary);
}
.domain-tld-table table thead tr th {
    padding: 23px 58px 23px 58px;
    text-align: start;
    background-color: var(--color-one-dark);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width:767px) {
  .domain-tld-table table thead tr th{
    padding: 20px;
    white-space: nowrap;
  }
}

.domain-tld-table table thead tr th:first-child{
  border-top-left-radius: 10px;
}
.domain-tld-table table thead tr th:last-child{
  border-top-right-radius: 10px;
}

.domain-tld-table table tbody tr {
    border-bottom: 1px solid var(--color-primary);
    background: #f9f9f9;
}

.domain-tld-table table tbody tr td {
    color: #373737;
    padding: 17px 76px 17px 58px;
    text-align: start;
    font-weight: 300;
    font-size: 17px;
}


@media (max-width:767px) {
  .domain-tld-table table tbody tr td{
    padding: 20px;
    white-space: nowrap;
  }
}

.domain-tld-table table tbody tr td:first-child {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

/* ====================domain table css end ====================== */
/* ----------------------------------------------------------------
    login form
------------------------------------------------------------------- */

.login-form{
    padding: 50px;
    border-radius: 4px;
}

.login-form .person {
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-default);
    border-radius: 50%;
    padding: 20px;
    position: relative;
    margin: 0px auto 50px;
}

.username input {
  padding: 10px;
}

.Password input {
  padding: 10px;
}
.login-form input::placeholder{
    font-size: 15px;
}

.login-form h2 {
    font-size: 40px;
    font-weight: 500;
}

.login-form span {
    font-size: 18px;
    font-weight: 500;
}
.register-box{
    padding: 50px;
    border-radius: 4px;
    background: var(--color-white);
}

@media(max-width:480px){
    .register-box{
    padding: 10px;
}
}

.register-form input {
    margin-bottom: 20px;
    border: 1px solid var(--color-primary-dark);
    padding: 10px;
}


  input:focus {
    border-color: var(--color-default)!important;
    box-shadow: unset!important;
}
.sidebar .list-group-item .badge {
    right: 0;
    top: 10px;
}
.login-form {
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 40px;
    margin-top: 50px;
}

.login-img h2{
    margin-top: 20px;
    color: var(--color-black);
    font-size: 25px;
    font-weight: 500;
}

.login-img a{
    font-size: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.form-step {
    display: none;
}

.form-step-active {
    display: block;
}

.login_sec{
    padding: 20px 40px;
}

@media(max-width:480px){
    .login_sec{
    padding: 10px;
}

.login_sec{
    padding-top: 40px;
}
}

/* ----------------------------------------------------------------
    Contact form
------------------------------------------------------------------- */

  .contact-support-form{
    border: 1px solid #ddd;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 0 5px #ddd;
    margin: 0px auto;
    padding: 30px;
  }

  .contact-support-form form .form-label{
    font: 600 15px/26px var(--font-primary);
  color: #1b1b1b;
  display: block;
  margin-bottom: 1px;
  text-align: start;
  }

  .contact-support-form form .form-input{
    background-color: #fff;
  box-shadow: none;
  outline: unset !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 11px 0 11px 10px;
  width: 100%;
  margin-bottom: 23px;
  font: normal 14px var(--font-primary);
  color: #626262;
  transition: border linear 0.3s, box-shadow linear 0.3s;
  }

  .contact-support-form form textarea{
    background: #fff;
  box-shadow: none;
  outline: unset !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 5px 0 5px 10px;
  width: 100%;
  margin-bottom: 17px;
  font: normal 14px var(--font-primary);
  color: #626262;
  transition: border linear 0.3s, box-shadow linear 0.3s;
  }

  .contact-support-form form .label-checkbox-field{
    display: inline-block;
  margin: 10px 0;
  width: 100%;
  }

  .contact-support-form form .label-checkbox-field input[type="checkbox"] {
    margin: 5px 3px 0 0;
    vertical-align: top;
  }
  .contact-support-form form .label-checkbox-field label{
    font: 400 15px/26px var(--font-primary);
  color: #1b1b1b;
  display: inline-block;
  width: 90%;
  vertical-align: top;
  }
  .contact-support-form form .label-checkbox-field label a{
    color: rgb(var(--color-primary));
  }

  .contact-support-form  .support-info{
    margin: 24px 0 0 0;
  }

  .contact-support-form  .support-info .item{
    border: 1px solid #e4e4e4;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0 20px 17px 20px;
  display: inline-block;
  width: 100%;
  }

  .contact-support-form  .support-info .item + .item{
    margin-top: 30px;
  }

  .contact-support-form  .support-info .item h5{
    font: 600 16px/26px var(--font-primary);
  color: #1b1b1b;
  border-bottom: 1px solid #e4e4e4;
  margin: 0 0 17px 0;
  padding: 10px 0 5px 0;
  }

  .contact-support-form .support-info .item p {
    font: 400 15px var(--font-primary);
    color: #4f4f4f;
    text-align: start;
    display: inline-block;
    vertical-align: top;
    width: 188px;
    margin-bottom: 0;
}

@media (max-width:767px) {
    .contact-support-form .support-info .item p{
        font-size: 14px;
    margin: 0;
    padding: 0 0 13px 0;
    }

    .contact-support-form .support-info .item p:last-child{
        padding-bottom: 0;
    }
}

  .contact-support-form  .support-info .item p span {
    display: block;
    padding-bottom: 5px;
  }

  .contact-support-form  .support-info .item.address p{
    width: 100%;
    line-height: 1.5;
  }

  .contact-support-form  .support-info .item.address p b{
    font-weight: 500;
  }



/* ----------------------------------------------------------------
    Legal Page
------------------------------------------------------------------- */
.legal h2{
    font-size: 30px;
    font-weight: 500;
}

.legal h3{
    font-size: 23px;
    font-weight: 500;
}

.legal p{
    color: #686868;
}

.legal ul{
    list-style-type: disc;
    margin-bottom: 15px;
}

.legal ul li{
    list-style-type: disc;
    list-style-position: inside;
    color: #686868;
}



/* ====================bussiness plan css start ====================== */
.horizontal-plans {
    border: 1px solid var(--color-primary-dark);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.08);
    padding: 42px 42px;
    background: var(--color-white);
}

.horizontal-plans .form-label {
    color: var(--color-one-dark);
    font-weight: 600;
}

.horizontal-plans .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
}

.horizontal-plans .btn1 {
    margin-top: 31px !important;
}



/* ----------------------------------------------------------------
    Vps Server Plan
------------------------------------------------------------------- */
.vps-server-plans .vps-plan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary-dark);
    border-radius: 10px 10px 0px 0px;
    height: 60px;
    padding: 0px 20px;
}

.vps-server-plans .vps-plan-head li {
    text-align: start;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 110px;
}

.vps-server-plans .vps-plan-head li.small-width {
    max-width: 80px;
}

.vps-server-plans .vps-plan-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    background: #fff;
    height: 60px;
    padding: 0px 20px;
}

.vps-server-plans .vps-plan-detail+.vps-plan-detail {
    margin-top: 0px;
}

.vps-server-plans .vps-plan-detail li {
    width: 110px;
    text-align: start;
    font-size: 15px;
    font-weight: 300;
}

.vps-server-plans .vps-plan-detail li.small-width {
    max-width: 80px;
}

.vps-server-plans .vps-plan-detail li.name {
    font-weight: 600;
    font-size: 16px;
}

.vps-server-plans .vps-plan-detail li.disk {
    display: flex;
    align-items: center;
}

.vps-server-plans .vps-plan-detail li.disk .disk-type {
    text-align: center;
    font-size: 12px;
    height: 18px;
    width: 48px;
    border-radius: 4px;
    margin-inline-start: 4px;
    line-height: 1.5;
}

.vps-server-plans .vps-plan-detail li.disk .disk-type.nvme {
    background: rgb(143, 112, 232);
    color: #fff;
}

.vps-server-plans .vps-plan-detail li.disk .disk-type.ssd {
    background: rgb(255, 173, 151);
}

.vps-server-plans .vps-plan-detail li.price,
.vps-server-plans .vps-plan-detail li.button {
    width: fit-content;
}

.vps-server-plans .vps-plan-detail li.button .theme-btn {
    padding: 6px 20px;
}

.vps-server-plans .vps-plan-detail li.duration select {
    padding: 5px 10px;
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 4px;
    background: #fff;
}

@media (max-width:1200px) {
    .vps-server-plans .vps-plan-detail {
        display: block;
        line-height: 30px;
        padding: 0;
        height: auto;
    }

    .vps-server-plans .vps-plan-detail+.vps-plan-detail {
        margin-top: 15px;
    }

    .vps-server-plans .vps-plan-detail li.name {
        width: 100%;
        padding: 10px;
        background-color: rgb(var(--color-primary));
        color: #fff;
        text-align: center;
        border-radius: 5px 5px 0 0;
    }

    .vps-server-plans .vps-plan-detail li.mobile-view {
        display: flex;
        padding: 10px 15px !important;
        text-align: start;
        justify-content: start;
        min-width: 100%;
        border-bottom: 1px solid #000;
        line-height: 22px;
    }

    .vps-server-plans .vps-plan-detail li.mobile-view::before {
        content: attr(data-value);
        display: block;
        width: 45%;
        font-weight: 500;
        text-align: start;
        font-size: 15px;
    }

    .vps-server-plans .vps-plan-detail li.duration{
        margin: 10px 0px 0px 0px;
        text-align: center;
        width: 100%;
    }
    .vps-server-plans .vps-plan-detail li.duration select{
        text-align: center;
        width: 95%;
        padding: 10px 0;
    }
    .vps-server-plans .vps-plan-detail li.price{
        width: fit-content;
    margin: 10px auto;
    font-weight: 500;
    }
    .vps-server-plans .vps-plan-detail li.button{
        width: fit-content;
    margin: 10px auto;
    font-weight: 500;
    }
}


/* Testimonial css start  */
        .testimonials .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(245, 114, 0, 0.23);
    padding: 20px;
    border: 1px solid var(--color-primary);
    width: 33.33%;
}

        .testi_br1{
           border-bottom: 1px solid #dee2e682;
        }

       .testi-head {
    font-size: 20px;
    color: #000;
    margin: 20px 0px 15px 0px;
    font-weight: 600;
}


.testimonials .swiper-slide p{
    font-size: 16px;
    color: #49495f;
    font-weight: 400;
}

.autr-dtl{
    display: flex;
    align-items: center;
    gap: 20px;
}
.autr-dtl span{
    font-size: 16px;
    font-weight: 700;
    color: #080f2c;
}
.autr-dtl label{
    font-size: 16px;
    color: #49495f;
    font-weight: 400;
}

.swiper-button-prev {
    display: none;
     left: 0px; 
    background: var(--color-black);
    color: var(--color-white);
    position: absolute;
    z-index: 22;
    padding: 10px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}
.swiper-button-next {
    display: none;
     right: 0px; 
    background: var(--color-black);
    color: var(--color-white);
    position: absolute;
    z-index: 22;
    padding: 10px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}

.swiper-button-prev::after {
    content: 'prev';
    font-size: 18px;
}
.swiper-button-next::after {
    content: 'next';
    font-size: 18px;
}

.domain-card {
    border: 2px solid #4c535b;
    border-radius: 4px;
}

.about-domain {
    padding: 12px 20px;
    background: #4c535b;
}


.about-domain span {
    font-size: 16px;
    font-weight: 500;
    color: #feede6;
}
.about-domain h4 {
	font-size: 23px;
	font-weight: 500;
	color: var(--color-white);
}
.about-domain label{
    font-size: 14px;
    font-weight: 600;
    color: #feede6;
}
.domain-text {
    padding: 12px 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.domainbtn span {
    font-size: 18px;
    font-weight: 600;
    color: #1e1d1d;
    line-height: 0;
}

.domainbtn a{
    display: block;
    margin-top: 10px;
}

.domain-text .domain-name {
    width: 90px;
    height: 90px;
    background: var(--color-primary);
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}
.domain-name h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-white);
}

.about_us_ftrs{
    padding-top: 20px;
}
.about_us_ftrs h4{
    font-weight: 500;
    color: var(--color-black);
}
.about_us_ftrs ul{
    display: flex;
    flex-wrap: wrap;
}
.about_us_ftrs ul li a{
    display: block;
    margin: 20px;
}
.about_us_ftrs ul li a:first-child{
    display: block;
    margin-inline-start: 0px;
}

.about_us_ftrs ul li a.btn1 {
    background-color: #f572004a;
    color: #040404;
    border: 1px solid #f3ceae;
}
.banner.about_us h1{
    color: var(--color-black);
}







/* faq css start  */

.faq-items .accordion {
    background: transparent;
    padding: 20px;
    margin: 0;
    list-style: none;
}

.faq-items .accordion li {
    background: #eee;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
}

.faq-items .accordion li + li {
    margin-top: 15px;
}

.faq-items .accordion li > a {
    font-size: 19px;
    font-weight: 500;
    color: #393939;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .faq-items .accordion li > a {
        font-size: 17px;
    }
}

.faq-items .accordion li > a > span {
    display: contents;
}

.faq-items .accordion li.active > a,
.faq-items .accordion li.active > a:hover,
.faq-items .accordion li.active > a:focus {
    color: var(--color-primary);
    border-radius: 10px;
    padding-bottom: 0;
    transition: all 0.3s;
}

.faq-items .accordion li > a::before {
    content: "\F285";
    color: #000;
    font-size: 17px;
    transition: all 0.3s;
    border-radius: 5px;
    margin-inline-end: 10px;
    line-height: 1;
    font-family: bootstrap-icons;
}

.faq-items .accordion li.active > a:before {
    transform: rotate(90deg);
    color: var(--color-primary);
}

.faq-items .accordion li p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #4b4b4b;
    display: none;
    border-radius: 0px 0px;
    padding-inline-start: 45px;
}

@media (max-width: 767px) {
    .faq-items .accordion li p {
        font-size: 15px;
        line-height: 1.5;
    }
}

.faq-items .accordion li p a {
    display: contents;
    color: var(--color-primary);
    text-decoration: underline !important;
    cursor: pointer;
}

/* footer css start  */

.main-footer{
    padding: 60px 0px 0px 0px;
    background-color: #222;
}

.main-footer a:hover{
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-logo img{
    width: 250px;
}

.main-footer p, .main-footer div {
    color: #888;
}

.main-footer .footer-login{
    display: flex;
    gap: 15px;
}
.main-footer .footer-login a {
    color: currentColor;
    border-color: #555;
    font-size: 15px;
    padding: 8px 25px;
    border: 1px solid #595959;
    border-radius: 4px;
}

.main-footer .footer-login span{
    padding: 5px;
}

.main-footer .footer-login a:hover {
    background-color: #f57200;
    border-color: #f57200;
    color: #fff;
    text-decoration: none;
}

.main-footer h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}
.main-footer ul{
    line-height: 32px;
}

.main-footer ul li a {
    color: #888;
    font-size: 15px;
}

.footer-bottom{
    padding: 1rem 0;
  font-size: .8125rem;
  background-color: #111;
  text-align: center;
}
.footer-bottom h6{
    font-size: 15px;
}

.terms-cond a{
    font-size: 15px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.footer-social-icon i{
    font-size: 22px;
}
.footer-social-icon i:hover{
    color: var(--color-primary);
    transition: var(--transition);
}

.position-relative{
    position: relative;
}
.badge-cart-icon {
    display: inline;
    padding: 2px 6px;
    line-height: 15px;
    font-weight: 700;
    font-size: 77%;
    border-radius: 50%;
    right: -10%;
    top: -32%;
    position: absolute;
    color: #fff;
    background-color: #777;
}
.banner-whmcs {
    background: #f5f5f5;
    padding: 15px 0;
}
.banner-whmcs h1.text-black.m-auto {
    font-size: 20px;
}
.banner-whmcs ol li, .banner-whmcs ol li a {
    font-size: 14px;
}
.media-body {
	width: auto !important;
}
.carousel-item.item.active {
    float: none ;
}

@media screen and (min-device-width: 992px) and (max-device-width: 1199px){
    .website-plan-bg {
        height: 100%;
        padding: 50px 30px 50px 250px;
    }
    .website-plan-text h2 {
        font-size: 30px;
    }
    .list-check li::before {
        margin-inline-end: 5px;
    }
    .list-check li {
        font-size: 15px;
    }
    .website-plan .price span {
        font-size: 40px;
    }
    .website-plan-bg .btn1 {
        padding: 10px 30px;
    }
    .main-footer .footer-login a {
        padding: 8px 15px;
    }
}