.wrapper {
    max-width: 1600px;
    width: 100%;
    padding: 0 10px;
}

.smallWrapper {
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
}

.error_wrapper {
    max-width: 650px;
    width: 100%;
    padding: 0 10px;
}

.vertical_margin {
    padding-top: 120px;
}

.vertical_space {
    padding-top: 60px;
}

.body {
    width: 100%;
    overflow-x: auto;
}

/******** hamburger css start *********/

.desktopLogo {
    display: block;
}

.mobileLogo {
    display: none;
}

.NavItem_wrap {
    position: relative;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    gap: 6px;
    align-items: center;
}

.NavItem_wrap.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--blue-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.NavItem_wrap:hover::after {
    transform: scaleX(1);
}

.NavItem_wrap.active::after {
    transform: scaleX(1);
}

.host-header {
    background: var(--white-color);
    display: flex;
    justify-content: center;
    transition: box-shadow .3s ease;
    padding: 20px 0;
    position: relative;
    z-index: 999;
}

.host-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    box-shadow: 0 4px 10px rgba(72, 143, 236, 0.1);
    padding: 20px 0;
}

.header-placeholder {
    height: 75px;
}

.host-header.sticky+.header-placeholder {
    display: block;
}

.header-innerChild {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.np-nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.np-nav-menu>li>a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
}

.np-nav-menu>li>a i {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 18px;
}

.np-nav-menu.gpuNavMenu>li>a i {
    color: #818181;
    font-weight: 500;
    font-size: 18px;
}

.host-header.Gpuhost-header .hamburger-inner,
.host-header.Gpuhost-header .hamburger-inner::before,
.host-header.Gpuhost-header .hamburger-inner::after {
    background-color: #fff;
}

.host-header.Gpuhost-header .hamburger.is-active .hamburger-inner,
.host-header.Gpuhost-header .hamburger.is-active .hamburger-inner::before,
.host-header.Gpuhost-header .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.Gpu-logodesktop {
    display: block;
}

.Gpu-logomobile {
    display: none;
}

.NavItem_wrap.Blue_color {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.NavItem_wrap.Blue_color img {
    vertical-align: baseline;
    height: 20px;
    width: 20px;
}

.navigationmenu {
    display: flex;
    gap: 3rem;
}

.referBut {
    color: var(--blue-color);
    font-weight: 600;
    text-decoration: underline !important;
}

.loginBut {
    color: var(--white-color);
    padding: 9px 30px;
    border-radius: 15px;
    background: var(--blue-color);
}

.AuthBut {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hamburger {
    position: absolute;
    right: 0%;
    top: 0%;
    transform: translate(0, 50%);
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 999;
    transition: .5s;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger.is-active:hover {
    opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--secondary-color);
}

.hamburger-box {
    width: 30px;
    height: 17px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
    top: 3px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 6px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 12px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

.hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

.np-auth {
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-auth {
    display: flex;
}

.mobile-auth {
    display: none;
}

/**** dropdown start ****/

.dropdown {
    position: relative;
}

.dropMenu a:last-child {
    border-bottom: none;
}

.dropMenuTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 20px;
    text-align: center;
    padding: 22px 0;
    background-color: #F3F5FF;
}

.dropMenuSubtitle {
    font-size: 14px;
    line-height: 20px;
    color: var(--secondary-color);
    text-align: center;
    padding: 15px 0;
}

.dropMenuColumns {
    display: flex;
    justify-content: space-around;
}

.columnTitle {
    font-size: 14px;
    font-weight: 600;
    color: #5429D4;
    line-height: 20px;
}

.dropmenu_TextInn {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 20px;
    width: 100%;
    display: block;
    padding: .8rem 0;
}

.dropdown-content {
    position: fixed;
    top: 77px;
    left: 50%;
    transform: translateX(-50%);
    width: 1300px;
    display: none;
    z-index: 999;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.dropmenu_TextInn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.websuite-right {
    display: flex;
    gap: 50px;
}

.websuite-left-img {
    display: flex;
    justify-content: center;
}

.websuite-rightInn {
    width: calc(50% - 25px);
}

.websuite-dropdown {
    display: flex;
}

.websuite-left {
    width: 30%;
    background: #EFF1FF;
    padding: 25px;
}

.websuite-left_title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
    text-align: center;
}

.websuite-left_subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #102D51;
    text-align: center;
    padding: 0 15px;
}

.websuite-right {
    width: 70%;
    padding: 15px 0 0;
    background-color: #fff;
}

.protect_Title {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: var(--secondary-color);
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.protect_para {
    font-size: 14px;
    color: #102D51;
    line-height: 20px;
    margin-top: 5px;
}

.websuite-sectionTitle {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--blue-color);
    font-weight: 600;
    line-height: 20px;
    padding-left: 30px;
}

.websuite-service {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.websuite-service:hover {
    background-color: #F3F4FF;
}

.dropMenu_BottomInn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropMenu_Bottom {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    gap: 75px;
}

.dropMenu_BottomInn_Txt {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--secondary-color);
}

.dropMenu_BottomInn_Txt:hover {
    color: var(--blue-color);
}

.dropMenu_BottomInn img {
    width: 30px;
    height: 30px;
}

.background_Tag {
    color: #16181d;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-left: 10px;
}

.protect_Title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #2A7FFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

.websuite-service:hover .protect_Title::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* On mouse leave, animate out from right to left */

.websuite-service:not(:hover) .protect_Title::after {
    transform: scaleX(0);
    transform-origin: right;
}

.dropMenu {
    background-color: var(--white-color);
    border-bottom: 1px solid #DBDBDB
}

.websuite-left img {
    padding-bottom: 5px;
}

.websuite-service img {
    width: 50px;
    height: 50px;
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/**** dropdown end ****/

.GifIconImg {
    width: 45px;
    height: 45px;
}

.menuContactColor {
    font-weight: 400;
    color: var(--blue-color);
    font-size: 16px;
}

.dropMenu_BottomInn_Txt.Number:hover {
    color: var(--secondary-color);
}

.navItem_wrap .fa-angle-down {
    transition: transform 0.3s ease, color 0.3s ease;
    color: inherit;
}

.active-dropdown .fa-angle-down {
    transform: rotate(180deg);
    color: #007bff;
}

.menu-Bg-Green {
    background-color: #A8E6A1;
}

.menu-Bg-orange {
    background-color: #FFD9B3;
}

.menu-Bg-blue {
    background-color: #99E6E6;
}

.menu-Bg-violet {
    background-color: #D3C3F2;
}

/******** hamburger css end *********/

/* section one css */

.banner_Out {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.cheapHostInn {
    color: var(--blue-color);
    font-weight: 500;
    padding: 10px 15px;
    background-color: #EFF1FF;
    border-radius: 10px;
    display: inline;
    font-size: 16px;
}

.LftBanner_heading {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--secondary-color);
}

.LftBanner_Subheading {
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 20px;
    line-height: 22px;
}

.LftBanner_Subheading span {
    font-weight: 600;
    color: var(--secondary-color);
}

.LftBannerTxt {
    margin: 20px 0 30px;
    display: block;
}

.banner_Inn_desktop {
    display: flex;
    align-items: center;
}

.banner_Inn_mobile {
    display: none;
}

.BannerBut_primary.first {
    margin-right: 20px;
}

.BannerBut_Out {
    display: flex;
}

.rating {
    display: flex;
    align-items: center;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 18px;
    cursor: pointer;
    color: #F1C20E;
}

.rating input:checked~label {
    color: #F1C20E;
}

.rating_Out {
    margin-top: 40px;
}

.rating_Number {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 25px;
}

.rating_Wrap {
    position: relative;
    padding-right: 40px;
    margin-right: 40px;
}

.rating_List {
    display: flex;
    align-items: center;
}

.rating_Wrap:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ccc;
    line-height: 1;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #F1C20E;
    font-size: 18px;
}

.stars-outer::before,
.stars-inner::before {
    content: "★★★★★";
}

.BannerBut_primary {
    border: 1px solid var(--blue-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--blue-color);
}

.BannerBut_secondary {
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    background-color: transparent;
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.BannerBut_primary:hover,
.BannerBut_secondary:hover {
    transform: translateY(-4px);
}

.BannerBut_primary.green_but:hover {
    background-color: #00B67A;
    color: white;
    border: 1px solid #00B67A;
    outline: none;
}

.section_one_List_Out {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
    border-radius: 10px;
    gap: 20px;
    position: relative;
    cursor: pointer;
    height: 100px;
}

.section_one_List_Out:hover {
    background-color: #F3F5FF;
}

.section_one_slider {
    display: flex;
    justify-content: center;
    background-size: contain;
}

.section_one_slider_wrap {
    margin-top: 40px;
}

.section_one_List_Out:hover::after {
    background: url("/assets/images/blue_right_arrow.svg") no-repeat center center;
    background-size: contain;
}

.one_list_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.one_list_subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--secondary-color);
}

.banner_Rgt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.banner_Lft {
    width: 60%;
    padding-right: 10rem;
}

.flip-card-back {
    position: relative;
    text-align: center;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    height: 120px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    background-color: var(--white-color);
}

.flip-card-front {
    color: black;
    height: 100px;
    border-radius: 20px;
    border: 1px solid #DBDBDB;
}

.flip-card-back {
    color: var(--black-color);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    box-sizing: border-box;
    border-radius: 20px;
    height: 100px;
    border: 1px solid #DBDBDB;
}

.flip-card {
    width: 100%;
    perspective: 1000px;
}

.flip-card-backPara {
    color: var(--secondary-color);
}

.section_one_slider_wrap {
    margin-top: 75px;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.section_one_slider_wrap li {
    margin: 0 15px;
}

.blue_dot {
    color: var(--blue-color);
    font-weight: 600;
    font-size: 18px;
}

.section_two_TitleSec img {
    margin-top: 15px;
}

/* section Two */

.section_two_Out {
    display: flex;
    justify-content: center;
}

.new_margin {
    margin-top: 100px;
}

.section_two_Title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #000845;
    text-align: center;
    z-index: 99;
}

.section_two_TitleSec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.section_two_SubTitle {
    text-align: center;
}

.section_two_SubTitle_Main {
    display: inline-block;
    justify-content: center;
    display: flex;
}

.section_two_SubTitle {
    width: 580px;
    padding: 35px 40px;
    background-color: #EFF1FF;
    text-align: center;
    border-radius: 20px;
    margin-top: -25px;
    margin-left: 19%;
    color: var(--secondary-color);
}

.Plan_price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 82px;
    position: relative;
    overflow: visible;
}

.priceCardList {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.priceCardList .priceCardList_li {
    width: calc(33.33% - 25px);
    float: left;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--white-color);
    z-index: 99;
    margin-right: 45px;
    border: 1px solid #E3E3E3;
}

.priceCardList .priceCardList_li:last-child {
    margin-right: 0px;
}

.priceCardList .priceCardList_li:hover .planButInn {
    background: var(--blue-color);
    color: var(--white-color);
}

.CardTitle {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    color: #102D51;
    margin-bottom: 7px;
}

.priceSave {
    position: relative;
}

.priceSaveTxt {
    position: absolute;
    left: -25px;
    padding: 0 5px;
    width: 105px;
    height: 29px;
    background-color: #00B67A;
    clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    top: 10px;
}

.priceSaveTxtSpan {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    background: transparent;
}

.priceOld {
    font-size: 26px;
    color: #102D51;
    text-align: center;
    font-weight: 400;
    text-decoration: line-through;
}

.priceNew {
    font-size: 44px;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
}

.priceNewSpan {
    font-size: 30px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 400;
}

.planBut {
    display: block;
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.priceCardList_li.middle_Card {
    border: 1px solid #C8DEFF;
}

.priceCardList .priceCardList_li:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(42, 127, 255, 0.3);
    position: relative;
    z-index: 100 !important;
    border: 1px solid #C8DEFF;
}

.BuyHostTxt2 {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--blue-color);
    margin-top: 12px;
}

.BuyHostTxt {
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: #102D51;
}

.PriceNumber {
    margin-top: 10px;
}

.Key_Features {
    font-size: 18px;
    font-weight: 700;
    color: #102D51;
}

.HostFeature {
    border-top: 1px solid #e3e3e3;
    padding-top: 32px;
    margin-top: 21px;
}

.HostFeatureList_wrap {
    font-size: 15px;
    position: relative;
    padding: 0;
    border: none;
    padding-left: 35px;
    margin-top: 15px;
    width: 100%;
    float: left;
    font-weight: 400;
    box-shadow: none !important;
    transition: none !important;
    color: var(--secondary-color);
    border-color: transparent;
    box-shadow: none;
    padding-right: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    line-height: 1.4;
}

.HostFeatureList_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    background-image: url('/assets/images/icon/card-price-thumbnail.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.bestSeller {
    position: relative;
}

.best_sellerInn {
    position: absolute;
    right: -25px;
    top: -25px;
    border-radius: 5px;
    padding: 5px;
    background-color: #FAB522;
    color: white;
    font-size: 12px;
    font-weight: 400;
}

.CardTitleMain {
    margin-bottom: 15px;
}

.slick-list {
    overflow: visible;
}

.priceCardtooltip-box {
    background-color: var(--blue-color);
    color: var(--white-color);
    padding: 10px 20px;
    position: relative;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    border-radius: 20px 20px 0 0;
}

.priceCardtooltip-box::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--blue-color);
}

.priceCardList_wrap {
    padding: 25px;
}

.info-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 6px;
}

.info-icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
    vertical-align: middle;
}

.tooltip-text {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    display: none;
    background: #3B60FF;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    white-space: normal;
    line-height: 1.4;
    margin-top: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 180px;
}

/* section Three */

.secThree_Inn {
    background-color: #EFF1FF;
    padding: 75px 65px;
    border-radius: 35px;
}

.secThree_Out {
    display: flex;
    justify-content: center;
    align-items: center;
}

.secThree_Content {
    display: flex;
    justify-content: flex-start;
    gap: 43px;
    align-items: center;
}

.secThree_Content_Rgt img {
    width: 100%;
}

.secThree_Content_Rgt {
    width: calc(42% - 30px);
}

.secThree_Content_Lft {
    width: calc(58% - 30px);
}

.Exprt_contentListInn {
    display: flex;
    align-items: center;
    gap: 17px;
}

.Exprt_contentListInn {
    display: flex;
    border: 1px solid #102D51;
    border-radius: 10px;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    gap: 15px;
    flex-wrap: wrap;
    background-color: #fff;
}

.Export_Content-changeTil {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 30px;
    letter-spacing: 1.6px;
    line-height: 40px;
}

.Exprt_contentListWrap {
    width: calc(33.33% - 15px);
}

.featureImgTick {
    width: 15%;
}

.featureTxtTick {
    width: 85%;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featureTxtTick {
    font-weight: 500;
    color: #102D51;
    font-size: 16px;
}

.feature_List {
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 16px;
    width: 100%;
}

.Export_ContentTitle {
    padding: 20px 0 0px;
}

.Export_ContentTitleInn {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.Export_ContentSubTitle {
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 25px;
    line-height: 23px;
}

.ExportBut {
    margin-top: 70px;
}

.ExportBut_smallSpace {
    margin-top: 30px;
}

/* section client Buzz */

.clientBuzz {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-box {
    padding: 20px;
    border: 1px solid #102D51;
    border-radius: 20px;
    background: #fff;
    width: 300px;
}

.client-box-head {
    font-size: 32px;
    font-weight: 600;
    color: #102D51;
    text-align: center;
}

.client-box-para {
    color: var(--secondary-color);
    margin-top: 10px;
    text-align: center;
}

.client-logos img {
    width: 150px;
    height: auto;
}

.clientBuzzInn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.view-all {
    font-weight: 600;
    color: var(--blue-color);
    text-decoration: underline !important;
}

.client-logoImg {
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.client-slider {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
}

.section_one_slider_wrap.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

/* Global Hosting */

.global_Hosting {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_two_Title img {
    margin-top: 10px;
}

.DomainBlock {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Domain-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #FBF8D5;
    padding: 50px;
    border-radius: 35px;
    text-align: left;
    gap: 40px;
}

.benefit_List {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}

.CheckIcon {
    width: 30px;
    height: 30px;
}

.content-div_heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.content-div_para {
    color: var(--secondary-color);
    padding-top: 10px;
    line-height: 23px;
}

.benefit_List {
    margin-top: 36px;
}

.benefit_List:first-child {
    margin-top: 0px;
}

/* domain search section */

.Search_Domain {
    display: flex;
    justify-content: center;
}

.domain-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.domain-search-box-footer {
    display: flex;
    gap: 10px;
}

.domainsearch {
    padding: 12px;
    border: 1px solid var(--white-color);
    border-radius: 10px;
    width: 425px;
    max-width: 600px;
    color: var(--secondary-color);
    font-size: 16px;
}

.domainsearch::placeholder {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 16px;
}

.search-btn {
    background-color: #5429D4;
    font-size: 18px;
    padding: 10px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
}

.search-btn.transperant {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.search-btn.transperant:hover {
    transform: translateY(-4px);
}

.green_but {
    background-color: #00B67A;
    color: white;
    border: 1px solid #00B67A;
    outline: none;
}

.green_but:hover {
    transform: translateY(-4px);
}

.domain-heading img {
    width: 360px;
    max-width: 500px;
}

.domain-search-contentTitle {
    font-size: 44px;
    margin-bottom: 34px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.domain-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hosting_services {
    display: flex;
    justify-content: center;
}

.service-box {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #DBDBDB;
    transform-origin: top;
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out;
    transform-origin: bottom;
    transform-origin: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.service-box:hover {
    box-shadow: 0 2px 5px 5px rgb(236, 238, 253);
    border: none;
    transform: translateY(-4px);
    border: 1px solid transparent;
}

.service-box img {
    margin-bottom: 30px;
}

.service-box .service-box-head {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.hover-content {
    margin-top: 10px;
    padding: 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #102D51;
}

p.hover-content {
    padding: 0;
}

.service-box .description {
    font-size: 17px;
    color: var(--blue-color);
    font-weight: 600;
    margin-top: 23px;
}

.service-box .service-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
    color: var(--blue-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.hosting_service_List {
    display: flex;
    gap: 30px;
    display: flex;
    margin-top: 70px;
    gap: 30px;
    justify-content: center;
}

.hosting_service_Wrap {
    width: calc(33.33% - 20px);
    display: flex;
}

.ExportBut.center {
    display: flex;
    justify-content: center;
}

.host_serviceColor {
    background-color: #EFF1FF;
    border: 1px solid transparent;
}

/* FAQ Section */

.FaqSec_Out {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq_questn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq_questn_List {
    width: 970px;
    margin-top: 40px;
}

.faq_questn_card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 8px 0;
}

.faq_questn_Txt_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq_questn_Txt_Para {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 22px;
    margin-top: 17px;
    padding-bottom: 26px;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 26px;
}

.Get_start_footerInn {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-radius: 10px;
}

.Get-start-img {
    width: calc(40% - 25px);
    background-color: #2A7FFF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.Get-start-content {
    width: calc(60% - 25px);
    background-color: #2A7FFF;
    padding: 50px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-startedBut {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.Get-start-contentTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 1.6px;
    text-align: center;
    margin-bottom: 25px;
}

.Get-start-contentTitle span {
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: 1.6px;
    text-align: center;
    line-height: 43px;
}

.getStartAbs {
    position: absolute;
    left: -28%;
    top: 50%;
}

.Get-start-contentTitle {
    font-weight: 600;
}

.PhoneGif {
    width: 45px;
    height: 45px;
}

.bestOfferBadge {
    position: absolute;
    right: -9px;
    top: -6px;
}

.bestOfferBadge img {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: auto;
}

.dropbtn.active-dropdown {
    color: #2A7FFF;
    font-weight: 600;
}

/* footer */

.Footer_Inn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background: linear-gradient(to bottom, #eceefd33, #ECEEFD);
}

.footer-container {
    padding: 15px;
    padding-top: 70px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff2b;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-head.gap {
    margin-top: 50px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column .footer-head {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white-color);
    font-weight: 600;
}

.footer-column ul li a {
    text-decoration: none;
    color: #DBDBDB;
    transition: color 0.3s;
    line-height: 30px;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    max-width: 40%;
}

.footer-brand p {
    line-height: 23px;
    color: #DBDBDB;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-social h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Social Media Icons */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-color);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-icons img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

/* Hover effect */

.social-icons a:hover {
    transform: scale(1.1);
    transform: translateY(-4px);
}

.payment-methods {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.payment-methods img {
    width: 50px;
}

.copyright p {
    background-color: #00183C;
    color: #6B90C7;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    padding-top: 15px;
    font-weight: 500;
    line-height: 24px;
}

.home-ul {
    max-width: 600px;
}

.home-ul-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.home-ul-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.home-ul-list img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.footer-social_head {
    line-height: 35px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
}

.viewLink {
    color: var(--blue-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.footer-brand-mobile {
    display: none;
}

/*.copyright{background-color: var(--secondary-color);}*/

.Footer_Out {
    background-color: #00183C;
}

/* section seven */

.testimonial-section {
    text-align: center;
    padding: 0px 0px 0px 20px;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
    align-items: center;
    margin-top: 40px;
}

.left-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
}

.custom-prev {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.custom-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.testimonial-slider {
    width: 1240px;
    overflow: hidden;
}

.testimonial-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-right: 24px;
    position: relative;
}

.testimonial-card:last-child {
    margin-right: 0;
}

.testimonial-img {
    position: relative;
}

.testimonial-img img {
    width: 100%;
    display: block;
    background: transparent;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    padding: 10px;
    background-color: transparent;
    cursor: pointer;
}

.testimonial_name {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    padding-top: 26px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.video-modal-content {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/*.overlay-white {position: relative;}  */

/*.overlay-white::after {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(255, 255, 255, 0.7);z-index: 2;*/

/*pointer-events: none;border-radius: 10px;}*/

.custom-prev.disabled,
.custom-next.disabled {
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
}

.custom-prev,
.custom-next {
    transition: filter 0.3s ease, color 0.3s ease;
}

.client-logos .slick-prev {
    z-index: 1;
    background: url("/assets/images/icon/client-buzz.svg") no-repeat center center !important;
    background-size: contain !important;
    color: transparent;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 0;
    position: absolute;
    left: -40px !important;
    top: 70%;
    transform: translateY(-50%);
    display: block !important;
    width: 25px;
    height: 25px;
    z-index: 99;
}

.client-logos .slick-prev {
    left: -40px;
}

.client-logos .slick-next {
    display: none !important;
}

.client-logos .slick-list.draggable {
    overflow: hidden;
}

.heading_Domain.global_host {
    width: 35%;
}

.heading_Domain.global_host img {
    width: 100%;
}

.benefits-list {
    width: 65%;
}

.change_domain-search-contain_Out {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.chnage_domainLft {
    width: calc(40% - 55px);
    padding: 30px;
    background-color: #DEF7EA;
    border-radius: 20px;
}

.chnage_domainRgt {
    width: calc(60% - 55px);
    background-color: #DEF7EA;
    padding: 30px 0px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change_Search_Domain {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Global_ImgGlobeLft {
    width: calc(45% - 25px);
}

.Global_ImgGlobeRgt {
    width: calc(55% - 25px);
    background-color: #2A7FFF;
    padding: 0 80px;
    display: flex;
    align-items: center;
    border-radius: 35px;
}

.GlobeRgt_textTitle {
    font-size: 32px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1.6px;
}

.GlobeRgt_subTitle {
    color: var(--white-color);
    font-weight: 400;
    line-height: 24px;
}

.Global_ImgGlobeLft img {
    width: 100%;
}

.Global_Img {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    gap: 50px;
    flex-wrap: wrap;
}

.Global_ImgGlobeRgt {
    position: relative;
}

.Export_ContentTitleInn.globe {
    color: var(--white-color);
}

.feature_List.globe {
    color: var(--white-color);
}

.location-counter-box {
    position: absolute;
    top: -55px;
    left: -40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 18px 24px;
    text-align: center;
    width: 140px;
    height: 140px;
    margin: 20px auto;
}

.location-number {
    font-size: 30px;
    font-weight: 800;
    color: #2A7FFF;
}

.location-label {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-top: 5px;
    line-height: 1.3;
}

.progress-ring {
    transform: rotate(-90deg);
    position: absolute;
    top: 10px;
    left: 10px;
}

.progress-ring-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke: #2A7FFF;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
}

.location-counter-content {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-number {
    font-size: 28px;
    font-weight: bold;
    color: #2A7FFF;
}

.location-label {
    font-size: 12px;
    color: #333;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.globe-to-counter-arrow {
    position: absolute;
    left: -18%;
    top: 18%;
}

/************************************************Error_404 **********************************************************/

.Error_Out {
    background: url("/assets/images/error/server_Bg.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 3rem 0 7rem;
}

.Error_topTxt {
    text-align: center;
    font-size: 33px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1.6px;
    color: var(--secondary-color);
    font-family: "Work Sans", sans-serif;
}

.Error_InnWrap {
    top: 0;
    transform: translate(60%, 5%);
}

.Error_topTxtBlue {
    color: var(--blue-color);
    font-size: 33px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 1.6px;
    font-family: "Work Sans", sans-serif;
}

.Error_BottomTxt {
    font-size: 152px;
    font-weight: 900;
    letter-spacing: 1.6px;
    color: var(--secondary-color);
    text-align: center;
    margin: 30% 0 2%;
}

.Home_error_butOut {
    display: flex;
    justify-content: center;
}

.Main_wrapErrorImg img {
    width: 100%;
}

/************************************************Thank You **********************************************************/

.thankyouOne_Out {
    display: flex;
    justify-content: center;
    margin-top: -105px;
    background: url("/assets/images/error/server_Bg.png") no-repeat center center;
    background-size: cover;
    padding-bottom: 200px;
}

.thankyouOne_Img {
    display: flex;
    justify-content: center;
}

.thankyouOne_Inn img {
    width: auto;
}

.thankyouOne_Text {
    text-align: center;
}

.thankyouOne_title {
    font-size: 44px;
    font-weight: 700;
    color: var(--blue-color);
    letter-spacing: 1.5px;
    text-align: center;
}

.thankyouOne_subTitle {
    font-size: 30px;
    font-weight: 700;
    color: #47A806;
    letter-spacing: 1.5px;
}

.thankyouOne_Para {
    font-weight: 500;
    color: var(--secondary-color);
    padding: 5px 0 10px;
}

.thankyouTwo_Out {
    display: flex;
    justify-content: center;
}

.what_next_block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    gap: 20px;
    margin: 30px 0 50px;
}

.what_next_Title {
    font-size: 22px;
    font-weight: 600;
    padding: 30px 0 15px;
    color: var(--secondary-color);
}

.what_next_para {
    font-size: 14px;
    line-height: 19px;
    color: var(--secondary-color);
}

.what_next_blockInn {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    padding: 30px;
}

.thankyouOne_Inn {
    padding-top: 105px;
}

.exciting_revards_Out {
    padding: 25px 50px;
    background-color: #F4F5FE;
    border-radius: 10px;
    position: relative;
}

.exciting_listWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.exciting_boxTxt {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.exciting_revards_subtitle {
    font-size: 30px;
    font-weight: 500;
    color: #102D51;
    letter-spacing: 1.6px;
    text-align: center;
}

.exciting_revards_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 40px 480px;
    justify-items: center;
    padding: 0 60px;
    margin: 60px 0;
}

.exciting_revards_listWrap {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 25px 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 1;
}

.exciting_revards_list li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.exciting_revards_list li:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}

.exciting_revards_list li:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
}

.exciting_revards_listWrap::before {
    position: absolute;
    top: 33%;
    left: 30%;
    left: -37px;
    color: #3B60FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 156px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exciting_revards_list li:nth-child(1)::before {
    content: '1';
}

.exciting_revards_list li:nth-child(2)::before {
    content: '2';
}

.exciting_revards_list li:nth-child(3)::before {
    content: '3';
}

.line-container {
    position: absolute;
    top: 36%;
    left: 27%;
    pointer-events: none;
    z-index: 0;
    width: 60%;
}

.dotted-line {
    width: 100%;
    height: 100%;
    position: absolute;
}

.thankMiddle_but {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.ThankyouLink {
    color: var(--blue-color);
}

.what_next_blockInn {
    width: calc(50% - 20px);
    height: 230px;
}

.Get_start_footer {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

/************************************************Terms and Condition **********************************************************/

.termsAndCon_Img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.termsAndCon_Out {
    display: flex;
    justify-content: center;
    margin-top: -105px;
    background: url(/assets/images/error/server_Bg.png) no-repeat center center;
    background-size: cover;
    padding: 130px 0;
}

.terms_tabbing_Out {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.terms_tab-btn:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.terms_tab-btn:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-right: 1px solid #e3e3e3;
}

.terms_tab-btn {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: var(--white-color);
    color: #102D51;
    transition: all 0.3s ease;
    border: 1px solid #e3e3e3;
    border-right: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.terms_tab-btn.active {
    background-color: #F4F5FE;
    color: var(--blue-color);
    border-bottom: 3px solid #3B60FF;
}

.terms_tab-content {
    display: none;
    margin: 40px 0;
}

.terms_tab-content.active {
    display: block;
}

.terms_hover {
    display: none;
}

.tab-buttons {
    display: flex;
}

.terms_tab-btn.active .terms_tab_img path {
    fill: var(--blue-color)
}

.terms_discription {
    display: flex;
    justify-content: center;
}

.terms_discription_List {
    width: 960px;
}

.terms_discription_ListWrap {
    margin-top: 50px;
}

.terms_discription_head {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue-color);
}

.term_disk_text_Inn {
    color: var(--secondary-color);
    line-height: 24px;
}

.term_disk_text_span {
    font-weight: 600;
    color: var(--secondary-color);
}

.term_disk_text_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 26px;
    color: black;
    line-height: 100%;
    list-style: none;
    position: relative;
    margin-top: 15px;
}

.term_disk_text_wrap::before {
    content: "•";
    font-size: 34px;
    line-height: 1;
    color: black;
    flex-shrink: 0;
    margin-top: -5px;
}

.term_disk_hollow_text_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 26px;
    color: black;
    line-height: 100%;
    list-style: none;
    position: relative;
    margin-top: 15px;
}

.term_disk_hollow_text_wrap::before {
    content: "";
    width: 7px;
    height: 7px;
    background-image: url('/assets/images/error/Ellipse\ 22.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 9px;
}

/******************************************************* Linux shared hosting *****************************************************/

.Linux_shared_benefits_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.Linux_shared_benefits_wrapList {
    width: calc(33.33% - 20px);
    display: flex;
}

.Linux_shared_benefits_wrap_Content {
    padding: 30px 40px;
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid #DBDBDB;
}

.Linux_shared_benefits_Content_head {
    padding: 25px 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.Linux_shared_benefits_Content_para {
    font-size: 15px;
    line-height: 22px;
    color: var(--secondary-color);
}

.Linux_Shared_divider_dotImg {
    margin: 25px 0;
}

.BuyHostTxt.linux_shared {
    height: auto;
}

.addtoCartBut {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.plan_linuxTabbing {
    display: flex;
    justify-content: center;
}

.linux_tab-btn {
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    background-color: #F3F5FF;
    color: var(--secondary-color);
}

.linux_tab-btn.active {
    background-color: transparent;
    border: 1px solid #102D51;
}

.linux_shared_planDiv {
    display: none;
}

.linux_shared_planDiv.active {
    display: block;
}

.plan_linuxTabbing {
    margin-top: 32px;
}

.Linux_shared_control_pannelOut {
    display: flex;
    justify-content: center;
}

.Linux_shared_controlPannel_ListInn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.Linux_shared_controlPannel_ListWrap {
    width: calc(50% - 23px);
    padding: 35px;
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    background-color: var(--white-color);
}

.Linux_shared_controlPannel_ListWrapInn {
    width: 100%;
}

.Linux_shared_controlPannel_ListOut {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.Linux_shared_speedOut {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_GivenInn {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.service_GivenInn:first-child {
    margin-top: 0px;
}

.service_GivenInn_Lft {
    width: calc(35% - 23px);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_GivenInn_Rgt {
    width: calc(65% - 23px);
    border-radius: 20px;
    padding: 55px 100px;
    display: flex;
    align-items: center;
}

.serviceGiven_TxtTitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color)
}

.serviceGiven_TxtPara {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--secondary-color);
    padding: 20px 0 25px;
}

.serviceGiven-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.serviceGiven-points-List {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(50% - 10px);
}

.serviceGiven-points-ListTxt {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    color: var(--secondary-color);
}

.GetStartedTxt {
    color: var(--blue-color);
    font-size: 18px;
    font-weight: 600;
    margin-top: 35px;
    width: 100%;
    float: left;
    position: relative;
}

.GetStartedTxt::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: var(--blue-color);
}

.easyWebsite_handle_LftImg {
    display: flex;
    justify-content: center;
    background-color: #DEF7EA;
    width: calc(50% - 23px);
    padding: 20px;
    border-radius: 20px;
    align-items: center;
}

.hosting_service_List.slick-slider button.slick-prev {
    background: url(/assets/images/arrow_review_left.png) no-repeat center;
    width: 30px;
    left: 0px;
    bottom: 0px;
}

.hosting_service_List.slick-slider button.slick-next {
    background: url(/assets/images/arrow_review_right.png) no-repeat center;
    width: 30px;
    right: 0px;
    bottom: 0px;
}

.section_two_Title.linux {
    text-align: left;
}

.total-security {
    line-height: 30px;
    padding-top: 8px;
}

.priceCardList .slick-slide>div {
    height: 100%;
}

.priceCardInn {
    overflow: visible;
}

.priceCardList .slick-list,
.priceCardList .slick-track {
    overflow: visible !important;
}

.priceCardList {
    overflow: visible;
    position: relative;
    z-index: 1;
}

.priceCardList .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.CheckIconwhite {
    display: none;
}

.viewAll-fetur-Txt {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--blue-color);
    width: 100%;
    float: left;
}

.ExtraFeature {
    display: none;
    margin-top: 10px;
    margin-top: 25px;
    width: 100%;
    float: left;
}

.viewAll-fetur-Txt {
    cursor: pointer;
}

.easyWebsite_handle {
    display: flex;
    justify-content: space-between;
}

.easyWebsite_handle_RgtTxt {
    width: calc(50% - 23px);
}

.easyWebsite-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1.6px;
    text-align: center;
    line-height: 36px;
}

.easyWebsite-titleOut {
    padding: 38px 45px;
    background-color: #EFF1FF;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* windows shared hosting */

.planTabbing_head {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 34px 0 17px;
}

.plan_linuxTabbing.windows_hosting {
    margin: 0px;
}

.HostFeatureList .HostFeatureList_wrap.windows_shared::before {
    background-image: url(/assets/images/icon/cross-card-price-thumbnail.svg);
}

.price_special_feat_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price_special_feat {
    margin-top: 20px;
}

.window_view_feat {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.window_view_feat_txt {
    font-weight: 600;
    color: var(--blue-color);
    text-decoration: underline;
}

.premium_window_share {
    display: flex;
    justify-content: center;
    align-items: center;
}

.window_shared_benefits_wrap_Content {
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #DBDBDB;
}

.window_Web_Globally {
    display: flex;
    justify-content: center;
    align-items: center;
}

.window_Web_GloballyInn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.window_Web_Globally-box {
    padding: 30px 40px;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
    background: var(--white-color);
    width: 370px;
}

.window_Web_Globally-slider {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
}

.window_Web_Globally-box-head {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--secondary-color);
    text-align: center;
}

.window_Web_GloballyCard {
    border-right: 1px solid #E3E3E3;
}

.window_Web_GloballyList {
    display: flex;
    align-items: center;
}

.window_Web_GloballyCardTil {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 7px 0;
    text-align: center;
}

.window_Web_GloballyCardSubT {
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: center;
}

.window_Web_GloballyCard:last-child {
    border-right: none
}

.window_Web_GloballyCardImg {
    display: flex;
    justify-content: center;
}

.IncludedPlanChange {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.section_two_Title.left {
    text-align: left;
}

.windowHost_standOut {
    display: flex;
    justify-content: center;
    align-items: center;
}

.windowHost_standOut_registerImg {
    display: flex;
    justify-content: center;
}

.ExportBut.windowHost {
    margin-top: 18px;
}

.video_slider_Out {
    display: flex;
    justify-content: center;
}

.window_Web_GloballyList .slick-prev {
    z-index: 1;
    background: url(/assets/images/client_buzz.png) no-repeat center center !important;
    background-size: contain !important;
    color: transparent;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 0;
    position: absolute;
    left: -40px !important;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    width: 25px;
    height: 25px;
    z-index: 999;
}

.window_Web_GloballyList .slick-next {
    display: none !important;
}

.window_Web_Globally-boxArrow {
    background: url(/assets/images/client_buzz.png) no-repeat center center;
    position: absolute;
    right: -30px;
    top: 50%;
}

.viewLink {
    display: none;
}

.faq_questn_List_wrap:last-child .faq_questn_Txt_Para {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.nospacing {
    padding: 0;
    margin: 0;
}

.BlueLine_stripe {
    display: flex;
    justify-content: center;
    background-color: var(--blue-color);
}

.BlueLine_stripeTxt {
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    color: var(--white-color);
    text-align: center;
}

.BlueLine_stripeInn {
    padding: 20px 0;
}

.BlueLine_stripeInn {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.BannerBut_primary.transperentBg {
    background: transparent;
    border: 1px solid #00B67A;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #00B67A;
}

.BannerBut_primary.transperentBg img {
    width: 22px;
    height: 22px;
}

.sideByside {
    display: flex;
    gap: 30px;
    align-items: center;
}

.window_host_migrateOut {
    display: flex;
    justify-content: center;
}

/* wordpress hosting */

.wordpress_hostfeture {
    margin-top: 15px;
}

.window_Web_Globally-box-para {
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
}

.hosting_introductory {
    background: #102D51;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hosting_introductoryInn {
    display: flex;
    justify-content: center;
}

.hosting_introductory_container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 10px;
    width: 1050px;
}

.hosting_introductoryImg {
    display: flex;
    justify-content: center;
    width: calc(42% - 30px);
    align-items: center;
}

.domain-search-content {
    width: calc(58% - 30px);
}

.hosting_introductoryImg img {
    width: 100%;
}

.hosting_introductoryPara {
    font-size: 15px;
    color: var(--white-color);
    text-align: center;
    line-height: 22px;
}

.wordpress-intensivePara {
    color: var(--secondary-color);
}

.hosting_introductory_head {
    font-size: 44px;
    color: var(--white-color);
    letter-spacing: 1.8px;
    font-weight: 700;
}

.hosting_introductory_subhead {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 1.6px;
    text-align: center;
}

.hosting_introductory_subhead {
    margin-bottom: 17px;
}

.hostingBut {
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hostingBut img {
    width: 30px
}

.window_host_migrateLft {
    background-color: #F4F5FE;
    border-radius: 10px;
}

.wordpress_wordpressOut {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wordpress-hosting {
    background: #FBF8D5;
    max-width: 900px;
    width: 100%;
    padding: 55px;
    border-radius: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wordpress_verTitle {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

.hosting-grid {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 2px dashed var(--secondary-color);
}

.wordpress-hosting-hosting-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 800px;
    margin: 40px 0;
    position: relative;
}

.wordpress-hosting-feature-text {
    width: 45%;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue-color);
    position: relative;
    z-index: 2;
}

.check-icon::before {
    content: "✔";
    color: var(--white-color);
    font-weight: bold;
    font-size: 16px;
}

.wordpress-hosting-feature-text-left {
    text-align: left;
}

.wordpress-hostingOutLine {
    display: flex;
    justify-content: center;
}

.faq_questn_Txt_List {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
}

.faq_questn_Txt_List li {
    list-style-type: disc;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
}

.hosting-contentTitle {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: 1.6px;
    text-align: center;
    margin-bottom: 30px;
}

.BannerBut_primary.white {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
}

.hosting_introductory-But {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.wordpress-intensive {
    display: flex;
    justify-content: center;
}

.wordpress-intensiveInn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.wordpress_DomainOut {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wordpress-intensive-Lft {
    width: calc(42% - 30px);
}

.wordpress-intensive-Rgt {
    width: calc(58% - 30px);
}

.wordpress-intensiveTitle {
    font-size: 30px;
    line-height: 39px;
    color: var(--secondary-color);
    font-weight: 700;
}

.wordpress-intensiveTitleBlue {
    font-size: 26px;
    color: var(--blue-color);
    font-weight: 600;
    padding: 24px 0 34px;
}

.wordpress-intensiveList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    gap: 45px;
}

.wordpress-intensiveListWrap {
    width: calc(50% - 25px);
}

.InnvestingListBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.InnvestingListBox-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.InnvestingListBox-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #102D51;
    margin-top: 15px;
    line-height: 20px;
}

.wordpress_host_migratePara {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: center;
}

.IncludedPlan-Inn {
    width: calc(50% - 23px);
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 55px;
}

.IncludedPlan-Inn img {
    width: 100%;
}

.IncludedPlanDiv-til {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.IncludedPlanDiv-Para {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 19px;
    padding-top: 25px;
}

.IncludedPlan {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.IncludedPlanDiv {
    padding-top: 55px;
}

.wordpress-intensive-Lft img {
    width: 100%;
}

/* Self VPS */

.windowHost_standOut_registerImg.selfVps {
    padding-bottom: 0px;
}

.hosting_introductory.selfVps {
    margin-bottom: 0px;
}

/* linux VPS */

.headerList-Txt {
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.VPS_priceCard_Out {
    display: flex;
    justify-content: center;
    align-items: center;
}

.VPS_priceCardList_2Side {
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--white-color);
    z-index: 99;
    border: 1px solid #E3E3E3;
}

.vps_Nametitle {
    font-size: 30px;
    font-weight: 600;
    color: #102D51;
    text-align: center;
}

.vps_price_Oldtitle {
    font-size: 26px;
    color: var(--blue-color);
    text-align: center;
    font-weight: 400;
    text-decoration: line-through;
}

.vps_price_Newtitle {
    font-size: 34px;
    color: #102D51;
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
}

.vps_priceAndName {
    padding-top: 38px;
}

.vps_price_Oldtitle.spacing {
    padding-top: 8px;
}

.VPS_priceCardList_2Side {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    align-items: center;
}

.VPS_Linux_priceSaveTxt {
    position: absolute;
    left: 0px;
    padding: 0 5px;
    width: 105px;
    height: 29px;
    background-color: #00B67A;
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
}

.priceCardList_RgtSide {
    border-left: 1px solid #E3E3E3;
    padding-left: 25px;
}

.VPS_addtoCartBut {
    padding-top: 35px;
    display: flex;
    justify-content: center;
}

.VPS_priceCardListInn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.VPS_priceCardList_Wrap {
    width: calc(50% - 30px);
    display: flex;
}

.VPS_priceCardList_2Side:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(42, 127, 255, 0.3);
    position: relative;
    z-index: 100 !important;
    border: 1px solid #C8DEFF;
}

.VPS_priceCardList_2Side {
    float: left;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--white-color);
    z-index: 99;
    border: 1px solid #E3E3E3;
}

.VPS_priceCardList_LftSide {
    width: 50%;
}

.priceCardList_RgtSide {
    width: 50%;
}

.linuxVps_plan_mob {
    padding: 0 30px;
    margin-top: 20px;
}

.LinuxVPSList-Txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
}

.premium_window_share.mobile {
    display: none;
}

.linuxVps_plan_mobInn {
    background-color: #102D51;
    padding: 20px 35px 10px;
    border-radius: 10px;
}

.VPS-choiceOS {
    display: flex;
    justify-content: center;
    align-items: center;
}

.VPS-choiceOSInn {
    background-color: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 120px 75px 75px;
    border-radius: 35px;
}

.VPS-choiceOSInn-Lft {
    width: 40%;
}

.VPS-choiceOSInn-Rgt {
    width: 60%;
}

.VPS-choiceOS-ImgList {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.VPS-choiceOS-ImgListWrap {
    width: calc(33.33% - 30px);
}

.OsVPS-imgBg {
    padding: 22px;
    background-color: var(--white-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.VPS-OS-Title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--white-color);
}

.VPS-OS-Para {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--white-color);
    margin-top: 30px;
}

/* window VPS Hosting */

.window_VPS_Hosting {
    display: flex;
    justify-content: center;
    align-items: center;
}

.windowVPS_tab-btn {
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    color: var(--secondary-color);
}

.windowVPS_tab-btn.active {
    border: 1px solid #102D51;
    background-color: #F3F5FF;
}

.windowVPS_price {
    display: none;
}

.windowVPS_price.active {
    display: block;
}

/* dedicated server */

.dedicated_imgIcon {
    display: flex;
    justify-content: center;
}

.dedicated_imgIcon {
    padding-bottom: 25px;
}

.VPS_Linux_priceSaveTxt.dedicated_margin {
    top: 33px;
}

.dedicated_oldprice {
    padding: 30px 0 6px;
}

.windowHost_standOut.dedicated_server {
    background-image: url(/assets/images/dedicated-server/dedicated_performance_bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.comparision-mainTitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    padding: 32px 0;
}

.comparision-mainTitleBg {
    background-color: #EFF1FF;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

.HostingComparision_Inn {
    border: 1px solid #3D52EF;
    border-radius: 35px;
}

.comparison-table {
    padding: 40px 55px 55px;
}

.TabCityImg {
    margin-bottom: 24px;
}

.HostingComparision_Out {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 0px;
}

.row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dbdbdb;
}

.col {
    padding: 15px 20px;
    flex: 1;
    text-align: center;
}

.col-1 {
    flex: 2;
    text-align: left;
}

.col.left {
    text-align: left;
}

.comparision_title {
    color: var(--blue-color);
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.comparision_subtitle {
    font-size: 18px;
    color: var(--secondary-color);
}

.yes::before,
.no::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.yes::before {
    background-image: url('/assets/images/icon/card-price-thumbnail.svg');
}

.no::before {
    background-image: url('/assets/images/icon/cross-card-price-thumbnail.svg');
}

.comparison-table .comparison-row.row:last-child {
    border-bottom: none;
}

.comparison-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dedicated_box_featureList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    border-radius: 20px;
    padding: 20px 60px;
    background-color: var(--blue-color);
}

.dedicated_box_feature {
    display: flex;
    justify-content: center;
}

.dedicated_box_featureInn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--white-color);
    font-size: 20px;
}

.priceCardList_RgtSide.vpsFetur {
    padding-left: 15px;
}

.datacenter-tabs-sectionOut {
    display: flex;
    justify-content: center;
    align-items: center;
}

.datacenter-content-List {
    display: flex;
    justify-content: center;
}

.datacenter-content-ListInn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.datacenter-info {
    background: #DEF7EA;
    border-radius: 20px;
    padding: 50px 65px;
    text-align: left;
    z-index: 9;
    width: 40%;
}

.dc-location {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.dc-featuresList {
    margin-bottom: 15px;
    padding-bottom: 15px;
    color: var(--secondary-color);
    gap: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 19px;
    line-height: 19px;
    font-weight: 500;
}

.dc-features .dc-featuresList:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.dataCenter_tab-btn img {
    width: 34px;
    height: 36px;
}

.datacenter-tabs {
    display: flex;
    justify-content: center;
}

.datacenter-tabsInn {
    display: flex;
    flex-wrap: wrap;
}

.dataCenter_tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    background: transparent;
}

.dataCenter_tab-btn.active {
    background: #EFF1FF;
}

.datacenter-content-List {
    display: none;
}

.datacenter-content-List.active {
    display: flex;
}

.datacenter-tabs-scroll {
    overflow: hidden;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white-color);
    border-radius: 10px;
    border: 1px solid #DBDBDB;
}

.yellowBox {
    background-color: #FBF8D5;
    border: none;
}

.greenBox {
    background-color: #DEF7EA;
    border: none;
}

.blueBox {
    background-color: #EFF1FF;
    border: none;
}

/* SSL Certificate */

.vps_price_Oldtitle.sslCertif {
    padding: 20px 0 15px;
}

.VPS_addtoCartBut.sslCertif {
    padding-top: 15px;
}

.VPS-accordion-section {
    display: flex;
    background-color: #DEF7EA;
    justify-content: center;
}

.VPS-accordion-sectionInn {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.accordion-left {
    width: 50%;
}

.accordion-right {
    width: 50%;
}

.accordion-item {
    border-bottom: 1px solid #dbdbdb;
    padding: 20px 0;
    cursor: pointer;
}

.accordion-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
}

.accordion-contentPara {
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
}

.accordion-item.active .accordion-content {
    display: block;
}

.windowAccorionWrap {
    padding: 60px;
}

.accordion-item.active .contentPara {
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 10px;
}

.accordion-item.active .accordion-icon {
    content: "–";
}

.BannerBut_primary.transperant {
    background-color: transparent;
    border: 1px solid var(--white-color);
}

.CompareVPS-Table {
    display: flex;
    justify-content: center;
}

.vps-pro-content table {
    border-collapse: collapse
}

.vps-pro-row {
    display: flex
}

.vps-pro-content {
    display: flex
}

.vps-pro-col-1 {
    width: 100%;
    text-align: center;
    max-width: 328px;
    margin: 0;
    border: none;
}

.vps-pro-col-2 {
    text-align: center;
    flex: 1;
    transition: all .3s ease-in-out;
    border-radius: 20px;
    border-top: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}

.vps-pro-col-2:nth-child(1) {
    border-left: 1px solid #dbdbdb;
}

.vps-pro-content td {
    margin: 0 auto;
    max-width: 188px;
    padding: 10px;
    height: 90px;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.vps-pro-col-1 table {
    width: 100%
}

.vps-pro-content table tbody tr:nth-child(7) td {
    height: 92px
}

.vps-pro-logos img {
    max-width: 100%
}

.vps-pro-col-2 table {
    width: 100%;
    transition: all .6s ease-in-out;
}

.vps-pro-content-2 {
    flex: 1
}

.vps-pro-content td,
.vps-pro-content th {
    text-align: center;
    vertical-align: middle
}

.vps-pro-col-1 tr {
    background-color: #FBF8D5;
}

.vps-pro-col-1 table tbody tr:nth-child(1) td {
    background: var(--white-color);
}

.vps-pro-col-1 table tbody tr:nth-child(2) td {
    border-top: 1px solid #dbdbdb;
}

.vps-pro-col-1 td {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.vps-pro-col-1 td.vps-pro-cost {
    font-size: 18px;
    color: #434343;
    font-weight: 600
}

.vps-pro-content table tbody tr:nth-child(11) td {
    height: 70px;
    background-color: var(--white-color);
}

.vps-pro-content td.vps-pro-logos {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    height: 94px
}

.vps-pro-btn {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 15px;
    border: 1px solid #5e28fa;
    background: #fff;
    padding: 11px 24px;
    display: block ruby;
}

.vps-pro-check {
    color: var(--blue-color);
    font-weight: 600;
    font-size: 20px
}

.vps_price {
    font-size: 16px;
    display: block;
    width: 100%;
}

.vps_strike {
    text-decoration: line-through;
    color: var(--blue-color);
    font-weight: 400;
    font-size: 20px;
}

.vps-pro-col-2:hover {
    background-color: #EFF1FF;
    transform: scaleY(1.02);
}

.vps-pro-col-2 table tbody tr:hover .vps-pro-btn {
    background-color: var(--blue-color);
    color: var(--fff-clr);
}

.vps-pro-col-2 td {
    text-align: center;
    flex: 1;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.vps-pro-col-2 td::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    background: #dbdbdb;
}

.PlanNameTable {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 15px;
}

.vps-pro-logos.bigTxt {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.vps-pro-col-2 table tbody tr:first-child td {
    border-top-left-radius: 20px;
}

.vps-pro-col-2 tr:nth-child(2) {
    background-color: #EFF1FF;
}

.vps-pro-col-2 table tbody tr:last-child td {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.vps-pro-col-2 tr:last-child td::after {
    display: none;
}

.vps-pro-col-1 table tbody tr td {
    border-bottom: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
}

.PlanPriceTable {
    font-size: 24px;
    font-weight: 700;
    color: #102D51;
    margin-top: 8px;
}

.PlanPriceTable span {
    font-size: 22px;
    font-weight: 400;
    color: #102D51;
}

.compareClip {
    position: absolute;
    left: 25px;
    padding: 5px;
    width: 130px;
    height: 30px;
    background-color: #D7FF7B;
    clip-path: polygon(9% 0, 91% 0, 81% 50%, 91% 100%, 9% 100%, 19% 50%);
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    top: 10px;
}

.compareClip {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.compareClip span {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
}

.faq_questn_card::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 29px;
    background-image: url('/assets/images/icon/tick-icon-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.bestOfferBadge {
    display: none;
}

.datacenter-image {
    display: flex;
    justify-content: center;
    position: relative;
    display: inline-block;
}

.image-bottom-green {
    height: 30px;
    height: 200px;
    background-color: #DEF7EA;
    border-radius: 20px;
    width: calc(100% + 60px);
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: -1;
}

@media(max-width:1120px) {
    .vps-pro-col-1 {
        max-width: 252px;
        position: sticky;
    }
    .vps-pro-col-1 td {
        font-size: 18px;
        padding-left: 24px
    }
    .vps-pro-content-2 {
        overflow: scroll;
        width: 100%;
        flex: unset
    }
    .vps-pro-content td {
        padding: 0 20px;
        max-width: 260px
    }
    .vps-pro-col-2 {
        flex: unset
    }
    .vps-pro-content td {
        padding: 0 22px
    }
    .vps-pro-col-2 table {
        width: 198px
    }
    .vps-pro-btn-td {
        padding: 0 !important
    }
}

@media(max-width:500px) {
    .vps-pro-content td {
        font-size: 12px
    }
    .vps-pro-content td {
        padding: 0 30px
    }
}

@media(max-width:375px) {
    .vps-pro-col-2 table {
        width: 149px
    }
}

/*******************************************GPU Page**************************************************/

/* footeo color #FFFFFF0D 5% */

.page-wrapper {
    background-color: #0E1319;
    background-image: url('/assets/images/Noise-New.png');
    background-repeat: repeat;
    background-size: auto;
}

.BannerGPU-Img {
    display: flex;
    justify-content: center;
    z-index: 1;
}

.GpuBannerHead {
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-align: center;
    background: linear-gradient(to right, #01E47B, #03C3F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.GpuBanner-SubHead {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-align: center;
    color: #C0C0C0;
    margin-top: 15px;
}

.GpuBannerPara {
    font-size: 16px;
    font-weight: 400;
    color: #C0C0C0;
    padding: 25px 35px;
    border-radius: 20px;
    margin: 25px 0 35px;
    background-color: #FFFFFF0D;
    line-height: 22px;
    text-align: center;
}

.GpuTxtWrap {
    display: flex;
    justify-content: center;
}

.GpuBannerPara-Out {
    display: flex;
    justify-content: center;
}

.GpuBut-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.Gpu-Primary {
    position: relative;
    display: inline-block;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(to right, #01E47B, #03C3F0);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.Gpu-Primary span {
    display: inline-block;
    background-color: #0E1319;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    background-clip: padding-box;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.Gpu-secondary {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: underline !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}

.VPS_priceCardList_Wrap:hover .Gpu-Primary span {
    background-color: transparent;
    color: #102D51;
}

.ImgChat {
    line-height: 0px;
}

.GpuCommonTil {
    font-size: 46px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    letter-spacing: 1.6px;
    color: #C0C0C0;
}

.choose-GPU {
    display: flex;
    justify-content: center;
}

.fluorescent {
    color: var(--white-color);
}

.lightgray {
    color: #C0C0C0;
}

.white {
    color: var(--white-color);
}

.GpuPlans {
    display: flex;
    justify-content: center;
}

.GPU-planQuantity {
    padding: 15px 22px;
    text-align: center;
    font-weight: 400;
}

.VPS_priceCardList_2Side.GpuCard-Color:hover {
    transform: none;
    box-shadow: none;
    position: relative;
    z-index: 100 !important;
    border: none;
}

.Gpu-Primary:hover,
.Gpu-secondary:hover {
    transform: translateY(-4px);
}

.gpuFeture-list .HostFeatureList_wrap {
    color: #C0C0C0;
}

.gpuFeture-list .Key_Features {
    color: var(--white-color);
}

.GpuCard-Color {
    background-color: #FFFFFF0D;
    border-radius: 20px;
    border: 1px solid transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    height: auto;
}

.GpuCard-Color::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to right, #01E47B, #03C3F0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.GpuCard-Color:hover::before {
    opacity: 1;
}

.Gpu-standOut-Lft-Wrap li {
    margin-top: 40px;
}

.standOuttitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color)
}

.standOutSubtitle {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 19px;
    margin-top: 15px;
}

.Gpu-standOut-server {
    display: flex;
    justify-content: center;
    background-color: #FFFFFF0D;
}

.Gpu-standOut-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Gpu-standOut-Lft {
    width: calc(55% - 50px);
}

.Gpu-standOut-Rgt {
    width: calc(45% - 50px);
}

.GpuHosting-serviceWrap {
    display: flex;
    justify-content: center;
}

.space-bottom {
    padding-bottom: 60px;
}

.service-box.GpuCard-Color {
    box-shadow: none;
    transform: none;
}

.GpuCard-Color .description {
    background: linear-gradient(to right, #01E47B, #03C3F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-box-head.white {
    color: var(--white-color);
}

.faq_questn_card.GpuFaq::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 29px;
    background-image: url(/assets/images/icon/Gpu-FaqIcon.svg);
    background-size: contain;
    background-repeat: no-repeat
}

.GPUFaq-title {
    color: #C0C0C0;
    ;
}

.GPUFaq-para {
    color: #C0C0C0;
    border-bottom: 1px solid #41454E;
}

.Gpufooter {
    background-color: #FFFFFF0D;
}

.copyright.GpuCopyright p {
    background-color: #16181D;
    color: #C0C0C0;
}

.social-icons.Gpu-socialIcons a {
    border: 1px solid #94A7AD;
    background: transparent;
}

.Gpuhost-header {
    background-color: #16181D;
}

.np-nav-menu.gpuNavMenu>li>a {
    color: var(--white-color);
}

.loginBut.GpuLoginBut {
    font-weight: 500;
    color: #ffffff;
    border: 1px solid #818181;
    background: transparent;
}

.priceCardList_RgtSide.gpuFeture-list {
    border-left: 1px solid #41454E;
}

.host-header.Gpuhost-header.sticky {
    background-color: #16181D;
}

.Gpudropdown-content {
    background: #16181D;
}

.Gpudropdown-content .dropMenu {
    background: #16181D;
    border-bottom: 1px solid #41454e;
}

.Gpudropdown-content .websuite-left {
    background: #ffffff04;
}

.Gpudropdown-content .websuite-right {
    background: #16181D;
}

.Gpudropdown-content .websuite-left_title {
    color: var(--white-color);
}

.Gpudropdown-content .websuite-left_subtitle {
    color: #C0C0C0;
}

.Gpudropdown-content .protect_Title {
    color: var(--white-color);
}

.Gpudropdown-content .protect_para {
    color: #C0C0C0;
}

.Gpudropdown-content .websuite-sectionTitle {
    color: #818181;
}

.gpuNavMenu .active-dropdown .fa-angle-down {
    background: #818181;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.GpuDedicated-Lft {
    width: calc(40% - 40px);
    background-color: #FFFFFF0D;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
}

.GpuDedicated-Rgt {
    width: calc(60% - 40px);
}

.GpuDedicated-Out {
    display: flex;
    justify-content: center;
}

.GpuDedicated-Inn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.GpuDedicatedList {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.GpuDedicatedList-Wrap {
    width: calc(50% - 13px);
}

.GpuDedicatedList-Txt {
    font-size: 20px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #C0C0C0;
    padding: 30px;
    background-color: #FFFFFF0D;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    z-index: 1;
}

.GpuDedicatedList-Txt::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to right, #01E47B, #03C3F0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.GpuDedicatedList-Txt:hover::before {
    opacity: 1;
}

.GpuDedicated-Lft img {
    width: 100%;
}

.server-Options {
    display: flex;
    justify-content: center;
}

.gpu-accordion {
    width: calc(55% - 40px);
}

.gpu-accordionImg {
    width: calc(45% - 40px);
}

.server-OptionsInn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.gpu-item {
    border-bottom: 1px solid #41454E;
    padding: 20px 0;
}

.gpu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.gpu-header-title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: var(--white-color)
}

.toggle-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.gpu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.gpu-item.active .gpu-content {
    max-height: 500px;
    opacity: 1;
}

.gpu-content-para {
    color: #C0C0C0;
    font-size: 16px;
    line-height: 1.5;
    line-height: 24px;
    margin-top: 20px;
    padding-right: 50px;
}

.gpu-contentBold {
    font-weight: 600;
    color: #C0C0C0;
}

.gpu-item:last-child {
    border-bottom: none;
}

.GpuAssist-Lft {
    width: 20%;
}

.GpuAssist-Rgt {
    width: 80%;
}

.GpuAssistOut {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

.GpuAssistInn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF0D;
    padding: 40px 60px;
    width: 1200px;
    border-radius: 35px;
    border: 1px solid #41454E;
}

.GpuAssistYou-wrap {
    display: flex;
    justify-content: center;
}

.AssistGpu-title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--white-color);
    text-align: center;
    color: #C0C0C0;
}

.AssistGpu-But-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    gap: 50px;
}

.Gpu-standOut-Lft-Wrap li:first-child {
    margin-top: 0px;
}

.BlueLine_stripe.Gpu-stripe {
    background: linear-gradient(to right, #01E47B, #03C3F0);
}

.Gpu-stripe .BlueLine_stripeTxt {
    color: #16181D;
}

.Gpu-stripe .BannerBut_primary {
    background: var(--white-color);
    color: #102D51;
    border: none;
}

.GpuCard-Color .HostFeatureList_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    background-image: url(/assets/images/icon/GPUcard-price-thumbnail.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.GpuCommonTil.linear_gradient {
    background: linear-gradient(to right, #01E47B, #03C3F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Gpu-standOut-Rgt img {
    border-radius: 20px;
}

.gpu-accordionImg img {
    border-radius: 20px;
}

.GpuCompareTable {
    display: flex;
    justify-content: center;
}

.comparison-table-card {
    background-color: #FFFFFF0D;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0px auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-radius: 35px;
}

.table-header {
    background: linear-gradient(to right, #01E47B, #03C3F0);
    text-align: center;
    padding: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #111;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    margin-bottom: 24px;
}

.table-container {
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    padding-top: 0px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-family: sans-serif;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #4e5a66;
    padding: 20px 16px;
    text-align: center;
    font-size: 18px;
    color: #C0C0C0;
    font-weight: 400;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table td:first-child {
    font-weight: 500;
    text-align: left;
    font-size: 18px;
    color: #FFFFFF;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-family: sans-serif;
    table-layout: fixed;
}

.comparison-table thead tr th {
    border-top: none;
    font-size: 22px;
    color: #FFFFFF;
}

.comparison-table tr td:first-child,
.comparison-table thead tr th:first-child {
    border-left: none;
    text-align: left;
}

.comparison-table tr td:last-child,
.comparison-table thead tr th:last-child {
    border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table th {
    font-weight: 600;
}

.GpuTabSection {
    position: relative;
    display: flex;
    justify-content: center;
}

.GpuTabSectionInn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.GpuTabs {
    width: calc(50% - 40px);
}

.GpuTabContentWrap {
    width: calc(50% - 40px);
}

.GpuTabBtn {
    display: block;
    text-align: center;
    background: none;
    border: none;
    font-size: 81px;
    line-height: 80px;
    font-weight: 700;
    color: #C0C0C0;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.GpuTabBtn.active {
    background: linear-gradient(to right, #00ff99, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.GpuTabContent {
    display: none;
    font-size: 18px;
}

.GpuTabContent.active {
    display: block;
}

.GpuTab_Title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    margin: 15px 0 10px;
}

.GpuTab_SubTitle {
    font-size: 16px;
    font-weight: 400;
    color: #C0C0C0;
    line-height: 22px;
}

.GpuTabContent {
    display: none;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.GpuTabContent.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.GpuTabBtn.active {
    background: linear-gradient(to right, #00ff99, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
    transition: all 0.4s ease;
}

.Gpudropdown-content .dropMenu_BottomInn_Txt {
    color: #FFFFFF;
}

.Gpudropdown-content .dropMenu_BottomInn_Txt:hover {
    color: #FFFFFF;
}

.Gpudropdown-content .menuContactColor {
    color: #33cccc;
}

.Gpudropdown-content .websuite-service:hover {
    background-color: #FFFFFF0D;
}

body.lock-scroll {
    overflow: hidden;
}

/*Domain Name Search*/

.domainImg-white {
    display: inline-block;
}

.domainImg-blue {
    display: none;
}

button.active .domainImg-white {
    display: none;
}

button.active .domainImg-blue {
    display: inline-block;
}

.domain-nameSearch {
    display: flex;
    justify-content: center;
}

.domaintab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.domaintab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #DBDBDB;
    background-color: var(--white-color);
    color: #102D51;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: -10px;
}

.domaintab-btn.first {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.domaintab-btn.second {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.domaintab-btn.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.domaintab-content {
    display: none;
    text-align: center;
}

.domaintab-content.active {
    display: block;
}

.domainsearch-box {
    display: flex;
    justify-content: center;
}

.textarea-wrapper {
    position: relative;
    width: 800px;
}

.result-messageOut-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.textarea-wrapper textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #2A7FFF;
    border-radius: 20px;
    font-size: 16px;
    resize: none;
    box-sizing: border-box;
}

.domainsearch-btn {
    padding: 8px 16px;
    font-size: 18px;
    background-color: #00B67A;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 5px;
}

.result-message {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    background-color: #EFF1FF;
}

.result-messageTitle {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 15px;
    text-align: left;
}

.result-messagePara {
    background-color: var(--white-color);
    padding: 15px;
    border-bottom-left-radius: 10px;
    font-size: 18px;
    color: var(--secondary-color);
    padding: 15px;
    border-bottom-right-radius: 10px;
}

.domain-list {
    list-style: none;
    padding: 0;
    margin: 45px auto;
    width: 700px;
    text-align: left;
}

.domain-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #DBDBDB;
}

.searched-title {
    margin: 0 5px;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    width: 400px;
}

.Domain-oldPrice {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    width: 100px;
}

.Domain-NewPrice {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    width: 100px;
}

.domain-list a {
    width: 100px;
    color: #00B67A;
    text-decoration: underline;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.footer-note {
    margin-top: 20px;
    background-color: #000845;
    color: var(--white-color);
    padding: 15px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.footer-note a {
    color: var(--white-color);
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
}

.domaintab-contentInn {
    display: flex;
    justify-content: center;
}

.domain-searchField {
    position: relative;
    width: 100%;
    border: 1px solid #2A7FFF;
    border-radius: 20px;
    overflow: hidden;
}

.domain-searchField input {
    width: 100%;
    padding: 18px 120px 18px 16px;
    font-size: 16px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #C0C0C0;
    opacity: 0.7;
}

.domain-searchBtn {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 10px 18px;
    background-color: #00B67A;
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

.tldList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
    gap: 40px;
    padding-top: 16px;
}

.tldList li {
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.tldList li:not(:last-child)::after {
    content: "";
    height: 14px;
    width: 1px;
    background: #ddd;
    position: absolute;
    right: -20px;
    top: 8px;
}

.tldList li.active {
    font-weight: 600;
    color: #00B67A;
    text-decoration: underline;
}

.domain-list li.highlight {
    background-color: #FBF8D5;
}

.secThree_Inn.forex-vps {
    background-color: #DEF7EA;
}

.forexVps-compare-tableInn {
    background: #102D51;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.forexVps-compare-table {}

.section_two_Title.white {
    color: var(--white-color);
}

.forexVps-tableSubTilt {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
    margin-top: 27px;
}

.forexVps-compare-table table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    margin-top: 50px;
}

.forexVps-compare-table th {
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #284870;
}

.forexVps-compare-table th span {
    color: var(--white-color);
}

.forexVps-compare-table th:first-child {
    color: #3FC11C;
}

.forexVps-compare-table th:last-child {
    color: #ff4d4d;
    border-left: 1px solid #284870;
    padding-left: 50px;
}

.forexVps-compare-table td {
    font-size: 18px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    position: relative;
    padding-left: 30px;
    color: var(--white-color);
}

.forexVps-compare-table td:last-child {
    border-left: 1px solid #284870;
    padding-left: 50px;
}

.forexVps-compare-table tr:last-child td {
    border-bottom: none;
}

.forexVps-space::before {
    margin-right: 10px;
}

/*Ecommerce*/

.eommerce-store {
    display: flex;
    justify-content: center;
}

.ecommrceStore-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #102D51;
    text-align: center;
    margin-top: 20px;
}

.eommerce-storeInn {
    padding: 50px 100px;
    background-color: #DEF7EA;
    border-radius: 35px;
}

.eommerce-storeBox {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.eommerce-storeBox-lft {
    width: calc(55% - 0px);
}

.estore-right {
    width: calc(45% - 0px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.estore-right::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 35%;
    transform: translateX(-50%);
    width: 2px;
    height: 75%;
    background: repeating-linear-gradient(to bottom, #00B67A, #00B67A 5px, transparent 5px, transparent 10px);
}

.step {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

/*.step-number { position: absolute;left: -55px;top: 50%;transform: translateY(-50%);font-size: 150px;color: #00B67A;font-weight: 700;z-index: 1;}*/

.step-number {
    font-size: 120px;
    color: #00B67A;
    font-weight: 700;
    z-index: 1;
    width: 15%;
    display: flex;
    justify-content: end;
}

.step-box {
    background: var(--white-color);
    border-radius: 5px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #E3E3E3;
    width: 80%;
    text-align: left;
}

.step-box span {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.dropMenu_BottomInn_Txt.Number.BlackTheme:hover {
    color: #FFFFFF;
}

.dropMenu_BottomInn_Txt.Number.BlackTheme .menuContactColor {
    color: #3CBB3F;
    background: none;
    -webkit-text-fill-color: unset;
}

.comparision_subtitle.bold {
    font-weight: 600;
}

/***************************Reseller***********************************/

.IncludedPlanChange.ecommerce {
    background: #EFF1FF;
}

.VPS_priceCardListInn .slick-prev::before,
.VPS_priceCardListInn .slick-next::before {
    content: none !important;
    display: none !important;
}

/* Common arrow button styles */

.VPS_priceCardListInn .slick-prev,
.VPS_priceCardListInn .slick-next {
    width: 25px !important;
    height: 25px !important;
    min-width: 35px;
    min-height: 35px;
    z-index: 50;
    border: none;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* base background */
    box-shadow: 0 4px 16px #00000029;
    border-radius: 50%;
}

/* Custom icons */

.VPS_priceCardListInn .slick-prev {
    background: #fff url('/assets/images/icon/Gpu-chevron-prev.svg') no-repeat center !important;
    background-size: 18px 18px !important;
}

.VPS_priceCardListInn .slick-next {
    background: #fff url('/assets/images/icon/Gpu-chevron-next.svg') no-repeat center !important;
    background-size: 18px 18px !important;
}

.VPS_priceCardListInn .slick-dots li button::before {
    color: inherit;
}

.VPS_priceCardListInn .slick-dots li.slick-active button::before {
    color: inherit;
}

.VPS_priceCardListInn .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--blue-color);
    padding: 0;
    cursor: pointer;
    transition: .3s ease;
}

.VPS_priceCardListInn .slick-dots li.slick-active button {
    background-color: var(--blue-color);
}

.VPS_priceCardListInn .slick-dots li.slick-active button:before {
    color: inherit;
}

.priceCardList .slick-prev,
.priceCardList .slick-next {
    width: 25px !important;
    height: 25px !important;
    min-width: 35px;
    min-height: 35px;
    z-index: 50;
    border: none;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* base background */
    box-shadow: 0 4px 16px #00000029;
    border-radius: 50%;
}

.priceCardList .slick-prev {
    background: #fff url('/assets/images/icon/Gpu-chevron-prev.svg') no-repeat center !important;
    background-size: 18px 18px !important;
}

.priceCardList .slick-next {
    background: #fff url('/assets/images/icon/Gpu-chevron-next.svg') no-repeat center !important;
    background-size: 18px 18px !important;
}

.priceCardList .slick-dots li button::before {
    color: inherit;
}

.priceCardList .slick-prev:before,
.priceCardList .slick-next:before {
    color: inherit;
}

.priceCardList .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--blue-color);
    padding: 0;
    cursor: pointer;
    transition: .3s ease;
}

.priceCardList .slick-dots li.slick-active button {
    background-color: var(--blue-color);
}

.priceCardList .slick-dots li.slick-active button:before {
    color: inherit;
}

.GpuPlansInn .VPS_priceCardListInn .slick-dots li button {
    border: 1px solid #3cdd3f;
}

.GpuPlansInn .VPS_priceCardListInn .slick-dots li.slick-active button {
    background-color: #3cdd3f;
}

.GpuPlansInn .VPS_priceCardListInn .slick-dots li.slick-active button:before {
    color: inherit;
}

/* Contact Page */

.Contact-Section1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContactSecList {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ContactSecList-wrap {
    width: calc(33.33% - 15px);
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    padding: 30px 15px;
}

.ContactSecListImg {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.ContactSecTitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.ContactSec-content {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 400;
    text-align: center;
}

.ContactSec-mailId {
    font-size: 17px;
    color: var(--secondary-color);
    margin: 8px 0 20px;
    font-weight: 600;
    text-align: center;
}

.ContactSecList-wrap.greenBox {
    border: 1px solid transparent;
}

.ContactFormOut {
    display: flex;
    justify-content: center;
}

.ContactFormInn {
    display: flex;
    justify-content: space-between;
}

.ContactFormLft {
    width: calc(45% - 35px);
}

.ContactFormRgt {
    width: calc(55% - 35px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    font-size: 14px;
    color: #102D51;
}

.phone-wrapper {
    display: flex;
    gap: 8px;
}

.phone-wrapper select {
    width: 80px;
}

.contact-form input[type="checkbox"] {
    width: auto;
    border-radius: 0;
    margin-bottom: 0px;
}

.recaptcha {
    display: inline-block;
}

.CaptchaOut {
    border: 1px solid #ccc;
    padding: 12px;
    align-items: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ContactUs-header {
    font-size: 30px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 25px;
}

.contact-form-but {
    background: var(--blue-color);
    color: #fff !important;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    font-size: 16px !important;
    cursor: pointer;
    margin-top: 35px;
}

.CaptchaOut span {
    font-size: 14px;
    color: #102D51;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('/assets/images/icon/contactUs-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 35px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.Contact-ConnectUs {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    gap: 30px
}

.Cont-address {
    display: flex;
    gap: 30px;
}

/*.Cont-social{width:50%;}*/

.Contact-Contittle {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
}

.Contact-ConSubtittle {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 10px;
    line-height: 19px;
}

.social-icons.socialContact {
    margin-top: 13px;
}

.Contact-WhatNew {
    display: flex;
    justify-content: center;
}

.Contact-WhatNewtitle {
    font-size: 44px;
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
}

.Contact-WhatNewInn {
    background-color: #102D51;
    border-radius: 10px;
    padding: 40px;
}

.Contact-WhatBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.subscribeBut {
    background-color: #00B67A;
    color: white;
    border: 1px solid #00B67A;
    outline: none;
    font-size: 18px;
    padding: 10px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    display: flex;
    gap: 10px;
}

.subscribeBut:hover {
    transform: translateY(-4px);
}

.Contact-mailIdInn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* About us*/

.AboutUs-teamOut {
    display: flex;
    justify-content: center;
}

.TeamDesignation {
    margin-top: 18px;
}

.TeamDesig-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: center;
}

.TeamDesig-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 5px;
    text-align: center;
}

.Contact-TeamImg {
    display: flex;
    justify-content: center;
}

.About-teamCard {
    display: flex;
    justify-content: center;
}

.About-teamCardInn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.About-teamCardInn-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.teamCardInnwrap {
    height: 380px;
    width: calc(33.33% - 10px);
    padding: 25px;
}

.teamCardInn-inner {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    position: relative;
    border-radius: 20px;
}

.teamCardInnwrap:hover .teamCardInn-inner {
    transform: rotateY(180deg);
}

.teamCardfront,
.teamCardback {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
    box-sizing: border-box;
}

.teamCardfront {
    transform: rotateY(0deg);
}

.teamCardback {
    transform: rotateY(180deg);
    text-align: center;
}

.BackCard-title {
    font-size: 20px;
    font-weight: 600;
    color: #3D52EF;
    text-align: center;
}

.BackCard-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 8px 0px 15px;
}

.BackCard-para {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 20px;
}

/* ai-domain name generator */

.search-Ai-domainOut {
    display: flex;
    justify-content: center;
}

.ai-domainBannerOut {
    padding: 70px 0 30px;
}

.ai-search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.ai-search-box input {
    width: 800px;
    max-width: 90%;
    padding: 14px 18px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    border: 1px solid #FFFFFF20;
    color: var(--white-color);
    height: 80px;
}

.ai-generateBut {
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #1F80FF 0%, #9720FF 50%, #FB20FF 100%);
    color: var(--white-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Generate-Domainsubtitle {
    font-size: 18px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 15px;
}

.tag-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.tag {
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 15px;
    color: #B9B6C8;
    border: 1px solid #B677FF4D;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.ai-buttonArrow {
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.ai-buttonArrow img {
    width: 12px;
    height: 12px;
}

.tag1Bg {
    background-color: #7F33FF4D;
}

.tag2Bg {
    background-color: #A520FF4D;
}

.tag3Bg {
    background-color: #3355FF4D;
}

.tag4Bg {
    background-color: #C621FF33;
}

.ai-generatorOut {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.ai-generatorInn {
    max-width: 1120px;
    width: 100%;
    padding: 25px 35px;
    border-radius: 35px;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    border: 1px solid #FFFFFF20;
}

.Ai-domainBannerPara {
    padding: 25px 34px;
    font-size: 16px;
    color: #c0c0c0;
    text-align: center;
    line-height: 24px;
}

.ai-featureOut {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.ai-feature-Tag {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin-top: 20px;
}

.ai-feature-TagOut {
    position: absolute;
    width: 750px;
}

.ai-feature-Tag span {
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 15px;
    color: #B9B6C8;
    border: 1px solid #B677FF4D;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.GpuCommonTil.text-left {
    text-align: left;
}

.ai-grid-diagonal {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 48px;
    width: 100%;
    align-items: start;
    position: relative;
}

.ai-card {
    border-radius: 35px;
    padding: 50px 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    position: relative;
    justify-self: center;
    transition: transform .25s ease;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF20;
}

.ai-card:hover {
    transform: translateY(-6px)
}

.ai-cardtitle {
    font-size: 24px;
    color: var(--white-color);
    font-weight: 600;
}

.ai-cardSubtitle {
    font-size: 16px;
    line-height: 22px;
    color: #c0c0c0;
    margin-top: 25px;
}

.ai-chip {
    position: absolute;
    top: -35px;
    right: 35px;
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(to bottom right, #1F80FF 0%, #9720FF 50%, #FB20FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(160, 32, 240, .35)
}

.ai-chip img {
    width: 40px;
    height: 40px;
    display: block;
    filter: brightness(0) invert(1)
}

.card-top-right {
    grid-column: 3;
    grid-row: 1;
}

.card-center {
    grid-column: 2;
    grid-row: 2;
}

.card-bottom-left {
    grid-column: 1;
    grid-row: 3;
}

.card-bottom-right {
    grid-column: 3;
    grid-row: 3;
}

.ai-bg-text {
    position: absolute;
    left: 45.3%;
    bottom: 40px;
    transform: translateX(-30%);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.05;
    text-transform: uppercase;
    opacity: .2;
    background: linear-gradient(to right, #1F80FF 0%, #9720FF 50%, #FB20FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    text-align: center;
}

.ai-buyDomainOut {
    display: flex;
    justify-content: center;
}

.ai-buyDomainInn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.ai-domain-left {
    width: calc(50% - 60px);
}

.ai-domain-right {
    width: calc(50% - 60px);
    display: flex;
    flex-direction: column;
}

.AI-domainCommonTil.text-left {
    text-align: left;
}

.ai-domain-step {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF33;
}

.ai-domain-right .ai-domain-step:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.bg-wrapper {
    background: url('/assets/images/Ellipse-bg.png') no-repeat center top;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFFFFF33;
    border-radius: 35px;
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
    padding: 35px 0;
}

.highlight-section {
    display: flex;
    justify-content: center;
    background: url('/assets/images/mat-ai.png') no-repeat center top;
    background-size: cover;
    padding: 55px 0;
    position: relative;
    z-index: 99;
    gap: 65px;
    margin: 15px 0;
}

.ai-highlight-left {
    width: calc(40% - 30px);
}

.ai-highlight-right {
    width: calc(60% - 30px);
}

.ai-generateBut-Out {
    margin-top: 50px;
}

.ai-privacySubheadingOut {
    display: flex;
    justify-content: center;
}

.ai-privacy-lft {
    width: calc(60% - 20px);
}

.ai-privacy-Rgt {
    width: calc(40% - 20px);
}

.ai-privacySubheadingInn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.tab-wrapper {
    max-width: 1000px;
    width: 100%;
    padding: 0 10px;
}

.personal-info-aiwrap {
    display: flex;
    justify-content: center;
}

.AIprivacy-card {
    border-radius: 35px;
    padding: 85px 100px 65px 35px;
    position: relative;
    justify-self: center;
    transition: transform .25s ease;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF20;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

/*.AIprivacy-icon{width:65px;height:65px;border-radius:16px;background:linear-gradient(to bottom right,#1F80FF 0%,#9720FF 50%,#FB20FF 100%);display:flex;align-items:center;justify-content:center;position:absolute;top:-35px;right:30px;}*/

.AIprivacy-cardsOut {
    display: flex;
    justify-content: center;
    gap: 32px;
}

/*.AIprivacy-icon img{width:40px;height:40px;}*/

.AIprivacy-cardBut {
    margin-top: 35px;
}

.AI-domainCommonTil {
    font-size: 44px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    letter-spacing: 1.6px;
    color: var(--white-color);
}

.AIprivacy-card:hover {
    transform: translateY(-6px)
}

.faq_questn_card.AIdomainFaq::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 29px;
    background-image: url(/assets/images/icon/AI-faqTick.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.AIdomain-faq-title {
    color: var(--white-color);
}

.AIdomain-faq-para {
    color: #c0c0c0;
    border-bottom: 1px solid #41454E;
}

.ai-domainOut {
    background: url(/assets/images/Ellipse-bg.png) no-repeat;
    background-size: cover;
    background-position: right -100px top -200px;
    position: relative;
}

.ai-AbsoluteStripe {
    position: absolute;
    left: -7%;
    top: -9%;
}

.ai-AbsoluteStripe2 {
    position: absolute;
    right: -7%;
    top: -9%;
}

.ai-AbsoluteStripe3 {
    position: absolute;
    right: -7%;
    top: -15%;
}