/*--------------------------------------------------------------

# Set main reusable colors and fonts using CSS variables

# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties

--------------------------------------------------------------*/

/* Fonts */
:root {

    --font-primary: "Inter", sans-serif;

    --font-primary-two: "Plus Jakarta Sans", sans-serif;

    --color-primary: #735DA5;

    --color-secondary: #2D3C58;

    --color-third: #FFC107;

    --color-white: #fff;

    --color-secondary-dark: #313149;

    --btc: #4C5671;

    --body-bg: #fff;

    --bold: 600;

    --bg-light: #F1EAFF;

    --header-top-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 8.51%, rgba(255, 255, 255, 0.10) 77.02%);

    --box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);

    --transition: all .4s ease;

    --light-border: #F1EAFF;

}

/* Smooth scroll behavior */
:root {

    scroll-behavior: smooth;

}

/*--------------------------------------------------------------

  # General

  --------------------------------------------------------------*/

/* Scroll Bar */

* {

    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);

}

/* User Select */
::selection {

    background: var(--color-primary);

}

::selection {

    color: #fff;

    text-shadow: none;

}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

/* Firefox */

input[type=number] {

    -moz-appearance: textfield;

}

body {

    font-family: var(--font-primary);

    color: var(--color-secondary);

    overflow-x: hidden;

}

/* container width set on large screen */

.container {

    max-width: 1300px;

    margin-left: auto;

    margin-right: auto;

}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

    .container {

        padding-left: 15px;

        padding-right: 15px;

    }

}

p {

    color: var(--btc);

    margin-bottom: 0;

}

a {

    color: unset;

    text-decoration: none;

}

a:hover {

    color: unset;

    text-decoration: none;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-primary);

}

img {

    max-width: 100%;

    height: auto;

}

ul {

    margin: 0;

    padding: 0;

    text-align: start;

}

ul li {

    list-style: none;

}

sub,
sup {

    font-size: 15px;

}

/* mix blend mode effect on image */

.mix-blend-darken {

    mix-blend-mode: darken;

}

.color-primary {

    color: var(--color-primary);

}

.fw-5 {

    font-weight: 500;

}

.br-4 {

    border-radius: 4px;

}

/*---------------------------------------------------------

  Top Header Css

---------------------------------------------------------*/

.topheader {

    /*background: var(--header-top-gradient);

    backdrop-filter: blur(50px);*/

    color: var(--color-white);

    line-height: 40px;

    font-size: 14px;

    z-index: 2;

    position: relative;

}

.topheader-right {

    justify-content: end;

    display: flex;

    gap: 24px;

    /* text-align: end; */

}

.topheader-text a strong {

    color: #FFC107;

}

/*---------------------------------------------------------

  Main Header Css

---------------------------------------------------------*/

.header {

    background-color: #fff0;

    color: var(--color-secondary);

    transition: all 0.5s;

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

}

.header .logo img {

    max-height: 45px;

    margin-right: 6px;

}

.header .clientarea,
.header .clientarea:focus {

    border: 1px solid var(--body-bg);

    padding: 11px 38px;

    border-radius: 50px;

    color: var(--body-bg);

    transition: var(--transition);

}

.header .clientarea:hover,
.header .clientarea:focus:hover {

    background: var(--color-third);

    color: var(--color-secondary);

    border: 1px solid var(--color-third);

}

@media (max-width: 1199px) {

    .header .main-header {

        padding-top: 20px;

        padding-bottom: 20px;

    }

    .header .logo {

        order: 1;

    }

    .header .clientarea {

        order: 2;

        margin: 0;

        margin-inline-end: 15px;

    }

    .header .navmenu {

        order: 3;

    }

}

@media (max-width: 575px) {

    .header .clientarea {

        padding: 10px 30px;

    }

    .col-lg-3.text-start {

        display: none;

    }

    .topheader-right {

        justify-content: space-between;

    }

}

@media (max-width: 450px) {

    .header .clientarea {

        display: none;

    }

}

.col-lg-3.text-end {

    justify-content: space-between;

}

@media (max-width: 867px) {

    .topheader .col-lg-6.text-center {

        display: none;

    }

}

/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Desktop Navigation */

@media (min-width: 1200px) {

    .navmenu {

        padding: 0;

        z-index: 2;

    }

    .navmenu ul {

        margin: 0;

        padding: 0;

        display: flex;

        list-style: none;

        align-items: center;

    }

    .navmenu li {

        position: relative;

    }

    .navmenu>ul>li {

        padding: 0px 25px;

        cursor: pointer;

    }

    .navmenu>ul>li>a,
    .navmenu>ul>li>a:hover,
    .navmenu>ul>li>a:focus {

        padding: 28px 0;

        position: relative;

        display: block;

        font-size: 15px;

        color: var(--body-bg);

    }

    .navmenu>ul>li>a:after {

        content: "";

        position: absolute;

        width: 0%;

        height: 2px;

        left: 0;

        bottom: 28px;

        background: var(--color-white);

        ;

        transition: all 0.3s ease-in-out;

    }

    .navmenu>ul>li:hover>a:after {

        width: 100%;

    }

    .navmenu .dropdown ul {

        margin: 0;

        padding: 10px 0;

        display: none;

        position: absolute;

        visibility: hidden;

        left: 14px;

        top: 130%;

        opacity: 0;

        transition: var(--transition);

        border-radius: 10px;

        z-index: 99;

        background: var(--color-white);

        -webkit-box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);

        box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);

    }

    .navmenu .dropdown ul li {
        min-width: 280px;
        max-width: 350px;
    }

    .navmenu .dropdown ul a {

        padding: 10px 20px;

        padding-inline-end: 15px;

        font-size: 15px;

        font-weight: 400;

        text-transform: none;

        color: var(--btc);

        display: flex;

        position: relative;

        transition: all 0.3s ease-in-out;

        /* justify-content: space-between; */

        gap: 20px;

    }

    .navmenu .dropdown ul.single_sub_menu a:after {

        content: "";

        position: absolute;

        width: 0;

        height: 2px;

        top: 50%;

        left: 20px;

        transform: translateY(-50%);

        background: var(--btc);

        transition: all 0.3s ease-in-out;

    }

    .navmenu .dropdown ul.single_sub_menu a:hover {

        padding-inline-start: 35px;

    }

    .navmenu .dropdown ul.single_sub_menu a:hover:after {

        width: 12px;

    }

    .navmenu .dropdown ul a i {

        font-size: 12px;

    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {

        color: var(--nav-dropdown-hover-color);

    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 87%;
        visibility: visible;
        display:block;
    }

    .navmenu .dropdown .dropdown ul {

        top: 0;

        left: -90%;

        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {

        opacity: 1;

        top: 0;

        left: -100%;

        visibility: visible;

    }

    .navmenu .megamenu {

        position: static;

    }

    .navmenu .megamenu .mega-menu {
        width: 90%;
        max-width:1200px;
        height: auto;
        transform: translateY(15px) translateX(-50%);
        left: 50%;
        box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
        transform-origin: 0 0 0;
        padding: 30px;
        border-radius: 10px;
        transition: all 0.3s;
    }

    .navmenu .megamenu.mini-megamenu {

        transform: translateY(0px) translateX(0%);

    }

    .navmenu .megamenu.mini-megamenu {

        transform: translateY(0px) translateX(0%);

    }

    /*.navmenu .megamenu .mega-menu li{

    min-width: unset;

  }*/

    .navmenu .megamenu .mega-menu-item {

        padding: 0;

        margin: 0;

        flex-direction: column;

        display: flex;

        align-items: flex-start !important;

    }

    .navmenu .megamenu .mega-menu-item h4 {
        padding-inline-start: 10px;
    }

    .navmenu .megamenu .mega-menu-item li:not(:last-child) {
        margin-inline-end: 15px;
    }

    .navmenu .megamenu .mega-menu-item li {

        margin-bottom: 15px;

    }

    .navmenu .megamenu .mega-menu-item a {

        display: flex !important;

        align-items: center;

        padding: 10px !important;

        border: 1px solid transparent;

        width: 100%;

        font-size: 16px;

        border-radius: 4px;

    }

    .navmenu .megamenu .mega-menu-item a:hover {

        border: 1px solid #E6E5FF;

    }

    .navmenu .megamenu .mega-menu-item a i {

        /* margin-inline-end: 16px; */

        padding: 10px;

        max-width: max-content;

        background: #F0F0FF;

        border-radius: 4px;

        font-size: 20px;

        color: var(--color-primary);

        display: block;

        line-height: 26px;

    }

    .navmenu .megamenu .mega-menu-item a .info .heading {

        margin-bottom: 2px;

        font-weight: 500;

        font-size: 16px;

        line-height: 26px;

        color: #083A5E;

        display: block;

    }

    .navmenu .megamenu .mega-menu-item a .info .content {

        font-weight: 400;

        font-size: 14px;

        line-height: 24px;

        color: #497696;

        display: block;

    }

}

/* Mobile Navigation */

@media (max-width: 1199px) {

    .mobile-nav-toggle {

        color: #fff;

        font-size: 28px;

        line-height: 0;

        margin-right: 10px;

        cursor: pointer;

        transition: color 0.3s;

    }

    .navmenu .megamenu ul h4 {
        display: none;
    }

    .navmenu {

        padding: 0;

        z-index: 9997;

    }

    .navmenu ul {

        display: none;

        position: absolute;

        inset: 43px 10px 10px 10px;

        padding: 10px 0;

        margin: 0;

        border-radius: 6px;

        overflow-y: auto;

        transition: 0.3s;

        z-index: 9998;

    }

    .navmenu a,
    .navmenu a:focus {

        color: var(--btc);

        padding: 10px 20px;

        font-size: 17px;

        font-weight: 500;

        display: flex;

        align-items: center;

        justify-content: space-between;

        white-space: nowrap;

        transition: 0.3s;

    }

    .navmenu a i,
    .navmenu a:focus i {

        font-size: 12px;

        line-height: 0;

        margin-left: 5px;

        width: 30px;

        height: 30px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        transition: 0.3s;

    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {

        color: var(--color-primary);

    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {

        color: var(--color-primary);

    }

    .navmenu .active i,
    .navmenu .active:focus i {

        color: color: var(--color-primary);

        ;

        transform: rotate(180deg);

    }

    .navmenu>ul>li>a {

        border-bottom: 1px solid #f3f3f3;

    }

    .navmenu>ul>.dropdown>ul li {

        border-bottom: 1px solid #f3f3f3;

    }

    .navmenu>ul>.dropdown>ul li a {

        font-size: 15px;

        padding: 10px 0;

        display: block;

    }


    .navmenu .dropdown ul,
    .navmenu .megamenu ul {

        position: static;

        display: none;

        z-index: 99;

        padding: 0px 0;

        margin: 0px 20px;

        background-color: #fff;

        transition: all 0.5s ease-in-out;

    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {

        display: block;

    }


    body::before {

        content: '';

        display: block;

        background: #0e1013;

        position: fixed;

        top: 0;

        z-index: 99;

        width: 100%;

        height: 100%;

        opacity: 0;

        visibility: hidden;

        transition: var(--transition);

    }

    body.mobile-nav-active::before {

        opacity: 1;

        visibility: visible;

    }

    .mobile-nav-active {

        overflow: hidden;

    }

    .mobile-nav-active .mobile-nav-toggle {

        color: #fff;

        position: absolute;

        font-size: 32px;

        top: 0px;

        left: 0px;

        margin-right: 0;

        z-index: 9999;

        background: var(--color-primary);

        padding: 4px;

    }

    .mobile-nav-active .navmenu {

        position: fixed;

        overflow: hidden;

        background: var(--color-white);

        transition: 0.3s;

        width: 40%;

        right: 0;

        top: 0;

        height: 100vh;

        overflow: auto;

        z-index: 9999;

    }

    .mobile-nav-active .navmenu>ul {

        display: block;

    }

    .navmenu .megamenu .mega-menu-item a i {

        display: none;

    }

    .navmenu .megamenu .mega-menu-item a .info .content {

        display: none;

    }

}

@media (max-width:767px) {

    .mobile-nav-active .navmenu {

        width: 80%;

    }

}

body main .theme-heading h3 {

    font-size: 40px !important;

    font-weight: 600;

}

body main .theme-heading p {

    font-size: 18px !important;

}

@media(max-width:480px) {

    body main .theme-heading h3 {

        font-size: 30px !important;

    }

}

main p {

    color: var(--color-secondary-dark);

}

main .theme-heading {

    margin-bottom: 30px;

}


.border_right {

    border-right: 1px solid #cdcdcd;

    padding-right: 15px;

}

/*=================button css===================*/

.btn-primary {
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: 30px;
    border: 1px solid #ffc107;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 2;
    display: block;
    width: fit-content;
    text-align: center;
}

.btn-primary::before {

    content: "";

    position: absolute;

    left: -15px;

    background-color: var(--color-third);

    border-radius: 0px 50px 50px 0px;

    width: 33px;

    height: 60px;

    overflow: hidden;

    top: -6px;

    z-index: -1;

    transition: var(--transition);

}

.btn-primary:hover::before {

    content: "";

    position: absolute;

    left: 0px;

    background-color: var(--color-third);

    border-radius: 0%;

    width: 100%;

    height: 60px;

    overflow: hidden;

    top: 0px;

    z-index: -1;

}

.plan.btn-primary {

    transition: var(--transition);

    border: 1px solid var(--color-primary);

    width: 100%;

    transition: var(--transition);

}

.plan.btn-primary:hover::before {

    content: "";

    position: absolute;

    left: 0px;

    background-color: var(--color-third);

    border-radius: 0%;

    width: 100%;

    height: 60px;

    overflow: hidden;

    top: 0px;

    z-index: -1;

}

.plan.btn-primary:hover {

    border: 1px solid var(--color-third);

}

.btn-secondary {

    text-align: center;

    font-weight: 600;

    font-family: var(--font-primary);

    padding: 17px 32px;

    line-height: 1;

    border-radius: 10px;

    display: block;

    width: fit-content;

    transition: var(--transition);

}

.bg-third {

    background: var(--color-third);

}

.btn-secondary.bg-third:hover {

    background: #2d3c58 !important;

    color: var(--color-white) !important;

}

.fit-content {

    width: fit-content !important;

}

/*=================button css end===================*/

/*=================hero-banner===================*/

main .theme-gap {

    padding: 64px 0px;

}

.hero-banner {

    display: flex;

    align-items: center;

}

.hero-banner.one {
    background: linear-gradient(180deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/bannerbg.png);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 50% 0%;
}

.hero-banner.two {

    background: linear-gradient(180deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/bannerbg2.png);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 70% 40%;

}

.hero-banner.three {

    background: linear-gradient(180deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/bannerbg3.png);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 70% 40%;

}

.hero-banner.four {
    background: linear-gradient(80deg, rgba(25, 33, 44, 0.85) 0%, rgba(39, 61, 64, 0.81) 100%), url(../img/bannerbg4.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 63% 30%;
}

.hero-banner.five {

    background: linear-gradient(80deg, rgb(2, 0, 6) 0%, rgba(15, 13, 19, 0) 100%), url(../img/business-web-hosting.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 63% 30%;

}

.hero-banner.six {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0.92) 0%, rgba(15, 13, 19, 0.84) 100%), url(../img/wordpress-hosting-banner.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.seven {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/vps-server-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.eight {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/reseller-hosting-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.nine {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/domain-search-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.ten {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/domain-transfer-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.eleven {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/domain-promo-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.twelve {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/business-email-banner.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.thirteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/contact_img.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.fourteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/network.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.sixteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/offer_img.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.fifteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/vps-server.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.seventeen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/cloud_img.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.eighteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/bannerbgeighteen.png);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.ninteen {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/b-nineteen.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.twenty {

    background: linear-gradient(80deg, rgba(2, 0, 6, 0.68) 0%, rgba(15, 13, 19, 0.79) 100%), url(../img/b-twenty.jpg);

    background-repeat: no-repeat !important;

    background-size: cover !important;

    background-position: 95% 30% !important;

}

.hero-banner.twentyone {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/b-twenty-two.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.twentytwo {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/b-twenty-three.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.twentythree {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/b-twenty-four.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.twentyfour {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/b-twenty-five.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.twentyfive {
    background: linear-gradient(80deg, rgba(2, 0, 6, 0) 0%, rgba(15, 13, 19, 0) 100%), url(../img/b-twenty-six.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 95% 30% !important;
}

.hero-banner.seven.policy {

    height: auto;

}

.hero-banner {

    position: relative;

    overflow: hidden;

    height: 525px;

    padding: 150px 0px 70px 0px;

}

.banner-heading h1 {

    font-size: 55px;

    color: var(--color-white);

    font-weight: var(--bold);

}

@media(max-width:480px) {

    body h1 {

        font-size: 40px !important;

    }

}

.banner-heading p {

    font-size: 18px;

    line-height: 35px;

    color: #fff;

    margin-bottom: 15px;

    font-family: var(--font-primary);

    font-weight: 500;

}

.banner-list {

    display: flex;

    width: 100%;

    flex-wrap: wrap;

}

.banner-list li {

    width: 50%;

    color: var(--color-white);

}

.banner-list.icon li {

    width: fit-content;

    display: flex;

    position: relative;

    align-items: start;

    gap: 15px;

    margin-inline-end: 20px;

}

.banner-list li:nth-child(-n+2) {

    margin-bottom: 15px;

}

.banner-list.check li::before {

    content: '\F633';

    font-family: bootstrap-icons;

    font-size: 12px;

    background: var(--color-white);

    border-radius: 50%;

    color: var(--color-primary);

    margin-inline-end: 10px;

    padding: 2px;

}

@media(max-width:480px) {

    .banner-list li {

        width: 100%;

        margin-bottom: 15px;

    }

    .banner-list.icon li {

        width: 100%;

        display: block;

        margin-bottom: 15px;

    }

    .banner-list.icon li span {

        display: block;

    }

}

@media(max-width:767px) {

    .hero-banner {

        height: auto;

        padding-top: 150px;

    }

}

.carousel-control-next,
.carousel-control-prev {

    position: absolute;

    top: 0;

    bottom: 0;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 4%;

    padding: 0;

    color: #fff;

    text-align: center;

    background: 0 0;

    border: 0;

    opacity: .5;

    transition: opacity .15s ease;

}

.domain-search {

    position: relative;

}

.domain-search-box {

    background-image: url('../img/home-domain-search.jpg');

    background-repeat: no-repeat;

    background-position: 40% 50%;

    border-radius: 10px;

    padding: 40px;

    color: var(--color-secondary);

    text-align: center;

    position: relative;

    z-index: 1;

}

.domain-search-box::before {

    background: linear-gradient(180deg, rgb(2, 0, 6) 0%, rgb(1, 0, 4) 100%);

    border-radius: 10px;

    bottom: 0;

    content: "";

    left: 0;

    opacity: 0.85;

    position: absolute;

    right: 0;

    top: 0;

    z-index: -1;

}

.domain-form {

    position: relative;

    margin: auto;

}

.domain-form input {

    background: var(--body-bg);

    color: var(--btc);

    padding: 18px 30px;

    border-radius: 6px;

    position: relative;

    border: unset;

    width: 75%;

}

.domain-search-box form button[type="submit"] {

    height: 45px;

    min-width: 180px;

    max-width: max-content;

    border-radius: 6px;

    background: var(--color-secondary);

    color: var(--body-bg);

    font-weight: var(--bold);

    text-transform: capitalize;

    position: absolute;

    right: 13%;

    top: 50%;

    transform: translateY(-50%);

    transition: var(--transition);

    border: unset;

}

@media(max-width:480px) {

    .domain-search-box form button[type="submit"] {

        min-width: 100%;

    }

}

.domain-list {

    color: #fff;

    font-size: 24px;

    font-weight: 600;

    margin: 0 auto;

    text-align: center;

    width: 80%;

    padding: 0;

}

@media(max-width:480px) {

    .domain-list .domain-name {

        font-size: 16px;

    }

    .domain-list .domain-name span {

        margin-bottom: 10px;

    }

}

.domain-price {

    display: block;

}

.domain-price {

    color: var(--color-third);

}

@media(max-width:692px) {

    .domain-form input {

        width: 100%;

        padding: 10px;

    }

    .domain-search-box {

        padding: 40px 20px;

    }

    .domain-search-box form button[type="submit"] {

        display: block;

        transform: translateY(0%);

        position: unset;

        width: 100% !important;

        text-align: center;

        margin: 10px auto;

    }

    .domaintype span {

        text-transform: lowercase;

    }

    .domaintype ul {

        flex-wrap: wrap;

        gap: 20px;

        justify-content: space-between;

    }

}

.top-rating {

    padding: 20px 0;

    background: #f9f9f9;

}

.top-rating {

    background-image: url('../img/review_img.png');

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}

.banner-review span {

    display: flex;

    align-items: center;

    gap: 15px;

    text-align: center;

    justify-content: center;

}

@media(max-width:567px) {

    .banner-review span {

        display: block;

        gap: 15px;

        line-height: 40px;

    }

}

.banner-review-onclick span img {

    width: 30px;

    height: 30px;

}

.banner-review-onclick span {

    font-weight: 500;

    font-size: 20px;

    margin-top: 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    text-align: center;

    justify-content: center;

}

.support-center {

    background-image: url('../img/support.jpg');

    position: relative;

    background-repeat: no-repeat;

    background-position: 50% 22%;

    background-size: cover;

}

@media(max-width:510px) {

    .support-center {

        padding: 40px 10px;

    }

}

.support-center::before {

    background: linear-gradient(180deg, rgba(115, 93, 165, 0.52) 0%, rgba(120, 97, 174, 0.44) 100%);

    bottom: 0;

    content: "";

    left: 0;

    opacity: 0.65;

    position: absolute;

    right: 0;

    top: 0;

    z-index: 1;

}

.support-center p {

    margin-bottom: 20px;

}

.text-white {

    color: #fff !important;

}

.card-feature-two {

    border: 1px solid #e4eefb;

    padding: 30px;

    border-radius: 10px;

    height: 100%;

}

.card-feature-two .icon {

    margin-bottom: 20px;

    box-shadow: rgba(0, 0, 0, 0) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.11) 0px 8px 4px, rgba(0, 0, 0, 0) 0px 16px 8px, rgba(0, 0, 0, 0) 0px 32px 16px;

    width: fit-content;

    border-radius: 7px;

    transition: var(--transition);

}

.card-feature-two:hover .icon {

    transform: translateY(-10px);

}

.card-feature-two .icon img {

    background: aliceblue;

    padding: 12px;

    border-radius: 7px;

}

.card-feature-two h5 {

    font-size: 20px;

    margin-bottom: 15px;

}

.card-style-three .icon {

    display: flex;

    position: relative;

    gap: 20px;

    margin-bottom: 20px;

}

.icon-heading h4 {

    margin-bottom: 0px;

}

.icon-heading span {

    color: var(--color-primary);

    font-size: 16px;

    font-style: italic;

}

.card-style-three .content .title {

    font-size: 20px;

    font-weight: 700;

    line-height: 30px;

    margin-bottom: 10px;

}

.card-style-three .content .title-feature {

    font-size: 16px;

    font-weight: 300;

    line-height: 26px;

    margin-bottom: 0;

    color: #555;

}

.card-style-three img {

    max-width: unset;

}

.card-style-three .img-effect img {

    position: absolute;

    z-index: -1;

    transition: all 0.5s;

}

.card-style-three .img-effect img {

    top: -60px;

    right: -60px;

}

.card-style-three:hover .img-effect img,
.card-style-three:hover .img-effect img {

    top: 0;

    right: 0;

}

@media(max-width:480px) {

    .border_right {

        border-right: unset;

    }

    .card-style-three {

        text-align: center;

    }

    .card-style-three .icon {

        display: block;

        margin-bottom: 20px;

    }

    .card-style-three .icon img {

        margin-bottom: 20px;

    }

    .card-style-three .content .title-feature {

        font-weight: 400;

    }

}

.card-style-four {

    padding: 40px 50px 40px 40px;

    border-radius: 10px;

    border: 1px solid var(--light-border);

    transition: var(--transition);

    height: 100%;

}

.card-style-four:hover {

    box-shadow: 0px 0 10px 1px #828BA226;

}

.card-style-four .icon {

    margin-bottom: 30px;

}

.card-style-four h4 {

    font-size: 20px;

    font-weight: 700;

    color: var(--color-secondary);

    margin-bottom: 15px;

}

.card-style-four p {

    font-size: 16px;

    font-weight: 400;

    font-family: var(--font-secondary);

    margin-bottom: 0;

}

.bg-light {

    background: var(--bg-light) !important;

}

.features-list {

    margin-bottom: 20px;

}

.features-list.two li {
    line-height: 22px;
    padding-bottom: 10px;
}


.feature-style-six {

    height: 100%;

}

.feature-style-six h4 {

    font-size: 24px;

}

@media(max-width:480px) {

    .feature-style-six h4 {

        font-size: 20px;

    }

}

.features-list li {

    display: flex;

    align-items: start;

    gap: 6px;

    line-height: 40px;

}

.features-list li::before {

    content: "\F26A";

    font-family: bootstrap-icons;

    display: inline-flex;

    align-items: center;

    color: var(--color-primary);

}

.web-feature {

    padding: 18px 20px;

    border: 1px solid var(--light-border);

    border-radius: 6px;

    display: flex;

    gap: 15px;

    font-weight: 500;

    font-family: var(--font-secondary);

    align-items: center;

}

.web-feature:not(:last-child) {

    margin-bottom: 20px;

}

.web-feature .text {

    margin-bottom: 0;

    line-height: 21px;

}

.web-img-block {

    position: relative;

}

.web-feature-text {

    position: absolute;

    height: 100%;

    width: 100%;

    top: 0;

    left: 0;

}

.web-feature-text .seo,
.web-feature-text .performance {

    gap: 20px;

    align-items: center;

    background: var(--color-primary);

    border-radius: 6px;

    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);

    color: var(--color-white);

    display: inline-flex;

    padding: 10px 25px;

}

.web-feature-text .seo p,
.web-feature-text .performance p {

    margin-bottom: 0;

    font-size: 14px;

    text-transform: capitalize;

    color: var(--color-white);

}

.web-feature-text .seo .score,
.web-feature-text .performance .score {

    height: 50px;

    width: 50px;

    border-radius: 50%;

    border: 1px solid #fff;

    display: grid;

    place-items: center;

    font-weight: 600;

}

.web-feature-text .seo {

    position: absolute;

    bottom: 30%;

    left: 0%;

}

.web-feature-text .performance {

    position: absolute;

    bottom: 5%;

    left: 10%;

}

@media(max-width:480px) {

    .web-feature-text .performance {

        position: absolute;

        bottom: -10%;

        left: 10%;

    }

}

.web-feature2-text {

    background: var(--color-primary);

    padding: 28px 30px 29px 35px;

    width: 100%;

    display: inline-flex;

    gap: 25px;

    position: absolute;

    bottom: 0%;

    right: 0%;

}

.web-feature2-text .icon {

    height: 50px;

    min-width: 50px;

    border-radius: 50%;

    background: var(--color-third);

    display: grid;

    place-items: center;

}

.web-feature2-text .content h6 {

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 10px;

    font-family: var(--font-secondary);

    color: var(--color-white);

}

.web-feature2-text .content p {

    margin: 0;

    color: #E7E7E7;

    font-size: 15px;

}

@media(max-width:480px) {

    .web-feature2-text {

        padding: 10px 10px 10px 10px;

        gap: 15px;

    }

}

.plan-price-selector {

    border-radius: 6px;

    border: 1px solid var(--color-primary);

    width: fit-content;

    margin: auto;

    padding: 5px;

}

.plan-price-selector button {

    border-radius: 6px;

    padding: 10px 20px;

    text-transform: capitalize;

}

.plan-price-selector .tab {

    color: var(--color-primary);

    font-weight: 600;

    background: unset;

    border: unset;

}

.plan-price-selector .tab.active {

    color: var(--color-white);

}

.plan-price-selector button.active {

    background: var(--color-primary);

    color: var(--color-white);

}

.pricing {

    margin-top: 40px;

}

.heading-bg tr th {

    padding: 24px 30px;

    background: var(--color-primary);

    color: var(--color-white);

    font-size: 17px;

    font-weight: 500;

}

.pricing table.table .table-content tr td {

    padding: 15px 30px;

    font-size: 17px;

    font-weight: 500;

    background: unset;

    border: none;

    vertical-align: baseline;

    min-width: fit-content;

}

.pricing table.table .table-content tr:nth-child(2n+1) td {

    background: #F6F6F6;

}

.pricing table.table .table-content tr td .btn-secondary {

    text-align: center;

    font-weight: 600;

    font-family: var(--font-primary);

    padding: 10px 32px;

    line-height: 1;

    border-radius: 6px;

    display: block;

    width: fit-content;

    transition: var(--transition);

}

.dedi-plan .pricing {

    overflow-y: scroll;

}

@media(max-width:480px) {

    .pricing table.table .table-content tr td {

        padding: 10px 15px;

        font-size: 15px;

        font-weight: 400;

        min-width: 150px;

    }

}

.reseller_Section {

    position: relative;

}

.reseller_Section::after {

    background-image: url(../img/reseller_sec_img.svg);

    height: 100%;

    width: 100%;

    position: absolute;

    content: "";

    background-repeat: no-repeat;

    left: -6%;

    top: -20%;

    z-index: -1;

    background-size: cover;

}

.reseller_img_Section {

    position: relative;

    display: flex;

    gap: 20px;

    align-items: end;

}

.reseller_img_Section img {

    border-radius: 5px;

}

@media(max-width:480px) {

    .reseller_img_Section img {

        /*    position: absolute;*/

    }

    .reseller_img_Section .image-two {

        display: none;

    }

}

.sh-feature {

    margin-top: 30px;

}

.sh-feature .features-list {

    display: inline-block;

    column-count: 2;

    gap: 25px;

}

@media(max-width:480px) {

    .sh-feature .features-list {

        column-count: 1;

    }

}

.card-style-four .icon i {

    font-size: 50px;

}

.just-one-click {

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

}

.just-one-click li {

    padding: 20px;

    border-radius: 7px;

    background-color: #0774FF17;

    min-width: 200px;

    margin: 10px;

}

.just-one-click li img {

    display: block;

}

.feature-style-five {

    background: #ffff;

    padding: 48px 50px 24px;

    border-radius: 10px;

    margin-bottom: 30px;

    position: relative;

    z-index: 1;

}

.feature-style-five {

    padding: 48px 35px 20px;

    display: flex;

    align-items: start;

    height: 100%;

}

.feature-style-five::before {

    position: absolute;

    content: "";

    left: 0%;

    top: 0;

    height: 100%;

    width: 0%;

    background: var(--color-primary);

    z-index: -1;

    border-radius: 5px;

    transition: var(--transition);

}

.feature-style-five:hover::before {

    width: 100%;

}

.feature-style-five .feature-icon {

    min-width: 75px;

    height: 75px;

    border-radius: 5px;

    line-height: 75px;

    background: #E5F0FF;

    text-align: center;

}

.feature-style-five .feature-icon {

    margin-right: 20px;

    margin-bottom: 20px;

}

.feature-style-five .feature-content h3 {

    font-size: 18px;

    transition: var(--transition);

    font-weight: 600;

}

.feature-style-five .feature-content p {

    font-size: 17px;

    line-height: 28px;

    color: #636363;

    transition: var(--transition);

}

.feature-style-five:hover .feature-content h3,
.feature-style-five:hover .feature-content p {

    color: var(--color-white);

}

@media(max-width:480px) {

    .feature-style-five {

        padding: 40px 30px 5px;

        display: block;

        text-align: center;

    }

    .feature-style-five .feature-icon {

        max-width: 75px;

        margin: auto;

    }

    .feature-style-five .feature-content h3 {

        margin-top: 20px;

        font-weight: 500;

    }

}

.hero-banner-title h1 {

    font-size: 55px;

    font-weight: var(--bold);

    color: var(--body-bg);

    display: inline-block;

    text-transform: capitalize;

    line-height: 60px;

    margin-bottom: 25px;

    position: relative;

    z-index: 1;

}

.hero-banner-title p {

    color: var(--body-bg);

}

.register-domain form {

    width: 65%;

    margin: auto;

    position: relative;

}

.register-domain form input {

    background: var(--color-white);

    line-height: 50px;

    border-radius: 4px;

    border: unset;

    width: 100%;

    padding: 0px 15px;

}

.domain_type {

    display: flex;

    position: absolute;

    right: 0;

    top: 0;

}

.domain_type select {

    background: #F4F4F4;

    height: 50px;

    border-radius: 0;

    border: none;

}

.domain_type select {

    cursor: pointer;

    display: block;

    font-size: 14px;

    padding-left: 18px;

    padding-right: 8px;

    position: relative;

    white-space: nowrap;

    width: auto;

    color: var(--btc);

}

.domain_type .btn-primary {

    height: 50px;

    border-radius: 0px 4px 4px 0px;

    background: var(--color-third);

}

.domain_type select option {

    background-color: #fff;

    border-radius: 4px;

    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);

    margin-top: 4px;

}

@media(max-width:600px) {

    .register-domain form {

        width: 100%;

        margin: auto;

        position: relative;

    }

}

@media(max-width:480px) {

    .domain_type {

        display: block;

        position: relative;

        width: 100%;

    }

    .domain_type .btn-primary {

        border-radius: 4px;

        width: 100%;

        margin-top: 15px;

    }

    .domain_type select {

        width: 100%;

        margin-top: 15px;

        border-radius: 4px;

    }

}

.register-domain form input {

    background: var(--color-white);

    line-height: 50px;

    border-radius: 4px;

    border: unset;

    width: 100%;

    padding: 0px 15px;

}

.domain-pricing-card {

    border-radius: 10px;

    border: 1px solid #D4DCFF;

    padding: 40px;

}

.domain-pricing-card .domain-logo {

    margin-bottom: 25px;

}

.domain-pricing-card .price-area {

    margin-bottom: 20px;

    color: var(--color-secondary);

    font-family: var(--font-secondary);

    display: flex;

    align-items: center;

    gap: 14px;

}

.domain-pricing-card .price-area .pre-price {

    font-size: 16px;

    font-weight: 500;

    line-height: 26px;

    text-decoration: line-through;

}

.domain-pricing-card .price-area .offerd-price {

    font-size: 20px;

    font-weight: 600;

    line-height: 30px;

}

.buttons-area {

    display: flex;

    align-items: center;

    gap: 8px;

}

.pricing-btn-reg {

    border-radius: 10px;

    background: var(--color-primary);

    color: var(--color-white);

    padding: 7px 18px;

    font-size: 14px;

    border: 1px solid var(--color-primary);

    transition: var(--transition);

}

.pricing-btn-trans.border {

    border-radius: 10px;

    background: var(--color-white);

    border: 1px solid #D4DCFF;

    color: var(--color-secondary);

    padding: 7px 18px;

    font-size: 14px;

    transition: var(--transition);

}

.pricing-btn-reg:hover,
.pricing-btn-trans.border:hover {

    background: var(--color-third) !important;

    color: var(--color-secondary) !important;

    border-color: transparent !important;

}

.pricing-horizontal {

    border: 1px solid #e8e8e8;

    border-radius: 5px;

    background: #fbfbfb;

    transition: all 0.3s;

}

.pricing-horizontal:hover {

    border: 1px solid var(--color-primary);

    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;

}

.pricing-horizontal .horizontal-card {

    padding: 30px;

}

.pricing-horizontal .plan-name {

    margin-top: 0;

    margin-bottom: 10px;

    font-weight: 600;

    line-height: 1.2;

    font-size: 22px;

    color: var(--color-secondary-dark);

}

.pricing-horizontal .pricing-label {

    color: var(--color-primary);

    font-size: 14px;

    font-weight: 600;

}

.pricing-horizontal .monthly-price {

    font-size: 32px;

}

.pricing-horizontal .monthly-price span.durections {

    font-size: 16px;

    font-weight: 600;

    margin-left: 6px;

}

.pricing-horizontal p.contens {

    font-size: 22px;

    letter-spacing: 1px;

    color: var(--color-secondary-dark);

    margin-bottom: 10px;

    font-weight: 500;

}

.pricing-horizontal .custum-lists {

    margin: 0px;

    padding: 0;

    list-style: none;

}

.pricing-horizontal .custum-lists li {

    margin: 0px;

    padding: 0;

    display: flex;

    align-items: baseline;

    font-size: 14px;

    padding-inline-start: 25px;

    position: relative;

    color: var(--color-secondary);

}

.pricing-horizontal ul.custum-lists {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 0;

}

.pricing-horizontal ul.custum-lists li {

    width: 50%;

}

@media (max-width:767px) {

    .pricing-horizontal ul.custum-lists li {

        width: 100%;

    }

}

.pricing-horizontal .custum-lists li:before {

    content: '\F26E';

    font-family: bootstrap-icons;

    color: var(--color-primary);

    font-size: 24px;

    position: absolute;

    top: -2px;

    left: -3px;

    line-height: 1;

}

.pricing-horizontal .custum-lists li a {

    color: var(--color-secondary);

    border-bottom: 1px dotted;

    border-color: var(--color-primary);

    margin-left: 5px;

    margin-right: 5px;

    position: relative;

    display: inline-block;

}

.pricing-horizontal .money-back {

    font-size: 12px;

    letter-spacing: 1px;

    color: var(--color-secondary-dark);

    text-align: center;

    display: block;

    margin-top: 10px;

}

.horizontal-card.top {

    padding: 30px;

    background: var(--color-primary);

}

.horizontal-card.top h3 {

    margin-bottom: 0px;

    color: var(--color-white);

    font-size: 28px;

}

.our-team .content {

    background: var(--color-white);

    text-align: center;

    padding: 30px 0;

    border-radius: 0px 0px 4px 4px;

    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);

}

.contact-form {

    background: var(--color-white);

    padding: 30px;

    border-radius: 10px;

}

.contact-form .btn-secondary {

    border: unset;

    margin: auto;

}

.blog-content {

    padding: 20px;

    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);

    overflow: hidden;

}

.card-feature-seven {

    height: 100%;

}

.card-feature-seven img {

    border-radius: 6px 6px 0px 0px;

}

.blog-heading {

    display: flex;

    align-items: center;

    gap: 30px;

}

.blog-content .blog-heading a {

    font-size: 18px;

    font-weight: 500;

}

.blog-content .blog-heading span {

    position: relative;

}

.blog-content .blog-heading span::after {

    position: absolute;

    content: "";

    height: 6px;

    width: 6px;

    background: var(--color-primary);

    border-radius: 50%;

    left: -10px;

    top: 50%;

    transform: translateY(-50%);

}

.blog-link {

    font-size: 22px;

    font-weight: 600;

    transition: var(--transition);

    margin-top: 10px;

    display: block;

}

.blog-link:hover {

    color: var(--color-primary);

}

.top-border {

    border-top: 1px solid #EDEDED !important;

}

.about-blogger {

    display: flex;

    align-items: center;

    gap: 20px;

}

.blog-author img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

}

.author-content span {

    font-size: 18px;

    font-weight: 600;

}

.author-content label {

    font-size: 14px;

    font-weight: 500;

}

.privacypolcy {

    padding: 50px 0px;

    background: var(--bg-light);

}

.legal-agreement {

    background: var(--color-white);

    border-radius: 6px;

    padding: 50px;

}

.privacypolcy h2 {

    font-size: 48px;

    margin-bottom: 10px;

    color: var(--color-secondary);

}

.privacypolcy p {

    font-size: 18px;

    margin-bottom: 0px;

    color: var(--color-secondary);

}

.privacypolcy h4 {

    font-size: 30px;

    margin-bottom: 12px;

    margin-top: 30px;

    color: var(--color-primary);

}

.privacypolcy p span {

    font-size: 18px;

    margin-bottom: 0px;

    color: var(--color-primary);

}

@media(max-width:580px) {

    .legal-agreement {

        background: var(--color-white);

        border-radius: 6px;

        padding: 20px 10px;

    }

    .privacypolcy h4 {

        font-size: 20px;

    }

}

.whois-form input {

    background: var(--color-white);

    line-height: 50px;

    border-radius: 10px 0px 0px 10px;

    border: unset;

    width: 100%;

    padding: 0px 15px;

}

.whois-form {

    display: flex;

    align-items: center;

    gap: 2px;

}

.whois-form button {

    border: unset;

    border-radius: 0px 10px 10px 0px;

    transition: var(--transition);

}

.whois-form button:hover {

    background: var(--color-third);

}

@media(max-width:480px) {

    .whois-form {

        display: block;

    }

    .whois-form button {

        width: 100%;

        margin-top: 15px;

    }

}

.login-content {

    background: var(--color-white);

    padding: 40px;

    border-radius: 4px;

}

.login-content input {

    padding: 10px 20px;

    border: 1px solid var(--color-primary);

}

.login-content :nth-child(n):not(:last-child) {

    margin-bottom: 25px;

}

.login-content button {

    border: unset;

    padding: 15px 50px;

}

input:focus {

    box-shadow: none !important;

    border-color: unset;

}

.custom-checkbox {

    display: flex;

    align-items: baseline;

    gap: 8px;

}

.custom-checkbox .form-checkbox {

    margin-bottom: 0px !important;

}

.Forget-pass,
.for-signup a,
.custom-control-label {

    transition: var(--transition);

    font-size: 16px;

}

.for-signup {

    text-align: center;

    gap: 20px;

    display: flex;

}

.Forget-pass:hover,
.for-signup a:hover {

    color: var(--color-primary);

}

@media(max-width:480px) {

    .login-content {

        padding: 15px;

    }

    .for-signup {

        display: block;

    }

    .for-signup span {

        display: block;

    }

}

/*====================plan csss=========================*/

.plan-card-two {

    padding: 40px 30px;

    border-radius: 10px;

    background: var(--color-white);

    text-align: center;

    transition: var(--transition);

    border: 1px solid transparent;

    position: relative;

    height: 100%;

}

.plan-card-two:hover,
.plan-card-two.active {

    border-color: var(--color-primary);

}

.plan-name-icon {

    justify-content: center;

    align-items: center;

    display: flex;

    gap: 10px;

    margin-bottom: 20px;

}

.plan-card-two p {

    font-size: 15px;

    font-weight: 400;

    margin-bottom: 20px;

}

.plan-card-two .offer {

    display: flex;

    gap: 10px;

    margin-bottom: 20px;

    align-items: center;

    justify-content: center;

}

.offer .cutted-price {

    font-size: 16px;

    font-weight: 600;

    text-decoration: line-through;

}

.offer .offered {

    padding: 8px 15px;

    border-radius: 30px;

    background: #E7F1FF;

    font-size: 14px;

    font-weight: var(--semibold);

    line-height: 100%;

    transition: var(--transition);

}

.plan-card-two:hover .offered {

    background: #FFF2CC;

}

.plan-card-two .plan-price {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 25px;

    color: var(--color-secondary);

    font-family: "Plus Jakarta Sans", sans-serif;

}

.plan-card-two a {

    margin: auto;

}

.plan-card-two .renew-price {

    font-size: 13px;

    font-weight: 400;

    font-family: var(--font-secondary);

    margin-top: 10px;

}

.plan-card-two ul li {

    display: flex;

    align-items: center;

    font-size: 15px;

    font-weight: 400;

    color: var(--btc);

    gap: 5px;

    line-height: 38px;

    justify-content: space-between;

}

.plan-card-two ul li span.text i {

    color: #00B67A;

    font-size: 18px;

    margin-inline-end: 6px;

}

.plan-card-two ul li i.bi.bi-x {

    color: #EB4242;

}

.tooltip-container {

    position: relative;

}

.tooltip-content {

    visibility: hidden;

    position: absolute;

    top: 67%;

    left: 60%;

    transform: translateX(-50%);

    background-color: var(--color-primary);

    color: #fff;

    padding: 5px 10px;

    border-radius: 5px;

    white-space: nowrap;

    font-size: 14px;

}

.three-plan .tooltip-content {

    left: 70%;

}

.tooltip-trigger {

    line-height: 0;

}

.tooltip-trigger:hover+.tooltip-content {

    visibility: visible;

    z-index: 1;

    opacity: .9;

}

.bg-dark-light {

    background: #f2f1f1;

}

.card-feature-one {
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 15, 46, 0.08);
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    text-align: center;
    padding: 45px 40px;
    transition: var(--transition);
    height: 100%;
}

.card-feature-one:hover {

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.card-feature-one .image {

    margin-bottom: 30px;

}

.card-feature-one .image img {

    max-height: 60px;

}

.feture-style-one {

    background: var(--primary-gradient);

}

.card-feature-one .title {

    font-size: 22px;

    font-weight: var(--semibold);

    display: inline-block;

    margin-bottom: 20px;

    text-transform: capitalize;

    transition: var(--transition);

}

.card-feature-one p {

    font-size: 14px;

}

.card-feature-one .primary-btn-link {

    margin-top: 20px;

    display: block;

}

.card-feature-one:hover a {

    color: var(--color-primary);

}



/* ----------------------------------------------------------------
    07. Pricing Section
------------------------------------------------------------------- */

.pricing-section {
    padding: 100px 0;
}

.pricing-section .section-header {
    margin-bottom: 100px;
}

@media (max-width:767px) {
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-section .section-header {
        margin-bottom: 50px;
    }
}

.plan-info {
    width: 100%;
    color: #000;
    font-size: 17px;
    line-height: 24px;
    text-align: start;
    -webkit-box-shadow: 0 0 15px 0 rgba(194, 215, 248, .55);
    -moz-box-shadow: 0 0 15px 0 rgba(194, 215, 248, .55);
    box-shadow: 0 0 15px 0 rgba(194, 215, 248, .55);
    background: #fff;
    padding: 30px;
    transition: .2s linear !important;
}

.plan-info:hover {
    box-shadow: 0 0 30px 0 #00000015;
    transform: scale(1.03) translate(0, -7px);
}



.plan-info>img {
    width: 25% !important;
    height: auto;
    opacity: 0.3;
}

.plan-info h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    text-transform: uppercase;
    color: #000;
    transition: none, transform;
}

.plan-info h2 span {
    font-size: 16px;
    background: #f2f2f2;
    padding: 12px 25px;
    text-transform: none;
    color: #000;
    font-weight: 600;
    display: block;
    margin: 10px 0 0;
    transition: none, transform;
    letter-spacing: 0.5px;
}

.plan-info .planprice {
    font-size: 30px;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0;
}

.plan-info .planprice .currencyicon,
.plan-info .planprice .durection {
    text-transform: none;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
}

.plan-info .durectioncontent {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.plan-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-info ul li {
    text-align: start;
    display: flex;
    align-items: start;
    padding: 5px 0px;
    color: #4c575e;
    font-size: 16px;
    line-height: 24px;
}

.plan-info ul li img {
    display: block;
    margin-inline-end: 10px;
    max-height: 20px;
    opacity: unset;
}

.plan-info ul li a {
    display: contents;
}

.plan-info ul li strong {
    font-weight: 600;
    margin-inline-end: 5px;
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------

# tsetimonial css start

--------------------------------------------------------------*/

.swiper-slide {

    height: auto;

}

.review-content {

    border: 1px solid #EAEFFF;

    padding: 40px 50px 40px 40px;

    border-radius: 10px;

    transition: var(--transition);

    position: relative;

    z-index: 1;

    height: 100%;

}

.rating {

    margin-bottom: 30px;

}

.review-content ul {

    display: flex;

    gap: 5px;

    max-width: fit-content;

}

.review-content ul li i {

    color: var(--color-third);

    font-size: 12px;

}

.review-content .content {

    margin-bottom: 30px;

}

.review-content .content p {

    font-size: 15px;

    font-weight: var(--medium);

    font-family: var(--font-primary);

    color: var(--color-secondary);

    transition: all 0.3s ease-in;

}

.review-author {

    display: flex;

    gap: 20px;

    padding: 10px;

    border: 1px solid var(--color-third);

    border-radius: 6px;

    position: relative;

}

.review-author::after {

    content: "\F286";

    position: absolute;

    font-family: bootstrap-icons;

    font-size: 20px;

    color: var(--color-third);

    top: -20px;

    left: 25px;

}

.review-author .author {

    width: 50px;

    height: 50px;

}

.review-author .author img {
    border-radius: 100%;

}


.author-detail label {

    font-size: 17px;

    font-weight: var(--semibold);

    color: var(--color-secondary);

    display: inline-block;

    margin-bottom: 0;

    transition: all 0.3s ease-in;

}

.review-author span {

    transition: all 0.3s ease-in;

}

.review-content:hover {

    background: var(--color-primary);

    border-color: var(--color-primary);

}

.review-content:hover .content p,
.review-content:hover label,
.review-content:hover span {

    color: var(--color-white);

    transition: var(--transition);

}

@media(max-width:480px) {

    .review-content {

        width: 100%;

        padding: 20px;

    }

    .testimonial-review {

        margin-bottom: 40px;

    }

    .rating {

        margin-bottom: 15px;

    }

    .review-content .content p {

        font-size: 15px;

    }

    .author-detail label {

        font-size: 18px;

    }

    .author-detail span {

        font-size: 15px;

    }

}

.swiper-pagination-bullets.swiper-pagination-horizontal {

    bottom: unset;

}

/*--------------------------------------------------------------

# faq css start

--------------------------------------------------------------*/

.accordion li a {

    font-size: 18px;

    list-style: none;

    border: 1px solid var(--color-primary);

    padding: 10px 20px;

    border-radius: 10px;

    cursor: pointer;

    display: flex;

    font-weight: 500;

    transition: var(--transition);

}

.accordion li.active a {

    border-top: 0px;

    border-left: 0px;

    border-right: 0px;

    border-bottom: 1px solid var(--color-primary);

    border-radius: 10px;

    transition: var(--transition);

}

.accordion li.active {

    background: #FFFFFF;

    list-style: none;

    border: 1px solid var(--color-primary);

    border-radius: 12px;

}

.accordion li+li {

    margin-top: 15px;

}

.accordion li a::after {

    content: '+';

    width: 20px;

    height: 20px;

    display: flex;

    color: #353535;

    justify-content: center;

    align-items: center;

    font-size: 17px;

    margin-inline-start: auto;

    border: 1px solid var(--color-primary);

    border-radius: 50%;

}

.accordion p {

    padding: 18px;

    display: none;

}

.accordion li.active a:after {

    content: '-';

    font-size: 22px;

}

@media(max-width:480px) {

    .accordion li a {

        font-size: 18px;

        padding: 10px 20px;

        font-weight: 500;

    }

}

/*--------------------------------------------------------------

# faq css end

--------------------------------------------------------------*/

/*--------------------------------------------------------------

# footer css start

--------------------------------------------------------------*/

.mainfooter {

    padding-top: 120px;

    background: #735DA514;

}

.default-border {

    border-top: 1px solid var(--border-color);

    margin: 25px 0;

}

.payment-methods ul {

    display: flex;

    gap: 5px;

    margin-top: 20px;

}

.footer-title h5 {

    color: var(--color-secondary);

    font-weight: 600;

    font-family: var(--font-primary);

    display: inline-block;

    margin-bottom: 35px;

}

.footer-title ul li {

    margin-bottom: 16px;

}

.footer-title ul li a:hover {

    color: var(--color-primary);

    transition: var(--transition);

}

.social.media ul {

    display: flex;

    gap: 10px;

}

.social.media ul li i {

    height: 34px;

    width: 34px;

    border-radius: 4px;

    border: 1px solid #D4DCFF;

    display: inline-flex !important;

    justify-content: center;

    align-items: center;

    background: transparent;

    transition: all 0.3s ease-in;

    font-size: 14px !important;

}

.social.media ul li:hover i {

    color: var(--body-bg);

    background: var(--color-primary);

    border: 1px solid var(--color-primary);

}

.footer-bottom {

    margin-top: 80px;

    padding: 30px 0;

    bottom: 0;

    border-top: 1px solid #D4DCFF;

}

.footer-bottom p {

    font-size: 16px;

    color: var(--btc);

    font-weight: 400;

}

.footerlogo a img {

    max-width: 200px;

    max-height: 50px;

}

@media(max-width:480px) {

    .footer-title h5 {

        margin-bottom: 15px;

    }

    .footer-content {

        margin-bottom: 40px;

    }

    .footer-bottom {

        margin-top: 50px;

    }

}

.scroll-top::after {

    position: absolute;

    z-index: -1;

    content: "";

    top: 100%;

    left: 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.active {

    visibility: visible;

    opacity: 1;

    bottom: 15px;

}

.scroll-top {

    position: fixed;

    visibility: hidden;

    opacity: 0;

    right: 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 i {

    color: #fff;

    font-size: 30px;

}


/*====tabbing css===*/

.big-screen-tab {
    display: flex;
    align-items: stretch;
    gap: 0px;
    margin-bottom: 15px;
}

.big-screen-tab button {
    flex: 0 20%;
}

.big-screen-tab.six-coloumn button {
    flex: 0 16.66%;
}

.big-screen-tab.four-coloumn button {
    flex: 0 25%;
}

.big-screen-tab button {
    background-color: #fafafa;
    width: 100%;
    border: 1px solid #ddd;
    display: block;
    font-size: 15px;
    font-weight: 400;
    height: auto;
    margin: 0;
    outline: none;
    padding: 20px;
    position: relative;
    color: #606060;
}

.big-screen-tab button img {
    display: block;
    filter: grayscale(1);
    margin: 0 auto;
    max-width: 64px;
    width: 100%;
    margin-bottom: 7px;
}

.big-screen-tab button.active img {
    filter: unset;
}

.big-screen-tab button.active {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(23, 84, 116, .18);
    transform: scale(1.02);
    transition: all .15s linear;
    z-index: 1;
    color: var(--color-primary);
}

.big-screen-tab button.active:before {
    border: solid transparent;
    border-color: #ddd transparent transparent;
    border-width: 14px;
    margin-left: -14px;
    content: " ";
    height: 0;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 100%;
    width: 0;
}

.mob-screen-tabs .items button {
    display: none;
}

.tabing-contents {
    display: none;
}

.tabing-contents.active {
    display: block;
}



@media (max-width:991px) {
    .mob-screen-tabs {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        gap: 25px 0;
    }

    .mob-screen-tabs .items {
        border-bottom: 1px solid #eaeaea;

    }

    .mob-screen-tabs .items button {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 16px;
        padding-bottom: 25px;
        background: transparent;
        border: 0;
        outline: unset;
        box-shadow: unset;
        cursor: pointer;
        color: #000;
        transition: all 0.3s;
        text-align: start;
    }

    .mob-screen-tabs .items button:after {
        content: "+";
        font-size: 16px;
        line-height: 1;
        transition: transform .3s ease-in-out;
        margin-inline-start: auto;
    }

    .mob-screen-tabs .items button.active {
        color: var(--color-primary);
        padding-bottom: 5px;
    }

    .mob-screen-tabs .items button.active:after {
        transform: rotate(-225deg);
    }
}





/*====plan two css===*/

.plan-card-three {
    margin-top: 22px;
    transition: var(--transition);
}

.plan-card-three:hover {
    margin-top: 0px;
}

.plan-card-three .head {
    display: block;
    background: #735da517;
    border-bottom: 2px solid var(--color-primary);
    min-height: 80px;
    position: relative;
    padding: 16px;
    margin: 0px 20px;
}

.plan-card-three .head::after {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -17px;
    border-style: solid;
    border-width: 8px;
    border-color: #735da5 transparent transparent;
    z-index: 2;
}

.plan-card-three .price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: #fff;
    border: 1px solid #e3eff7;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, .05);
}


.plan-card-three .price-box h4 {
    color: var(--color-primary);
    font-size: 55px;
    line-height: 44px;
    margin: 0;
    padding: 0;
}

.plan-card-three .price-box h4 span {
    font-size: 20px;
    color: #735da5a8;
}

.plan-card-three .price-box p {
    color: #735da5a8;
    font-size: 18px;
    line-height: 18px;
    margin: 0;
}

.plan-card-three .plan-list {
    margin: 0px 20px;
    display: flex;
    flex-wrap: wrap;
}

.plan-card-three .plan-list li {
    display: block;
    width: 50%;
    text-align: center;
    padding: 28px 5px;
    border-bottom: 1px solid var(--color-primary);
    color: #8292ac;
    text-transform: uppercase;
    line-height: normal;
    font-size: 12px;
    background: #735da517;
}

.plan-card-three .plan-list li span {
    display: block;
    font-size: 14px;
    color: #476475;
    font-weight: 600;
    text-transform: none;
}

.plan-card-three .plan-list li:nth-child(2n) {
    border-left: 1px solid var(--color-primary);
}

.plan-card-three .plan-btn {
    background: #735da517;
    margin: 0px 20px;
    padding: 20px;
    text-align: center;
}

.nav-item {
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    /* background: #735da512; */
    border-radius: 4px;
}

.nav-links {
    background: unset;
    border: 1px solid var(--color-primary);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--color-primary);
}

.nav-links.active {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--color-white);
}


/*====plan three css===*/

.pricing-section.three {
    background: #735da517;
}

.plan-card-four {
    background: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    height: 100%;
}

.plan-card-four .heading {
    width: 100%;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
}

.plan-card-four .heading h4 {
    margin: 0 auto;
    background: #111;
    position: absolute;
    min-width: 250px;
    padding: 10px 15px 10px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    left: 50%;
    transform: translate(-50%);
}

.plan-card-four .heading h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #111 transparent transparent #111;
    border-width: 7px;
}

.price-box-3 {
    display: flex;
    align-items: start;
    gap: 40px;
    justify-content: center;
    padding: 53px 0 37px;
}

.price-box-3 {
    border-bottom: #e5e5e5 2px solid;
}

.price-box-3 p {
    font-size: 18px;
    color: #7c7c7c;
    margin: 0 0 14px 5px;
}

.price-box-3 h3 {
    color: #111;
    font-size: 42px;
    margin: -18px 0 0;
    padding: 0;
    position: relative;
}

.plan-card-three-list {
    padding: 26px 39px 15px 43px;
}

.plan-card-three-list ul li {
    display: block;
    font-size: 13px;
    border-bottom: #858585 1px dotted;
    padding: 0 0 11px 26px;
    margin-bottom: 11px;
    position: relative;
}

.plan-card-three-list ul li span {
    font-size: 13px;
    color: #111;
    font-weight: 700;
}

.plan-card-three-list ul li::after {
    content: "\F7D2";
    font-family: "bootstrap-icons";
    font-weight: 900;
    font-size: 16px;
    color: #111;
    position: absolute;
    top: 0;
    left: 0;
}

.r-access {
    font-size: 16px;
    color: #111;
    background: #fafaf5;
    border-bottom: #e8e7e7 1px solid;
    padding: 18px 0 22px;
}

.r-access span {
    color: #db1a21;
    font-weight: 600;
    border-bottom: #db1a21 dashed 1px;
}


.plan-card-four.heading {
    padding: 30px;
}

.plan-card-four.heading .plan-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.plan-card-four.heading .plan-content img {
    max-width: 50px;
    min-width: 50px;
}

.plan-card-four.heading .text h5 {
    display: block;
    color: #331f1f;
    font-size: 16px;
}

.plan-card-four.heading .text span {
    color: #463131;
    font-size: 14px;
}

.plan-card-four.card .price-box-3 {
    border-bottom: unset;
}

.plan-card-three-list.tab {
    padding: 0;
}

.plan-card-three-list.tab ul li::after {
    content: unset;
}

.plan-card-three-list.tab ul li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0 10px 0 10px;
    height: 60px;
    border-top: 1px solid #f1dbdc;
    transition: var(--transition);
    margin: 0;
    border-bottom: unset;
    gap: 15px;
}

.plan-card-three-list.tab ul li span img {
    width: 26px;
}

.plan-card-three-list.tab ul li .hover-data {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    width: 263px;
    background: rgba(255, 255, 255, .91);
    border-radius: 3px;
    border: 1px solid #ec898a;
    padding: 10px;
    z-index: 4;
}

.plan-card-three-list.tab ul li:hover .hover-data {
    visibility: visible;
    opacity: 1;
}

.plan-card-three-list.tab ul li:hover .hover-data {
    display: block;
}

.plan-card-three-list.tab ul li .hover-data::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    margin: auto;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, .91);
    left: 0;
    right: 0;
    top: -19px;
}

.plan-card-three-list.tab ul li .hover-data::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    margin: auto;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #ec898a;
    left: 0;
    right: 0;
    top: -20px;
}

.ic-box img {
    min-width: 26px;
}


.country-img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.country-img li {
    padding: 0 !important;
    border-bottom: unset !important;
}

.country-img li img {
    width: 27px;
    height: 27px;
    margin-bottom: 0 !important;
}

.country-img li::after {
    content: unset !important;
}

.second-table {
    display: none;
    overflow-y: hidden;
}

.plan-table-button button {
    width: fit-content;
    background: unset;
    color: var(--color-primary);
    border: unset;
}

.second-table .table-design-new {
    width: 100%;
    margin-top: -1px;
}

.plan-feature-head {
    display: flex;
    justify-content: space-between;
}

.table-design-new {
    margin-bottom: 0;
}

.table-design-new tr td.label-head {
    justify-content: flex-start;
    text-align: left;
    background: #fff;
    border-color: #f8e5e5;
    color: #5c4c4c;
    font-size: 18px;
    font-weight: 600;
    width: 394px;
}

.table-design-new tr td {
    border-left: 1px solid #f1dbdc;
    border-top: 1px solid #f1dbdc;
    border-bottom: 1px solid #f1dbdc;
    padding: 10px;
}


.table-design-new tr td {
    position: relative
}

.table-design-new tr td .hover-data {
    position: absolute;
    display: none;
    top: 47px;
    left: 0;
    right: 0;
    margin: auto;
    width: 264px;
    background: rgba(255, 255, 255, .91);
    border-radius: 3px;
    border: 1px solid #ec898a;
    padding: 10px 15px;
    z-index: 4;
}

.table-design-new tr td:hover .hover-data {
    display: block
}

.table-design-new tr td .hover-data h5 {
    text-transform: uppercase;
    color: #bf1a1b;
    font-size: 16px;
}

.table-design-new tr td .hover-data p {
    color: #322e2e;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500
}

@media screen and (max-width:767px) {
    .table-design-new tr td .hover-data {
        top: 39px
    }
}

.hosting-features-heading {
    padding: 0 !important;
}

.hosting-features-heading>span {
    flex: 1 0 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 64px;
    border-image: initial;
    border-bottom: none;
    justify-content: space-between !important;
    padding: 0 44px !important;
    background: #fff !important;
}

.hosting-features-heading>span h5 {
    margin: 0;
    font-size: 18px;
    color: #b80304;
    font-weight: 500
}

.hosting-features-heading>span span {
    display: inline-block;
}

.bi.bi-x {
    font-size: 25px;
}

.bi.bi-check-lg {
    font-size: 25px;
    color: var(--color-primary);
}


.icon.steps img {
    background: var(--color-primary);
    padding: 15px;
    border-radius: 4px;
}

.bg-primary {
    background: #735da517 !important;
}

.plan-logo {
    position: relative;
    top: 6%;
}



.about-company {
    width: auto;
    border: 1px #bbb dashed;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 18px;
    line-height: 26px;
    background: var(--color-white);
}

.about-company h4 {
    font-size: 25px;
    border-bottom: 1px solid var(--color-primary);
    width: fit-content;
    padding-bottom: 5px;
}

.about-company p {
    font-size: 16px;
    font-weight: 400;
}

.address {
    line-height: 30px;
}

.time-zone {
    border: 1px solid #17523a;
    background-color: #735da5;
    color: #fff;
    border-radius: 2px;
    padding: 10px;
    width: fit-content;
    margin-top: 20px;
}

.working-day {
    font-size: 15px;
    line-height: 33px;
}





.thumbnail img {
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail img:hover {
    opacity: 0.7;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 999px;
}


#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


.close {
    position: absolute;
    top: 19px;
    right: 190px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.modal-content img,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}


.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.tabings .tabs.column-type {
    flex-direction: column;
}

.tabings .tabs.column-type .tabbutton {
    padding: 13px 20px;
    color: #333333;
    border: 1px solid;
    text-align: left;
    font-size: 15px;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    width: 100%;
    border-bottom: unset;
    border-color: #e8e8e8;
}

.tabings .tabs.column-type .tabbutton:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.tabings .tabs.column-type .tabbutton i {
    margin-right: 10px;
}

[dir="rtl"] .tabings .tabs.column-type .tabbutton i {
    margin-right: unset;
    margin-left: 10px;

}


.tabings .tabs.column-type .tabbutton.active {
    color: var(--color-white);
    background: var(--color-primary);
}

.tabscontents {
    display: none;
}

.tabscontents.active {
    display: block;
}

.tabscontents.terms-content h3 {
    font-size: 30px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.plan-table-compare div,
.plan-table-compare div:hover {
    display: inline-block;
    margin: 0 0 52px 36px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    border-bottom: solid 1px rgba(0, 0, 0, .2);
    position: relative;
    cursor: pointer;
}

.plan-table-compare div::after,
.plan-table-compare div:hover::after {
    display: block;
    width: 25px;
    height: 25px;
    content: " ";
    font-size: 1px;
    line-height: 1px;
    background: url('../img/plan-table-compare.png') no-repeat;
    position: absolute;
    left: -36px;
    top: 0;
}





.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    z-index: 999;
}


.modal-content {
    background-color: #fefefe;
    padding: 50px 40px;
    border: 1px solid #888;
    width: 100%;
    max-width: 999px;
}


.close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


table {
    width: 100%;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid var(--color-primary);
}

th,
td {
    padding: 10px;
    text-align: left;
}

.modal-content tr:first-child th {
    background-color: #f2f2f2;
}

.modal-content tr:nth-child(even) {
    background-color: #ecebeb;
}

.modal-content tr:nth-child(odd) {
    background-color: #fff;
}

#myModal .modal-content .close {
    position: absolute;
    top: 0px;
    right: 20px;
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
}


.list-table-opeper {
    position: absolute;
    left: 0;
    bottom: -18px;
    right: 0;
    margin: auto;
    color: #fff !important;
    background: #7f7f7f;
    width: fit-content;
    height: 35px;
    display: block;
    border-radius: 25px;
    font-size: 14px;
    line-height: 35px;
    padding: 0 40px;
    cursor: pointer;
}

.list-table-opeper:after{
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    margin-inline-start: 5px;
    vertical-align: middle;
    transition: all 0.5s;
}

.opened.list-table-opeper:after{
    content: '\f077';
}

.list-table-closer{
    position: relative;
    margin: auto;
    color: #fff !important;
    background: #7f7f7f;
    width: fit-content;
    height: 35px;
    display: block;
    border-radius: 25px;
    font-size: 14px;
    line-height: 35px;
    padding: 0 40px;
    cursor: pointer;
}

.list-table-closer:after{
    content: '\f077';
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    margin-inline-start: 5px;
    vertical-align: middle;
    transition: all 0.5s;
}

.list-feature-table table, .list-feature-table th, .list-feature-table td{
    border: 1px solid #e2e2e2;
  }

.list-feature-table table {
    display:block;
    border: 0;
    box-shadow: 0 0 3px 0 #f7f7f7;
  }
  
  .list-feature-table table tr:nth-child(odd) {
    background:#f9f9f9
  }
  .list-feature-table table tr:first-child {
    background:#fff
  }
  .list-feature-table table tr th {
    border-top:1px solid #e2e2e2;
    border-left:1px solid #e2e2e2;
    padding:0
  }
  .list-feature-table table tr th:first-child {
    vertical-align:top
  }
  .list-feature-table table tr th h2 {
    color: #3e3e3e;
  font-size: 27px;
  padding: 15px 15px;
  font-weight: 300;
  }
  .list-feature-table table tr td {
    border-top:1px solid #e2e2e2;
    border-left:1px solid #e2e2e2;
    padding:0
  }
  .list-feature-table table tr td:first-child {
    background:#fff
  }
  .list-feature-table table tr td>h6 {
    font-size:14px;
    color:#413939;
    font-weight:600;
    padding:8px 20px;
    margin-top: 10px;
  margin-bottom: 10px;
  }
  .list-feature-table table tr td>h6 span {
    color:#db1b21
  }
  .list-feature-table table tr td>p {
    font-size:14px;
    color:#716464;
    text-align:center;
    font-weight:400;
    margin-bottom:0;
    padding:8px 20px;
    line-height: 28px;
  }


  .list-feature-table table .nano {
    display:block;
    text-align:center;
    display:block
  }
  .list-feature-table table .mont-price {
    display:block;
    padding:30px 20px 10px;
    border-bottom:1px solid #e2e2e2;
    position:relative;
    font-weight: 500;
  }
  .list-feature-table table .mont-price.pt-sm{
    padding:10px 15px 10px;
  }
  .list-feature-table table .mont-price>p {
    font-size:14px;
    color:#78696a;
    padding:0;
    margin:0
  }
  .list-feature-table table .mont-price>p span {
    font-size:20px;
    color:#514040;
    padding-left:5px;
    padding:0;
    margin:0
  }
  @media (max-width:767px) {
    .list-feature-table table .mont-price>p span {
        display: block;
      }
  }
  .list-feature-table table span.nano-head {
    display:block;
    width:60%;
    background:#999;
    position:absolute;
    left:0;
    right:0;
    top:-15px;
    margin:auto;
    font-size:18px;
    color:#fff;
    font-weight:400;
    padding-top:5px;
    padding-bottom:5px;
    z-index:10000
  }
  .list-feature-table table span.nano-head2 {
    display:block;
    width:60%;
    background:#6f6f6f;
    position:absolute;
    left:0;
    right:0;
    top:-15px;
    margin:auto;
    font-size:18px;
    color:#fff;
    font-weight:400;
    padding-top:5px;
    padding-bottom:5px;
    z-index:10000
  }
  .list-feature-table table span.nano-head3 {
    display:block;
    width:60%;
    background:#494949;
    position:absolute;
    left:0;
    right:0;
    top:-15px;
    margin:auto;
    font-size:18px;
    color:#fff;
    font-weight:400;
    padding-top:5px;
    padding-bottom:5px;
    border-radius:16px 0;
    z-index:10000
  }
  .list-feature-table table span.nano-head:after {
    content:'';
    width:0;
    height:0;
    border-style:solid;
    border-color:transparent transparent transparent #999;
    border-width:10px;
    position:absolute;
    top:0;
    bottom:-25px;
    left:0;
    margin:auto
  }
  .list-feature-table table .order-block {
    display:block;
    padding:0 50px 15px
  }
  .list-feature-table table .order-block a {
    display:block;
    background: var(--color-primary);
    width:143px;
    height:35px;
    margin:auto;
    color:#fff;
    font-size:14px;
    font-weight:400;
    text-align:center;
    line-height:35px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    margin-top:15px;
    margin-bottom:10px;
    transition: all 0.3s;
  }
  .list-feature-table table .order-block a:hover {
    background: var(--color-secondary);
    color:#fff
  }
  .list-feature-table table .order-block>p {
    margin:0;
    padding:0
  }
  .list-feature-table table .order-block h3 {
    margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 400;
  }
  .list-feature-table table span.tick {
    display:block
  }
  .list-feature-table table span.tick img {
    margin:auto;
    display: block;
  }
  
  
.tabs{
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs .tabbtn {
    padding: 8px 20px;
    color: #735da5;
    border-radius: 0;
    border: 1px solid #c1a8ff;
    cursor: pointer;
    transition: all 0.5s;
    display: inherit;
    align-items: center;
}

.tabs .tabbtn:first-child{
    border-radius: 4px 0px 0px 4px;
}

.tabs .tabbtn:last-child{
    border-radius: 0px 4px 4px 0px;
}

.tabs .tabbtn img{
    margin-inline-end: 10px;
}

 .tabs .tabbtn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
