:root {
  --primary-font: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --primary-color: #636363;
  --secondary-color: #000845;
  --black-color: #000000;
  --white-color: #ffffff;
  --blue-color: #2a7fff;
  --white-background: #ffffff;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Bold.woff2") format("woff2"),
    url("fonts/WorkSans-Bold.woff") format("woff"),
    url("fonts/WorkSans-Bold.ttf") format("truetype"),
    url("fonts/WorkSans-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    url("fonts/WorkSans-Medium.woff2") format("woff2"),
    url("fonts/WorkSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;

  /* CLS killers */
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  size-adjust: 100%;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Regular.woff2") format("woff2"),
    url("fonts/WorkSans-Regular.woff") format("woff"), url("fonts/WorkSans-Regular.ttf") format("truetype"),
    url("fonts/WorkSans-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-SemiBold.woff2") format("woff2"),
    url("fonts/WorkSans-SemiBold.woff") format("woff"),
    url("fonts/WorkSans-SemiBold.ttf") format("truetype"),
    url("fonts/WorkSans-SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FontAwesome";
  src: url("fonts/fontawesome-webfont.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("https://www.guvihost.com/assets/css/fonts/BarlowCondensed-Regular.eot");
  src: url("fonts/BarlowCondensed-Regular.eot@") format("embedded-opentype"),
    url("fonts/BarlowCondensed-Regular.woff2") format("woff2"),
    url("fonts/BarlowCondensed-Regular.woff") format("woff"),
    url("fonts/BarlowCondensed-Regular.ttf") format("truetype"),
    url("fonts/BarlowCondensed-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  outline: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

.col-100 {
  width: 100%;
}

.col-50 {
  width: 50%;
}

.floatLft {
  float: left;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textUpper {
  text-transform: uppercase;
}

.primary-font {
  font-family: var(--primary-font);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.black-color {
  color: var(--black-color);
}

.white-color {
  color: var(--white-color);
}

.white-background {
  background-color: var(--white-background);
}

input,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
}

input,
button,
div,
ul,
li {
  outline: none !important;
}

a:link,
a:visited {
  text-decoration: none;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ul li {
  list-style-type: none;
}

.wrapper {
  max-width: 1450px;
  width: 100%;
  padding: 0 10px;
}

.headerwrapper {
  max-width: 1450px;
  width: 100%;
  padding: 0 20px;
}

.smallWrapper {
  max-width: 1220px;
  width: 100%;
  padding: 0 10px;
}

.error_wrapper {
  max-width: 650px;
  width: 100%;
  padding: 0 10px;
}

.vertical_margin {
  padding-top: 100px;
}

.vertical_space {
  padding-top: 40px;
}

.body {
  width: 100%;
  overflow-x: auto;
}

.nopadding {
  padding: 0px;
}

.space-bottom {
  padding-bottom: 60px;
}

/******** hamburger css start *********/
.desktopLogo {
  display: block;
  max-height: 150px;
  width: auto;
}

.mobileLogo {
  display: none;
}

.NavItem_wrap {
  position: relative;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #5e5e5e;
}

.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);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
}

.host-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  height: 90px;
}

.hostheaderInnnew {
  display: flex;
  justify-content: center;
  height: 100px;
  padding: 0;
  align-items: center;
}

.host-header.sticky .hostheaderInnnew {
  height: 90px;
}

.host-header.sticky .desktopLogo {
  max-height: 150px;
}

.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: 40px;
  align-items: center;
}

.np-nav-menu>li>a {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 15px;
}

.np-nav-menu>li>a .css-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.25s ease;
}

.np-nav-menu.gpuNavMenu>li>a .css-arrow {
  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(--white-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: 0.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: static;
}

.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: 0.8rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.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;
  display: flex;
  gap: 50px;
}

.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;
}

.dropdown-content {
  position: absolute;
  top: 50px;
  /* header height */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 1300px;
  max-width: calc(100vw - 40px);

  background: #fff;

  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.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;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 998;
}

.dropdown-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.dropbtn.gpuMenuTxt.active-dropdown {
  color: #6871f3;
}

.gpuMenuTxt.active-dropdown .fa-angle-down {
  color: #6871f3;
}

.contact-flexDrop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-leftDrop,
.contact-rightDrop {
  min-width: 125px;
}

.vertical-separator {
  width: 1px;
  background-color: #000;
  align-self: stretch;
}

.contactParaTxt {
  font-size: 14px;
  color: #102d51;
  line-height: 20px;
  margin-top: 5px;
  font-weight: 500;
}

.dropdown-content.contactDropn {
  width: 400px;
  left: 100%;
  position: absolute;
  top: 48px;
}

.contact-itemnew {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}

.contact-itemnew:last-child {
  margin-bottom: 0;
}

.contactDropn .websuite-dropdown {
  display: flex;
  justify-content: center;
  padding: 25px;
}

.contactDropn.blacktheme .websuite-dropdown {
  display: flex;
  justify-content: center;
  padding: 25px;
  background: #16181d;
}

.blacktheme .protect_Title {
  color: var(--white-color);
}

.blacktheme .contactParaTxt {
  color: #c0c0c0;
}

.blacktheme .dropMenu {
  background-color: #16181d;
  border-bottom: 1px solid #16181d;
}

.blacktheme .vertical-separator {
  background-color: #c0c0c042;
}

.contactDropn .protect_para {
  font-weight: 500;
}

.dropbtn .css-arrow {
  transition: transform .25s ease;
}

.dropbtn.active-dropdown .css-arrow {
  transform: rotate(225deg);
}

/**** 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;
}

.header-placeholder {
  height: 100px;
}

.dropdown.show-dropdown>.dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/******** hamburger css end *********/
/* **********************************************************CSS Strip 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.2px;
  color: var(--secondary-color);
  line-height: 1.2;
  min-height: 10px;
}

.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;
}

.BannerBut_primary.first {
  margin-right: 20px;
}

.BannerBut_Out {
  display: flex;
}

.rating {
  display: flex;
  align-items: center;
}

.rating_Inn {
  height: 70px;
}

.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;
  gap: 20px;
  opacity: 1;
  pointer-events: auto;
}

.rating_List li:nth-child(2),
.rating_List li:nth-child(3) {
  display: none !important;
}

.rating_List li:first-child {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.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{will-change:transform;display:inline-flex;} */
.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;
  min-height: 170px;
}

.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_Rgt img {
  object-fit: contain;
}

.banner_Lft {
  width: 60%;
  padding-right: 160px;
}

.Icon_img {
  width: auto;
  height: auto;
  display: block;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  perspective: 1000px;
  width: 100%;
  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;
  position: relative;
  text-align: center;
}

.flip-card-backPara {
  color: var(--secondary-color);
}

.section_one_slider_wrap {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  min-height: 70px;
  visibility: hidden;
}

.section_one_slider_wrap .section_one_List {
  margin: 0 15px;
}

.blue_dot {
  color: var(--blue-color);
  font-weight: 600;
  font-size: 18px;
}

.section_one_slider_wrap.slick-initialized {
  visibility: visible;
}

.section_one_slider_wrap,
.slick-track {
  box-sizing: border-box;
}

.section_one_slider_wrap.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.flip-card,
.flip-card-inner,
.flip-card-front,
.flip-card-back {
  height: 100px;
}

/* section Two */
.section_two_TitleSec img {
  display: block;
  width: 180px;
  height: 3px;
  flex-shrink: 0;
}

.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.2px;
  color: #000845;
  text-align: center;
  z-index: 99;
  min-height: auto;
  line-height: 1.25;
}

.section_two_TitleSec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.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: 0;
  margin-top: -25px;
  margin-left: 19%;
  color: var(--secondary-color);
  text-align: center;
}

.Plan_price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 82px;
  position: relative;
  overflow: visible;
}

.priceCardList.slick-initialized {
  visibility: visible;
}

.priceCardList {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.slick-initialized.priceCardList {
  display: block;
}

.priceCardInn .slick-prev,
.priceCardInn .slick-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.priceCardInn .slick-prev {
  left: 10px;
}

.priceCardInn .slick-next {
  right: 10px;
}

.priceCardInn.arrows-visible .slick-prev,
.priceCardInn.arrows-visible .slick-next {
  opacity: 1;
  pointer-events: auto;
}

.priceCardList .priceCardList_li {
  will-change: transform;
  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;
  min-height: 520px;
  contain: layout paint;
}

.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;
}

.title_mainSec {
  min-height: 5px;
}

.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 {
  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: 600;
  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("../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: 600;
  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;
  letter-spacing: 0;
  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: 600;
  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;
  color: var(--secondary-color);
  margin: 8px 0;
}

.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;
  height: 90px;
}

/* 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;
}

.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: 40px;
  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;
}

.section_one_slider {
  min-height: 80px;
}

.client-logos {
  min-height: 120px;
  opacity: 0;
  visibility: hidden;
}

.client-logos.slick-initialized {
  opacity: 1;
  visibility: visible;
}

/* 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: 600;
  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;
  display: none;
}

.bestOfferBadge img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: auto;
}

/* 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: 25px;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column .footer-head {
  font-size: 16px;
  margin-bottom: 8px;
  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 {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.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;
  display: none;
}

.footer-brand-mobile {
  display: none;
}

.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;
  visibility: hidden;
}

.testimonial-slider.slick-initialized {
  visibility: visible;
}

.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;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}

.testimonial-img img {
  width: 100%;
  height: 99%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.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;
}

.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("../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: 40%;
  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: 600;
  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 {
  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;
}

.thankyouOne_Img {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.thankyouOne_Inn img {
  width: auto;
}

.thankyouOne_Text {
  text-align: center;
}

.thankyouOne_title {
  font-size: 44px;
  font-weight: 600;
  color: var(--blue-color);
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 15px;
}

.thankyouOne_subTitle {
  font-size: 30px;
  font-weight: 600;
  color: #00b67a;
  letter-spacing: 1.5px;
}

.thankyouOne_Para {
  color: var(--secondary-color);
  padding: 5px 0 10px;
}

.thankyouTwo_Out {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.exciting_revards_Out {
  padding: 25px 50px;
  background-color: #f4f5fe;
  border-radius: 35px;
  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: 20px;
  font-weight: 500;
  color: #102d51;
  text-align: center;
  margin-top: 10px;
}

.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: 27%;
  left: 30%;
  left: -37px;
  color: #00b67a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 132px;
  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: 33%;
  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;
  padding: 50px 0;
}

.terms_tabbing_Out {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.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: 18px 0;
  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: 22px;
  font-weight: 600;
  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;
  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;
  color: black;
  line-height: 100%;
  list-style: none;
  position: relative;
  margin-top: 15px;
}

.term_disk_hollow_text_wrap::before {
  content: "•";
  font-size: 34px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.term_disk_text_wrap.privacy-disk::before {
  display: none;
}

.term_disk_hollow_text_wrap.privacy-disk {
  padding-left: 20px;
}

.term_disk_hollow_text_wrap.privacy-disk::before {
  display: none;
}

/******************************************************* 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-dots li.slick-active button:before {
  color: transparent;
}

.hosting_service_List .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: 0.3s ease;
}

.hosting_service_List .slick-dots li.slick-active button {
  background-color: var(--blue-color);
}

.GpuHosting-serviceInn .hosting_service_List .slick-dots li.slick-active button {
  background-color: #3cdd3f;
}

.GpuHosting-serviceInn .hosting_service_List .slick-dots li button {
  border: 1px solid #3cdd3f;
}

.section_two_Title.linux {
  text-align: left;
}

.total-security {
  line-height: 30px;
  padding-top: 8px;
}

.priceCardList .slick-slide>div {
  height: 100%;
}

.priceCardInn {
  overflow: visible;
  min-height: 600px;
}

.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(../images/icon/cross-card-price-thumbnail.svg);
}

.price_special_feat_title {
  font-size: 18px;
  font-weight: 600;
  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(../images/client-buzz.webp) 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(../images/client-buzz.webp) no-repeat center center;
  position: absolute;
  right: -30px;
  top: 50%;
}

.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);
  line-height: 24px;
}

.hosting_introductory_head {
  font-size: 44px;
  color: var(--white-color);
  letter-spacing: 1.8px;
  font-weight: 600;
}

.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;
  border-radius: 20px;
}

.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: 600;
}

.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: 28px;
  font-weight: 600;
  color: #102d51;
  text-align: center;
  padding: 0 10px;
}

.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 {
  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);
  margin-top: 10px;
}

.priceCardList_RgtSide {
  border-left: 1px solid #e3e3e3;
  padding-left: 25px;
  width: 50%;
}

.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%;
}

.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: 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);
  background-color: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.OsVPS-imgBg {
  padding: 22px;
  display: flex;
  justify-content: center;
}

.VPS-OS-Title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--white-color);
}

.VPS-OS-Para {
  font-size: 16px;
  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: #eff1ff;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  color: var(--secondary-color);
}

.windowVPS_tab-btn.active {
  background-color: #102d51;
  color: #ffffff;
  z-index: 10;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



.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: 5px 0 5px;
}

.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;
}

.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: 600;
}

.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("../images/icon/card-price-thumbnail.svg");
}

.no::before {
  background-image: url("../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: 600;
}

.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;
}

.orangeBox {
  background-color: #ffeee6;
  border: none;
}

.purpleBox {
  background-color: #f3efff;
  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);
}

.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;
  display: block;
}

.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 0.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 0.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: 600;
  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: 600;
  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("../images/icon/tick-icon-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.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;
}

/*******************************************GPU Page**************************************************/
.page-wrapper {
  background-color: #0e1319;
  background-image: url("../images/noise-new.webp");
  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: 600;
  letter-spacing: 1.2px;
  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: 600;
  line-height: 60px;
  text-align: center;
  letter-spacing: 1.2px;
  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;
}

.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(../images/icon/gpu-faqiconn.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(../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 th,
.comparison-table td {
  border: 1px solid #4e5a66;
  padding: 20px 16px;
  font-size: 18px;
  color: #c0c0c0;
  font-weight: 400;
}

.comparison-table th {
  font-weight: 600;
}

.comparison-table td:first-child {
  text-align: left;
  font-size: 18px;
  color: #ffffff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-family: var(--primary-font);
  table-layout: fixed;
  padding: 40px 55px 55px;
}

.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;
}

.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% - 25px);
}

.GpuTabContentWrap {
  width: calc(50% - 25px);
}

.GpuTabBtn {
  display: block;
  text-align: center;
  background: none;
  border: none;
  font-size: 81px;
  line-height: 95px;
  font-weight: 600;
  color: #c0c0c0;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.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: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #41454e;
}

.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: var(--blue-color);
  text-decoration: underline;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.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 {
  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;
}

.VPS_priceCardListInn .slick-prev,
.VPS_priceCardListInn .slick-next {
  width: 20px !important;
  height: 20px !important;
  min-width: 30px;
  min-height: 30px;
  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%;
}

.VPS_priceCardListInn .slick-prev {
  background: #fff url("../images/icon/gpu-chevron-prev.svg") no-repeat center !important;
  background-size: 18px 18px !important;
  left: -6px;
}

.VPS_priceCardListInn .slick-next {
  background: #fff url("../images/icon/gpu-chevron-next.svg") no-repeat center !important;
  background-size: 18px 18px !important;
  right: -6px;
}

.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: 0.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: 20px !important;
  height: 20px !important;
  min-width: 30px;
  min-height: 30px;
  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("../images/icon/gpu-chevron-prev.svg") no-repeat center !important;
  background-size: 18px 18px !important;
}

.priceCardList .slick-next {
  background: #fff url("../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: var(--blue-color);
  border: 1px solid var(--blue-color);
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.priceCardList .slick-dots li.slick-active button {
  background-color: var(--blue-color);
  display: none;
}

.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;
  align-items: center;
}

.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 #dbdbdb;
  border-radius: 10px;
  font-size: 14px;
  color: #102d51;
}

.contact-form textarea {
  resize: none;
}

.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("../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;
}

.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: var(--blue-color);
  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, 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;
  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: 40px 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, 0.25);
  border: 1px solid #ffffff20;
}

.Ai-domainBannerPara {
  padding: 25px 34px 0;
  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: 270px;
  margin-top: 50px;
}

.ai-feature-TagOut {
  position: absolute;
  width: 750px;
}

.ai-feature-Tag span {
  padding: 7px 20px;
  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, 0.25);
  position: relative;
  justify-self: center;
  transition: transform 0.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: 15px;
}

.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, 0.35);
}

.ai-chip img {
  width: 40px;
  height: 40px;
  display: block;
  filter: brightness(0) invert(1);
}

.domain-icon {
  margin-bottom: 25px;
}

.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: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  opacity: 0.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("../images/ellipse-bg.webp") 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("../images/mat-ai.webp") no-repeat center top;
  background-size: cover;
  padding: 55px 0;
  position: relative;
  z-index: 99;
  gap: 65px;
  margin: 50px 0;
}

.ai-highlight-left {
  width: calc(40% - 30px);
  display: flex;
  justify-content: center;
}

.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);
  display: flex;
  justify-content: center;
}

.ai-privacySubheadingInn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 50px 0;
}

.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 0.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, 0.25);
}

.AIprivacy-cardsOut {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.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(../images/icon/ai-faqtick.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.AIdomain-faq-title {
  color: #c0c0c0;
}

.AIdomain-faq-para {
  color: #c0c0c0;
  border-bottom: 1px solid #41454e;
}

.ai-domainOut {
  background: url(../images/ellipse-bg.webp) 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%;
}

/* Domain cards */
.tldListNew {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.tldListWrap {
  width: 20%;
}

.tld-domainCard {
  border: 1px solid #dde6ef;
  border-radius: 10px;
  padding: 16px 6px;
  flex: 1;
  background: #fff;
}

.tld-Oprice {
  text-decoration: line-through;
  color: #8599ac;
  font-size: 12px;
  padding-bottom: 2px;
  padding-top: 2px;
}

.OcurencK {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: var(--fw-medium);
  font-size: 13px;
  color: #8599ac;
}

.NcurencK {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  color: #123455;
}

.tld-Nprice {
  font-size: 16px;
  font-weight: 600;
  color: #123455;
}

/* AI logo maker */
.LogoMaker {
  display: flex;
  justify-content: center;
  align-items: center;
}

.builtlogo-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  align-items: center;
}

.builtlogo-input input {
  padding: 12px 15px;
  width: 600px;
  border: 1px solid var(--blue-color);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  height: 80px;
}

.buildLogo-btn {
  background: #00b67a;
  border: none;
  padding: 16px 25px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 55px;
}

.buildlogoList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.buildlogo-card {
  display: flex;
  align-items: center;
}

.buildlogo-card img {
  border-radius: 20px;
  border: 1px solid #dbdbdb;
}

.buildlogo-cardInn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.generateMore {
  display: flex;
  justify-content: center;
}

.generate-btn {
  background: var(--blue-color);
  color: var(--white-color);
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}

.workLogomakes {
  display: flex;
  justify-content: center;
}

.workLogoInn {
  background-color: #eff1ff;
  border-radius: 35px;
  padding: 40px 0 65px;
}

.workLogo-img {
  display: flex;
  justify-content: center;
}

.workLogo-Cont {
  margin-top: 30px;
}

.workLogoList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.workLogoList-Wrap {
  width: calc(50% - 50px);
  position: relative;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  background-color: var(--white-color);
}

.workLogo-stepCard {
  padding: 35px;
}

.step-numberLogo {
  position: absolute;
  top: -30px;
  left: -40px;
  font-size: 110px;
  font-weight: 700;
  color: #00b67a;
}

.workLogoCardB {
  display: flex;
  justify-content: center;
  align-items: center;
}

.domainSpan {
  color: var(--secondary-color);
  font-size: 13px;
}

.hyperlinkColor {
  color: var(--blue-color);
}

.BannerGPUNewSec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.BannerGPUNewSec-Lft {
  width: calc(50% - 20px);
}

.BannerGPUNewSec-Rgt {
  width: calc(50% - 20px);
}

.cheapHostInn.dedicate {
  background: linear-gradient(to right, rgba(1, 228, 123, 0.1), rgba(3, 195, 240, 0.1)) border-box, linear-gradient(to right, rgba(1, 228, 123, 0.1), rgba(3, 195, 240, 0.1)) padding-box;
  color: #ffffff;
}

.LftBanner_heading.dedicate {
  color: #ffffff;
}

.LftBanner_Subheading.dedicate {
  color: #cccccc;
}

.headerList-Txt.dedicate {
  color: #cccccc;
}

.headerList-Txt.dedicate::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url("../images/icon/gpu-tickImg.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.GpuBut-wrap-lft {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.BannerBut_primary.Gpu-secondaryfill {
  color: var(--secondary-color);
  border: 1px solid transparent;
  background: linear-gradient(to right, #01e47b, #03c3f0) border-box, linear-gradient(to right, #01e47b, #03c3f0) padding-box;
}

.dediCateServertab {
  display: none;
}

.dediCateServertab.active {
  display: block;
}

.BannerGPUNewSec-Rgt {
  display: flex;
  justify-content: center;
}

.dedicaPlanBut-Wrap::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;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dedicaPlanBut-Wrap.active::before {
  opacity: 1;
  border-radius: 20px;
}

.dedicaPlanBut-Wrap.active {
  color: #fff;
}

.dedicaPlan-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dedicaPlanBut-Wrap {
  position: relative;
  flex: 0 0 calc(20% - 10px);
  max-width: calc(20% - 10px);
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #c0c0c0;
  padding: 12px 30px;
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: #ffffff0d;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  white-space: nowrap;
}

.easyWebsite-titleOut.gpu-cloud {
  border: 1px solid transparent;
  background: linear-gradient(to right, #01e47b, #03c3f0) border-box, linear-gradient(to right, #01e47b, #03c3f0) padding-box;
}

.gpu-cloud .Linux_shared_benefits_Content_head {
  color: #ffffff;
}

.gpu-cloud .Linux_shared_benefits_Content_para {
  color: #c0c0c0;
}

.Linux_shared_controlPannel_ListWrap.gpu-cloud {
  position: relative;
  background-color: #ffffff0d;
  border-radius: 20px;
  z-index: 1;
  border: none;
}

.Linux_shared_controlPannel_ListWrap.gpu-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  /* border thickness */
  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;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.Linux_shared_controlPannel_ListWrap.gpu-cloud:hover::before {
  opacity: 1;
}

.easyWebsite_handle_LftImg.gpu-cloud {
  border: none;
  background: transparent;
  padding: 0px;
}

.gpu_save {
  top: 140px !important;
}

.gpu_save-dis {
  top: 170px !important;
}

.gpu_save-dis2 {
  top: 155px !important;
}

.gpu_save-dis-3 {
  top: 130px !important;
}

/* Gaming server */
.gaming-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/gameserver-banner.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gamingBannerLft {
  width: 640px;
}

.gaming-bannerInn {
  padding: 80px 0 300px;
}

.gamingtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 57px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 70px;
  letter-spacing: 1.71px;
}

.gamingPara {
  font-size: 18px;
  color: #c6d9f0;
  line-height: 24px;
  padding-top: 22px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.54px;
  padding-right: 100px;
}

.gamingPrimaryBut {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  border: none;
  color: #ffffff;
  padding: 12px 32px;
  background: linear-gradient(to right, rgba(91, 43, 224, 1), rgba(107, 128, 247, 1));
  border-radius: 10px;
  display: inline-block;
  margin-top: 40px;
  letter-spacing: 0.54px;
  text-align: center;
}

.gamingtop-padding {
  padding-top: 90px;
}

.gamingbottom-padding {
  padding-bottom: 90px;
}

.gaming-gradient-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(14, 19, 25, 1) 0%, rgba(14, 19, 25, 0.95) 40%, rgba(14, 19, 25, 0.7) 70%, rgba(14, 19, 25, 0.3) 100%);
}

.whyGaming-server {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.whyGaming-serverInn {
  position: relative;
  z-index: 2;
}

.whyGaming-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 57px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 70px;
  text-align: center;
  letter-spacing: 1.71px;
}

.whyGaming-title span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 57px;
  text-transform: uppercase;
  background: linear-gradient(to right, rgba(91, 43, 224, 1), rgba(107, 128, 247, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 70px;
  text-align: center;
  letter-spacing: 1.71px;
}

.whyGaming-subtitle {
  font-size: 40px;
  color: #c6d9f0;
  padding-top: 22px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 1.2px;
  text-align: center;
  font-style: italic;
}

.whyGaming-para {
  font-size: 16px;
  color: #c6d9f0;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  line-height: 24px;
  text-align: center;
  max-width: 1000px;
  padding-top: 22px;
  margin: 0 auto;
}

.whyGaming-para.maxWidth {
  max-width: 1000px;
}

.why-chooseparaOut,
.Gaming-butcenter {
  display: flex;
  justify-content: center;
}

.gamingFeature {
  display: flex;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom, rgba(14, 19, 25, 0.3), rgba(14, 19, 25, 0)), url("../images/gaming-featurebg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gamingFeatureInn {
  position: relative;
  z-index: 2;
}

.gaming-tabs {
  display: flex;
  justify-content: center;
  gap: 150px;
  margin: 45px 0 40px;
  border-bottom: 1px solid #c6d9f0;
}

.gaming-tabsInn {
  background: none;
  border: none;
  color: #c6d9f0;
  font-size: 26px;
  font-weight: 400;
  cursor: pointer;
  padding-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Barlow Condensed", sans-serif;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.gaming-tabsInn.active {
  color: #fff;
  opacity: 1;
}

.gaming-tabsInn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(91, 43, 224, 1), rgba(107, 128, 247, 1));
  border-radius: 2px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Feature cards */
.feature-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 120px;
}

.feature-card {
  background: #0a111cbf;
  border-radius: 20px;
  padding: 30px;
  width: calc(50% - 15px);
}

.fetureCard-title {
  font-size: 22px;
  margin: 20px 0 15px;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.fetureCard-para {
  color: #c6d9f0;
  line-height: 21px;
  font-size: 15px;
}

.gamingContact {
  display: flex;
  justify-content: center;
  background-color: #0e1319;
}

.contact-form.gamingForm input,
.contact-form.gamingForm select,
.contact-form.gamingForm textarea {
  background: transparent;
  border: 1px solid #c6d9f042;
  color: #c6d9f0;
  margin-bottom: 20px;
}

.contact-form.gamingForm input::placeholder,
.contact-form.gamingForm textarea::placeholder {
  color: #c6d9f0;
  opacity: 1;
  /* important for Firefox */
}

.contact-form.gamingForm textarea {
  margin-bottom: 0px;
  resize: none;
}

.contact-form.gamingForm input::placeholder,
.contact-form.gamingForm select::placeholder,
.contact-form.gamingForm textarea::placeholder {
  color: #c6d9f0;
  border-radius: 10px;
}

.gamingContactForm {
  padding: 40px 120px 0;
}

.ContactFlex {
  display: flex;
  gap: 20px;
}

.contact-form.gamingForm .phone-wrapper {
  display: flex;
  width: 100%;
  gap: 20px;
}

.contact-form.gamingForm select {
  border-radius: 10px;
  appearance: none;
  background-image: url(https://www.guvihost.com/assets/images/gaming-page/gaming-contactarrow.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 35px;
  font-size: 14px;
  cursor: pointer;
  background-position: right 10px center;
  border-width: 1px;
  border-style: solid;
  border-color: #c6d9f042;
  border-image: initial;
  border-radius: 10px;
  color: #c6d9f0;
}

.contact-form.gamingForm textarea::placeholder {
  color: #c6d9f0;
}

.gamingSupportInn {
  background: url("../images/technical-supportbg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
}

.globalpresenceInn {
  display: flex;
  justify-content: flex-end;
  padding: 121px 0 80px;
}

.tryserverOut {
  display: flex;
  justify-content: center;
}

.ddosprotectOut {
  background: url("../images/ddosgamebg.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0 85px;
  display: flex;
  justify-content: center;
}

.ddosprotectInn {
  padding: 170px 0 170px;
}

.whyGaming-title.textlft {
  text-align: left;
}

.whyGaming-subtitle.textlft {
  text-align: left;
}

.whyGaming-para.textlft {
  text-align: left;
}

.why-chooseparaOut.textlft {
  justify-content: flex-start;
}

.gaming-warrior-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.warrior-img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.gamingContact-techgradient {
  position: relative;
  background: rgba(14, 19, 25, 1);
}

.gamingContact-techgradient::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(14, 19, 25, 0) 0%, rgba(14, 19, 25, 0.6) 50%, rgba(14, 19, 25, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

.gamingContact-techgradient>* {
  position: relative;
  z-index: 2;
}

.warrior-btn {
  position: absolute;
  background: rgba(14, 19, 25, 0.8);
  border: 1px solid rgba(91, 43, 224, 1);
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.03em;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-left.btn1 {
  top: 13%;
  left: 24%;
}

.btn-left.btn2 {
  top: 35%;
  left: 23%;
}

.btn-left.btn3 {
  bottom: 36%;
  left: 20%;
}

.btn-right.btn4 {
  top: 13%;
  right: 23%;
}

.btn-right.btn5 {
  top: 35%;
  right: 23%;
}

.btn-right.btn6 {
  bottom: 36%;
  right: 16%;
}

.btn-left.btn7 {
  bottom: 12%;
  left: 20%;
}

.btn-right.btn8 {
  bottom: 12%;
  right: 20%;
}

.warrior-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 0;
  border-bottom: 2px dotted #6b80f7;
  transform: translateY(-50%);
}

.btn-left::before {
  right: -100px;
}

.btn-right::before {
  left: -100px;
}

.warrior-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #6b80f7;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px #6b80f7;
}

.btn-left::after {
  right: -105px;
}

.btn-right::after {
  left: -105px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gaming-warrior-section.animate .btn1,
.gaming-warrior-section.animate .btn4 {
  animation: fadeUp 0.6s ease forwards;
}

.gaming-warrior-section.animate .btn2,
.gaming-warrior-section.animate .btn5 {
  animation: fadeUp 0.6s ease 0.8s forwards;
}

.gaming-warrior-section.animate .btn3,
.gaming-warrior-section.animate .btn6 {
  animation: fadeUp 0.6s ease 1.2s forwards;
}

.gaming-warrior-section.animate .btn7,
.gaming-warrior-section.animate .btn8 {
  animation: fadeUp 0.6s ease 2s forwards;
}

.globalpresence {
  position: relative;
  display: flex;
  justify-content: center;
  background: url(../images/game-playbg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: visible;
}

.globalpresence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient(to bottom, rgba(14, 19, 25, 1) 0%, rgba(14, 19, 25, 0.8) 40%, rgba(14, 19, 25, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.globalpresence::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(to bottom, rgba(13, 18, 25, 1) 0%, rgba(13, 18, 25, 0.95) 30%, rgba(13, 18, 25, 0.75) 60%, rgba(13, 18, 25, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.globalpresence>* {
  position: relative;
  z-index: 2;
}

.fetureCard-title.gamingFAQ {
  padding: 0;
  margin: 0;
}

.whyGaming-para.gamingFAQ {
  text-align: left;
}

.faq_questn_card.GamingFaq::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background-image: url(../images/icon/gaming-faqiconn.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.zoom {
  animation: scale 30s linear infinite;
}

@keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.parallax {
  background: linear-gradient(rgba(13, 18, 25, 0.3), rgba(13, 18, 25, 0.3)), url("../images/gamefaqbg.webp");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dropdown-content.contact {
  top: 48px;
}

.np-nav-menu.gpuNavMenu>li>a.gpuMenuTxt {
  color: #6871f3;
}

.np-nav-menu>li>a.gpuMenuTxt {
  color: #6871f3;
}

.contact-itemnew img {
  width: 50px;
  height: 50px;
}

/* Green Hosting */
.GreenHosting_Banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.GreenHosting_BannerInn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.GreenHosting_sub {
  font-size: 16px;
  font-weight: 600;
  color: #fab522;
  padding: 10px 15px;
  background-color: var(--white-color);
  border: 1px solid #fab522;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 25px;
}

.Greenhosting_title {
  color: var(--secondary-color);
}

.Greentext_green {
  color: #23a10d;
}

.GreenBanner_Lft {
  width: calc(50% - 50px);
}

.GreenBanner_rgt {
  width: calc(50% - 50px);
  display: flex;
  justify-content: center;
}

.Greenbanner_but {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.greenexBut {
  display: inline-block;
}

.Greenexplore {
  font-size: 18px;
  color: var(--white-color);
  background: linear-gradient(to right, #23a10d, #7fb800);
  border: 1px solid #7fb800;
  font-weight: 600;
  padding: 13px 37px;
  border-radius: 10px;
}

.Greenchatnow {
  font-size: 18px;
  color: #fab522;
  background-color: var(--white-color);
  border-radius: 10px;
  border: 1px solid #fab522;
  font-weight: 600;
  padding: 13px 37px;
}

.Greenhosting_para {
  font-weight: 500;
  margin-top: 20px;
}

.Greenleaf_abs1 img {
  position: absolute;
  right: 0%;
  bottom: 0%;
}

.Greenleaf_abs2 img {
  position: absolute;
  left: -2%;
  bottom: -25%;
}

.Greenleaf_abs3 img {
  position: absolute;
  right: 0%;
  top: -10%;
}

.Greenleaf_abs4 img {
  position: absolute;
  left: -0%;
  top: -7%;
}

.Greenleaf_abs5 img {
  position: absolute;
  right: 0%;
  bottom: 10%;
}

.Greenleaf_abs7 img {
  position: absolute;
  right: 0px;
  bottom: -25%;
}

.Greenleaf_abs8 img {
  position: absolute;
  left: -1%;
  top: 10%;
}

.Greenleaf_abs9 img {
  position: absolute;
  right: 0px;
  top: 5%;
}

.Greenleaf_abs10 img {
  position: absolute;
  left: -4%;
  bottom: -18%;
}

.Greensection_TwoMain {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Greensection_TwoMainInn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.Greenchoose_ListTitle {
  font-size: 30px;
  font-weight: 600;
  color: #1d4d4f;
}

.Greensection_Two_Lft {
  width: calc(55% - 60px);
}

.Greensection_Two_Rgt {
  width: calc(45% - 60px);
  position: relative;
}

.Greensection_Two_Rgt img {
  float: right;
  width: 100%;
}

.Greenchoose_ListOut {
  margin-top: 25px;
}

.Greenwhy_greenTxt {
  color: #23a10d;
  font-size: 18px;
  font-weight: 500;
}

.GreenwhyList_txt {
  font-size: 18px;
  font-weight: 500;
  margin-top: 23px;
  line-height: 1.3;
  position: relative;
  margin-left: 30px;
}

.Greenswitching {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-top: 33px;
  color: #1d4d4f;
}

.GreenwhyList_txt::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 16px;
  height: 20px;
  background-image: url("../images/icon/greencheck-small.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.Greenplay_icon {
  position: absolute;
  left: 100px;
  top: 70px;
  cursor: pointer;
}

.GreenPlanting_prog {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.GreenPlanting_progInn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.GreenPlanting_Rgt {
  width: calc(45% - 80px);
  position: relative;
}

.GreenPlanting_Lft {
  width: calc(55% - 50px);
}

.Greenplanting_ListOut {
  margin-top: 27px;
}

.Greenplanting_List_wrap_Inn {
  position: relative;
  padding-left: 35px;
  margin-top: 16px;
}

.Greenstay_green_title {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 600;
  color: #1d4d4f;
}

.Greenstay_green_subtitle {
  font-size: 16px;
  font-weight: 400;
}

.Greenplanting_List_wrap_Inn::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #fab522;
  border-radius: 50%;
  z-index: 2;
}

.Greenplanting_List_wrap_Inn::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 30px;
  width: 2px;
  height: calc(100% - 22px);
  background-color: #e3e3e3;
  z-index: 1;
}

.Greenplanting_para {
  font-size: 16px;
  font-weight: 500;
  margin-top: 34px;
}

.GreenPlanting_Rgt img {
  width: 100%;
}

.GreenPlanting_prog_absolute {
  position: absolute;
  width: 300px;
  height: 200px;
  background: linear-gradient(to right, #23a10d, #7fb800);
  padding: 22px 29px;
  border-radius: 10px;
  right: -50px;
  bottom: -85px;
}

.GreenPlanting_prog_absolute img {
  width: auto;
}

.GreenPlanting_prog_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-align: center;
  margin-top: 12px;
}

.GreenPlanting_prog_subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
  margin-top: 8px;
}

.Greenaward_Icon_prog {
  display: flex;
  justify-content: center;
}

.Greenweb_fetureOut {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 75px;
  position: relative;
}

.Greenfeature {
  text-align: center;
}

.Greenfeature_imageOut img {
  width: 100%;
  margin-top: 57px;
}

.Greengo_greenImg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-bottom: 8px solid #23a10d;
  border-right: 8px solid #23a10d;
  border-bottom-right-radius: 10px;
  border-top: none;
  border-left: none;
  box-sizing: border-box;
  background: transparent;
  pointer-events: none;
  border-radius: 6px;
}

.Greenmain-container {
  position: relative;
  width: 700px;
  margin: auto;
}

.Greencenter-image {
  width: 100%;
  height: auto;
  display: block;
}

.Greenboxfeature {
  position: absolute;
  padding: 18px 33px;
  color: #1d4d4f;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1d4d4f;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.Greeneco-cooling {
  top: 67px;
  left: -150px;
}

.Greenssl-backups {
  top: 310px;
  left: -250px;
}

.Greengreen-support {
  bottom: 112px;
  left: -228px;
}

.Greenrenewable-energy {
  top: 67px;
  right: -208px;
}

.Greenssd-storage {
  top: 310px;
  right: -220px;
}

.Greenvirtualisation {
  bottom: 112px;
  right: -228px;
}

.Greenlg-backdrop {
  background-color: var(--white-color) !important;
}

.Greenlg-outer {
  width: 820px !important;
  height: 540px !important;
  margin: auto;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-width: 800px;
  max-height: 500px;
}

.Greenlg-img-wrap {
  background: var(--white-color) !important;
  padding: 10px;
  box-sizing: border-box;
}

.Greenlg-thumb-outer {
  background: var(--white-color);
  padding-top: 5px;
  bottom: 0;
  bottom: 10px;
}

.Greenlg-close {
  top: 10px !important;
  right: 15px !important;
  font-size: 28px;
  color: #333 !important;
  background: var(--white-color);
  border-radius: 50%;
  padding: 5px 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: var(--white-color);
}

.Greenlg-outer .Greenlg-thumb-outer {
  background-color: var(--white-color) !important;
}

.Greenlg-next,
.Greenlg-prev {
  background-color: #1d4d4f !important;
}

.Greendata_centerOut {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.GreendataCener1st {
  margin: 26px 0 41px;
  display: flex;
  justify-content: center;
}

.GreendataCener2nd {
  display: flex;
  justify-content: center;
}

.GreendataCener2nd img {
  width: 100%;
}

.GreendataCard_title {
  font-size: 22px;
  font-weight: 600;
  color: #1d4d4f;
  margin: 26px 0 13px;
}

.GreendataCard_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.GreendataCenter_cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 36px;
  position: relative;
}

.GreendataCenter_cards li {
  width: calc(33.33% - 13px);
  border-radius: 10px;
  padding: 25px 27px 21px 30px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px #e3e3e3;
  cursor: pointer;
  background: var(--white-color);
  z-index: 99;
}

.GreendataCenter_cards li:hover {
  border-color: rgba(35, 161, 13, 0.1);
  box-shadow: inset 0 0 0 0px #23a10d, 0 4px 15px rgba(35, 161, 13, 0.2);
}

.GreenPlan_price {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.GreenpriceCardList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 37px;
  gap: 20px;
}

.GreenpriceCardList .GreenpriceCardListInn {
  width: calc(33.33% - 10px);
  float: left;
  border: 5px solid transparent;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px #c5c5c5;
  cursor: pointer;
  background: var(--white-color);
  z-index: 99;
}

.GreenpriceCardList li:hover {
  border-color: rgba(35, 161, 13, 0.1);
  box-shadow: inset 0 0 0 0px #23a10d, 0 4px 15px rgba(35, 161, 13, 0.2);
}

.GreenpriceCardList li:hover .planButInnGreen {
  background: linear-gradient(to right, #23a10d, #7fb800);
  color: var(--white-color);
  border: none;
}

.GreenCardTitle {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  color: #1d4d4f;
  margin-bottom: 17px;
}

.GreenpriceSave {
  position: relative;
}

.GreenpriceSaveTxt {
  position: absolute;
  left: -25px;
  padding: 0 5px;
  background-color: palegreen;
  width: 105px;
  height: 29px;
  background-color: #23a10d;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
}

.GreenpriceSaveTxtSpan {
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
  background: transparent;
}

.GreenpriceOld {
  font-size: 26px;
  color: #23a10d;
  text-align: center;
  font-weight: 400;
  text-decoration: line-through;
}

.GreenpriceNew {
  font-size: 48px;
  color: #1d4d4f;
  text-align: center;
  margin-top: 6px;
  font-weight: 600;
}

.GreenpriceNewSpan {
  font-size: 30px;
  color: #1d4d4f;
  text-align: center;
  font-weight: 600;
}

.GreenplanBut {
  display: block;
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.GreenplanButInn {
  padding: 12px 30px;
  background-color: var(--white-color);
  color: #fab522;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #fab522;
}

.GreenBuyHostTxt2 {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: #23a10d;
  margin-top: 12px;
}

.GreenBuyHostTxt {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: #1d4d4f;
}

.GreenKey_Features {
  font-size: 18px;
  font-weight: 600;
  color: #1d4d4f;
}

.GreenHostFeature {
  border-top: 1px solid #e3e3e3;
  padding-top: 32px;
  margin-top: 21px;
}

/*.GreenHostFeatureList li{font-size:15px;position:relative;padding:0;border:none;padding-left:35px;margin-top:17px;width:100%;float:left;font-weight:400;box-shadow:none !important;transition:none !important;}
*/
/*.GreenHostFeatureList li{border-color:transparent;box-shadow:none;}
*/
/*.GreenHostFeatureList li::before{content:"";position:absolute;left:0;top:0px;width:20px;height:20px;background-image:url('/assets/images/icon/greenhcheck-mark.svg');background-size:contain;background-repeat:no-repeat;}
*/
.GreenbestSeller {
  position: relative;
}

.Greenbest_sellerInn {
  position: absolute;
  right: -25px;
  top: -25px;
  border-radius: 5px;
  padding: 5px;
  background-color: #fab522;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.Greenwhy_hostOut {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.GreenwhyHost_main_Txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-top: 47px;
  position: relative;
}

.Greenwhy_host_Lft {
  width: calc(45% - 30px);
  position: relative;
}

.Greenwhy_host_Rgt {
  width: calc(55% - 30px);
}

.Greenwhy_host_Lft img {
  width: 100%;
}

.Greenwhy_host_RgtListCard {
  padding: 20px 0;
  padding-left: 26px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  margin-top: 23px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.Greenwhy_host_Rgt_TxtTitle {
  font-size: 22px;
  font-weight: 600;
  color: #1d4d4f;
}

.Greenwhy_host_Rgt_Txtpara {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 5px;
}

.Greengallery_img {
  position: absolute;
  left: 330px;
  bottom: 130px;
}

.GreenfaqOut {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Greenfaq_questn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Greenfaq_questn_List {
  width: 970px;
  margin-top: 40px;
}

.Greenfaq_questn_card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.Greenfaq_questn_Txt_title {
  font-size: 21px;
  font-weight: 600;
  color: #1d4d4f;
}

.Greenfaq_questn_Txt_Para {
  font-size: 16px;
  font-weight: 400;
  color: #1d4d4f;
  line-height: 22px;
  margin-top: 17px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 26px;
}

.Greenwhy_hostInn {
  position: relative;
}

.go_greenTxt {
  background: transparent;
  position: absolute;
  left: 166px;
  top: 66px;
}

.go_greenTxt_title {
  background: transparent;
  font-size: 36px;
  font-weight: 600;
  color: #1d4d4f;
  letter-spacing: 1px;
}

.go_greenTxt_para {
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #1d4d4f;
  line-height: 22px;
  padding-left: 23px;
  padding-top: 13px;
}

.go_greenImg_Out {
  padding: 0px 100px;
}

.greenTalkBut {
  padding: 12px 47px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  background: linear-gradient(to right, #23a10d, #7fb800);
  display: inline-block;
  border-radius: 10px;
}

.green_dropBut {
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fab522;
  border: 1px solid #fab522;
  display: inline-block;
  border-radius: 10px;
}

.GoGreen_But {
  background-color: transparent;
  margin-top: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.faq_questn_Txt_Para.faqLastChild {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.Greenmain-container {
  display: flex;
  justify-content: center;
}

.go_greenImg {
  background-image: url(../images/greenfooterbg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  height: 364px;
  border: 1px solid #23a10d;
}

.Greenfaq_questn_card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.Greenfaq_questn_card::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: url("../images/icon/green-hostingfaq.svg") no-repeat center;
  background-size: contain;
}

/* Build AI page */
.builAI-title {
  font-size: 56px;
  text-align: center;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  position: relative;
}

.builAI-subtitle {
  text-align: center;
  width: 800px;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: 18px;
}

.builderAI {
  display: flex;
  justify-content: center;
}

.builderAIInn {
  padding-top: 40px;
}

.builAI-subtitlecenter {
  display: flex;
  justify-content: center;
  margin: 27px 0 36px;
}

.buldAi-image {
  display: flex;
  justify-content: center;
}

.buldAi-image img {
  width: 100%;
}

.buildetextInn {
  position: absolute;
  width: 335px;
  height: 120px;
  top: -25px;
  right: 10.7%;
}

.AIbuilderBut {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.feturebarOut {
  display: flex;
  justify-content: center;
}

.feature-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #dbdbdb;
  padding: 15px 30px;
  gap: 80px;
  background: #fff;
  border-bottom: 1px solid #dbdbdb;
}

.feature-item {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #102d51;
  letter-spacing: 1.2px;
  padding-left: 40px;
  text-align: center;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/feturebuild-icon.svg") no-repeat center;
  background-size: contain;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #2a7fff;
}

.chooseAIbuild {
  display: flex;
  justify-content: center;
  align-items: center;
}

.buildAiCenter {
  display: flex;
  justify-content: center;
}

.padding-side {
  padding-left: 80px;
  padding-right: 80px;
}

.meet-websiteLft {
  display: flex;
  justify-content: center;
  width: 50%;
}

.meet-websiteRgt {
  width: 50%;
}

.meet-websitewrap {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.meet-websiteOutbox {
  display: flex;
  justify-content: center;
  padding: 60px 120px;
}

.websites-txttitle {
  font-size: 30px;
  font-weight: 600;
  line-height: 34px;
  color: #00b67a;
}

.websites-subtxttitle {
  font-size: 26px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-top: 30px;
}

.websites-txt {
  color: #102d51;
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
  position: relative;
  padding-left: 25px;
}

.meetBut-aibuilder {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.meetWebsiteBaseTxt {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 18px 0;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  text-align: center;
  margin-top: 40px;
}

.buildplanList {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.buildplanList-wrap {
  width: calc(50% - 15px);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 35px;
}

.buildAI-plan {
  display: flex;
  justify-content: center;
}

.buildAI-CardTitle {
  font-size: 30px;
  font-weight: 600;
  color: #102d51;
  margin-bottom: 11px;
}

.buildAI-priceNew {
  font-size: 44px;
  color: var(--secondary-color);
  margin-top: 6px;
  font-weight: 600;
}

.buildAI-priceSpan {
  font-size: 30px;
  color: var(--secondary-color);
  font-weight: 400;
}

.buildplanListInn {
  display: flex;
  margin-bottom: 15px;
}

.buildplanListInn-Lft {
  width: 50%;
}

.buildplanListInn-Rgt {
  width: 50%;
  border-left: 1px solid #dbdbdb;
  padding-left: 25px;
}

.buildAI-horizntal {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #dbdbdb;
  gap: 40px;
  background: #fff;
  padding-top: 15px;
}

.buildAI-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
}

.buildAI-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon/feturebuild-icon.svg") no-repeat center;
  background-size: contain;
}

.buildAI-geyfeture {
  font-size: 16px;
  font-weight: 500;
  color: #2a7fff;
}

.BannerBut_primary.buildAi {
  text-align: center;
  background-color: #fff;
  border: 1px solid #000845;
  color: #000845;
}

.BannerBut_primary.buildAi:hover {
  border: 1px solid var(--blue-color);
  background-color: var(--blue-color);
  color: var(--white-color);
}

.ai-builderprtect {
  display: flex;
  justify-content: center;
}

.ai-protectList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.ai-protectListWrap {
  width: calc(33.33% - 25px);
  border-radius: 20px;
}

.ai-protectList-txt {
  padding: 50px 35px;
  font-size: 21px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: center;
}

.ai-advanceList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
}

.ai-advanceList-wrap {
  width: calc(33.33% - 60px);
}

.ai-advanceList-Inn {
  display: flex;
  gap: 20px;
}

.advance-Txttitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.advance-Txtsubtitle {
  font-size: 17px;
  font-weight: 400;
  color: #102d51;
  margin-top: 13px;
}

.ai-customerOut {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-testimonial {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ai-testimonial-Lft {
  width: calc(70% - 20px);
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.ai-testimonial-Rgt {
  width: calc(30% - 20px);
  display: flex;
  align-items: end;
  border-radius: 20px;
}

.aitestimonial-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 0px 75px;
  box-sizing: border-box;
  width: 100%;
  padding-top: 10px;
}

.ai-testimonial-text {
  flex: 1;
  padding-right: 20px;
}

.ai-testimonial-para {
  font-size: 19px;
  color: var(--secondary-color);
  line-height: 26px;
  font-style: italic;
  text-align: center;
  padding: 0 65px;
}

.ai-testimonial-title {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
}

.ai-testimonial-img {
  display: flex;
  justify-content: center;
}

/* feature-item::before .ai-testimonial-img img{width:265px;height:285px;object-fit:cover;}
*/
.ai-testimonial-img.rgtimg-ai {
  margin-top: 50px;
}

.ai-testimonial-title.purple {
  color: #2a7fff;
}

.ai-testimonial-title.green {
  color: #00b67a;
}

.ai-testimonial-title.yellow {
  color: #e29c2c;
}

.comparision_title.ai-tabletil {
  color: #102d51;
  font-weight: 600;
  font-size: 22px;
}

.HostingComparision_Inn.ai-buildertable {
  border: 1px solid #dbdbdb;
}

.ai-developOut {
  display: flex;
  justify-content: center;
}

.ai-developinn {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  padding: 60px 90px;
  border-radius: 20px;
}

.ai-developlft {
  width: calc(50% - 10px);
  float: left;
}

.ai-developRgt {
  width: calc(50% - 10px);
  display: flex;
  justify-content: center;
}

.section_two_Title.lfttext {
  text-align: left;
}

.ai-developSubtitle {
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 30px;
}

.builAI-title.mobile {
  display: none;
}

.comparision_subtitle.aiprice {
  font-weight: 500;
}

.ai-strongprotect {
  display: flex;
  justify-content: center;
}

.websites-txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background-image: url(../images/icon/ai-builddigonal.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* Plan box */
.os-planOut {
  display: flex;
  justify-content: center;
}

.os-planList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.os-planListWrap {
  width: calc(50% - 30px);
  border: 1px solid #dbdbdb;
  padding: 30px;
  border-radius: 20px;
}

.os-planTitle {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #102d51;
  margin-bottom: 20px;
}

.os-planPrice {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: var(--secondary-color);
}

.os-planPriceSpan {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: var(--secondary-color);
}

.os-planfeture {
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  color: var(--secondary-color);
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  position: relative;
}

.priceSaveTxt.osplan {
  left: -30px;
  top: 100px;
}

.backupservice-outbox {
  padding: 60px 120px;
  display: flex;
  justify-content: center;
}

.backupservice-slider-section {
  margin: 20px 0;
}

.backupservice-slider-section label {
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 20px;
}

.backupservice-slider-options {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 10px;
}

.backupservice-slider-option {
  font-size: 15px;
  color: #0040ff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.backupservice-slider-option.active {
  background: #0040ff;
  color: #fff;
}

.backupservice-plan-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.backupservice-option-box {
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.backupservice-option-label {
  font-weight: 500;
  color: #102d51;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
  font-size: 18px;
}

.backupservice-option-box select,
.backupservice-counter,
.backupservice-backup,
.backupservice-price {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  color: #000845;
}

.backupservice-option-box select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url(../images/icon/contactus-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.backupservice-counter,
.backupservice-backup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.backupservice-counter button,
.backupservice-backup button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #0040ff;
}

.backupservice-counter span,
.backupservice-backup span {
  color: #000845;
}

.GreenpriceCardList .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #23a10d;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.GreenpriceCardList .slick-dots {
  position: absolute;
  bottom: -15px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
}

.GreenpriceCardList .slick-dots li.slick-active button {
  background-color: #23a10d;
  box-shadow: none;
}

.GreenpriceCardList .slick-dots li {
  box-shadow: none;
}

.GreenpriceCardList .slick-dots li button:before {
  font-size: 0px;
}

/* datacenter mumbai */
.center-titlepg {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.center-titlepgTxt {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline;
  font-size: 16px;
  background: linear-gradient(to right, rgba(91, 43, 224, 0.2), rgba(107, 128, 247, 0.2));
}

.centerMubInn-one {
  display: flex;
  justify-content: center;
  align-items: center;
}

.datacenter-but {
  display: flex;
  justify-content: center;
}

.LftBanner_heading.centerMub {
  text-align: center;
}

.LftBanner_Subheading.centerMub {
  text-align: center;
}

.centerMubTxt {
  padding: 33px 0;
}

.BannerBut_primary.centerMub {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #5b2be0, #6b80f7) border-box, linear-gradient(#5b2be0, #5b2be0) padding-box;
  background-origin: border-box;
  font-size: 18px;
}

.centerMub-img {
  display: flex;
  justify-content: center;
}

.datacenter-featureList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 45px;
}

.datacenter-featureListwrap {
  width: calc(50% - 30px);
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
}

.datacenter-featureListInn.oneimg {
  display: flex;
  justify-content: center;
  width: 100%;
}

.datacenter-featureListInn.oneimg img {
  width: 100%;
}

.datatitle-feature {
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  color: #102d51;
  font-style: italic;
  padding-bottom: 25px;
}

.datacenter-featuretitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

.datacenter-feature-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 23px;
  margin-top: 25px;
}

.datacenter-feature {
  display: flex;
  justify-content: center;
}

.datacenter-featureListwrap.noborder {
  border: none;
}

.datacenter-featureListInn.datacenter-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.datacenter-imgwrap {
  width: 35%;
}

.datacenter-featurebox.width {
  width: 65%;
}

.datacenter-imgtitle {
  display: flex;
  align-items: center;
}

.datacenter-interfaceInn {
  display: flex;
  justify-content: center;
}

.datamumbai-card-img {
  display: flex;
  justify-content: center;
}

.datamumbai-diagonal-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.datamumbai-card {
  width: calc(33.33% - 20px);
  padding: 35px;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
}

.datamumbai-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 24px;
}

.datamumbai-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 10px;
  line-height: 23px;
}

.datamumbai-card:nth-child(1) {
  transform: translateY(40px);
}

.datamumbai-card:nth-child(2) {
  transform: translateY(-20px);
}

.datamumbai-card:nth-child(3) {
  transform: translateY(-60px);
}

.mumbaismt {
  display: flex;
  justify-content: center;
}

.mumbaismt-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 55px 55px 0 55px;
}

.mumbaismt-listwrap {
  width: calc(50% - 20px);
  padding: 40px;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
}

.mumbaismt-img {
  display: flex;
  justify-content: center;
}

.mumbaismt-img img {
  height: 250px;
}

.mumbaismt-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin: 35px 0 20px;
  width: 100%;
  float: left;
}

.mumbaismt-para {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  line-height: 23px;
}

.mumbaismt-feture {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  margin-top: 30px;
  gap: 20px;
}

.mumbaismt-fetureTxt {
  width: calc(50% - 20px);
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-color);
  position: relative;
  padding-left: 24px;
}

.mumbaismt-fetureTxt::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../images/icon/feature-datacentertick.svg") no-repeat center;
  background-size: contain;
}

.BannerBut_primary.mumbaismt-but {
  width: 100%;
  text-align: center;
}

.mumbaismt-butOut {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.mumbaismtMigateInn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 45px 90px;
  position: relative;
  z-index: 10;
}

.mumbaismt-migrateLft {
  width: calc(55% - 40px);
}

.mumbaismt-migrateRgt {
  width: calc(45% - 40px);
  display: flex;
  justify-content: center;
}

.mumbaismt-migrate {
  background: linear-gradient(to top, #5b2be0, #6b80f7);
  margin-top: 40px;
  border-radius: 20px;
}

.mumbaismt-migrateTitle {
  font-size: 30px;
  font-weight: 600;
  color: var(--white-color);
}

.mumbaismt-migratePara {
  font-size: 16px;
  font-weight: 400;
  color: #e5e4ff;
  line-height: 23px;
  margin: 21px 0 25px;
}

.mumbaismt-migrateFeture {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mumbaismt-migrateFetureTxt {
  font-size: 14px;
  font-weight: 500;
  color: #e5e4ff;
  line-height: 19px;
  position: relative;
  width: calc(50% - 10px);
  padding-left: 30px;
}

.BannerBut_secondary.centerMub {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--white-color, #fff);
  border: 1px solid #6b80f7;
  position: relative;
  cursor: pointer;
}

.BannerBut_secondary.centerMub .gradient-text {
  display: inline-block;
  background: linear-gradient(to right, #5b2be0, #6b80f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 18px;
}

.mumbaismt-migrateFetureTxt::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/icon/feature-datacentertickwhite.svg) no-repeat center;
  background-size: contain;
}

.dataCnter-footerUpInn {
  display: flex;
  justify-content: center;
  gap: 150px;
  align-items: center;
  padding: 45px 0;
  background: linear-gradient(to top, #5b2be0, #6b80f7);
  border-radius: 20px;
}

.dataCnter-footerUp {
  padding: 70px;
}

.dataCnter-footerUp-Txt {
  font-size: 36px;
  font-weight: 600;
  color: var(--white-color);
  text-align: center;
}

.dataCnter-footerUpPara {
  font-size: 30px;
  font-weight: 500;
  color: var(--white-color);
  line-height: 43px;
}

.description.webmumbaitxt {
  display: inline-block;
  background: linear-gradient(to right, #5b2be0, #6b80f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.faq_questn_card.mumbai:before {
  background-image: url(../images/icon/mumbaifaqtick.svg);
}

.datacenter-featureListwrap.nopadding {
  padding: 40px 0px;
}

.mumbaigradient {
  background: linear-gradient(to right, rgba(91, 43, 224, 0.1), rgba(107, 128, 247, 0.1));
  border: 1px solid transparent;
}

.datacenter-imgtitle img {
  width: 1150px;
}

.delhibg {
  color: #462e1c;
}

.delhilinearbg {
  background: linear-gradient(to bottom, #fee1bf, #b77e51);
}

.delhititle {
  background: linear-gradient(to bottom, rgba(254, 225, 191, 0.2), rgba(183, 126, 81, 0.2));
}

.delhiexplore {
  background: #462e1c;
  border: 1px solid #462e1c;
}

.delhichatnow {
  border: 1px solid #462e1c;
}

.delhichat-txt {
  color: #462e1c;
  font-size: 18px;
}

.mumbaismt-fetureTxt.delhi::before {
  background: url("../images/icon/delfeature-datacentertick.svg") no-repeat center;
  background-size: contain;
}

.mumbaismt-migrateFetureTxt.delhi::before {
  background: url("../images/icon/deldatatickwht.svg") no-repeat center;
  background-size: contain;
}

.delhiTxtcolor {
  color: #dbc8b9;
}

.delhiTxtgradient {
  background: linear-gradient(to bottom, #fee1bf, #b77e51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.BannerBut_secondary.delhititle {
  background: linear-gradient(to bottom, rgba(254, 225, 191, 0.9), rgba(183, 126, 81, 0.9));
  border: 1px solid #462e1c;
  color: #fff;
}

.BannerBut_secondary.delhititle .gradient-text {
  color: #fff;
  font-size: 18px;
}

.service-box .description.pricedelhi {
  color: #462e1c;
}

.faq_questn_card.delhifaq:before {
  background-image: url(../images/icon/delhifaqtick.svg);
}

.search-btn.delhifooterbut {
  color: #e8af85;
  border: 1px solid #e8af85;
  background-color: transparent;
}

.service-box.delhititle {
  border: 0px solid transparent;
}

.datacenter-interface .section_two_Title {
  text-align: left;
}

.kolkatachatnow {
  border: 1px solid #0d47a1;
  background: #fff;
}

.kolkatachat-txt {
  font-size: 18px;
  background: linear-gradient(to bottom, #1e88e5, #0d47a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.kolkatatitle {
  background: linear-gradient(to bottom, rgba(30, 136, 229, 0.2), rgba(13, 71, 161, 0.2));
}

.kolkataexplore {
  background: linear-gradient(to bottom, #1e88e5, #0d47a1);
  border: 1px solid #1e88e5;
}

.service-box .description.pricekolkata {
  background: linear-gradient(to bottom, #1e88e5, #0d47a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mumbaismt-fetureTxt.kolkatatick::before {
  background: url("../images/icon/kolkatatick.svg") no-repeat center;
  background-size: contain;
}

.faq_questn_card.kolkatafooter:before {
  background-image: url(../images/icon/kolkatatick-footer.svg);
}

.dataCnter-footerUp {
  display: flex;
  justify-content: center;
}

.chennaiexplore {
  background: #433d30;
  border: 1px solid #433d30;
}

.chennaichatnow {
  border: 1px solid #433d30;
}

.chennaichat-txt {
  color: #433d30;
  font-size: 18px;
}

.chennaititle {
  background: #ffc3001a;
}

.mumbaismt-migrateTitle.chennaiTxtgradient {
  color: #ffc300;
}

.chennai-yellowbut {
  background: #ffc300;
  border: 1px solid #ffc300;
}

.chennai-yellowbut span {
  color: #433d30;
}

.service-box .description.webchennaitxt {
  color: #433d30;
}

.mumbaismt-fetureTxt.chennaitick::before {
  background: url("../images/icon/chennaitick.svg") no-repeat center;
  background-size: contain;
}

.mumbaismt-migrateFetureTxt.chennaitickyel::before {
  background: url(../images/icon/chennaitick-yellow.svg) no-repeat center;
}

.faq_questn_card.chennaifaq:before {
  background-image: url(../images/icon/chennaitick-faq.svg);
}

.search-btn.chennaifooterbut {
  border: 1px solid #ffc300;
  color: #ffc300;
}

.mumbaismt-migrateFetureTxt.chennaitickyel {
  color: #fff;
}

.chennaimigrate {
  color: #fff;
}

.chennaiTxtgradient {
  color: #ffc300;
}

.service-box.chennaititle {
  border: 1px solid transparent;
}

.infrastructOut {
  display: flex;
  justify-content: center;
}

.infrastructList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.infrastructList-Wrap {
  width: calc(16.66% - 18px);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  display: flex;
}

.infrastructInn-Wrap {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wordpress-intensiveTitle.colocation {
  padding-bottom: 20px;
}

.colocation-data {
  display: flex;
  justify-content: center;
}

.co-highlight-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 35px;
  width: 90%;
  margin-top: 40px;
}

.co-highlight-wrap {
  width: calc(33.33% - 30px);
  position: relative;
  padding-left: 70px;
}

.co-highlight-txt {
  font-size: 16px;
  font-weight: 600;
  color: #102d51;
  position: relative;
  text-transform: uppercase;
}

.co-highlight-txt::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/icon/feturebuild-icon.svg) no-repeat center;
  background-size: contain;
}

.co-highlight-list .co-highlight-wrap:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7))::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #2a7fff;
}

.co-highlight {
  display: flex;
  justify-content: center;
}

.meet-websiteRgt .websites-txt:first-child {
  margin-top: 0;
}

.colocation-contacttitle {
  font-size: 30px;
  font-weight: 600;
  color: #000845;
  margin-bottom: 20px;
}

.dc-colocationTxt {
  font-size: 22px;
  font-weight: 600;
  color: #000845;
  line-height: 28px;
}

.dc-colocationsubTxt {
  color: var(--secondary-color);
  padding-top: 10px;
  line-height: 23px;
  font-size: 16px;
}

.ContactForm-colocation {
  width: 70%;
}

.ContactForm-colocationInn {
  display: flex;
  justify-content: center;
}

.ai-developRgt img {
  border-radius: 20px;
}

/* Blog page */
.BlogHeader {
  display: flex;
  justify-content: center;
}

.blogMainImg-anchor {
  width: 100%;
  float: left;
}

.blogMainImg img {
  object-fit: contain;
  margin: 30px 0;
  border-radius: 10px;
  width: 100%;
  height: 400px;
}

.blogMainImg {
  display: flex;
  justify-content: center;
}

.BlogSecTwo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.Blog-parag {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 10px;
}

.blogTabFun {
  display: inline-block;
}

.blog-tabs {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 50px 0;
  border: 1px solid #dbdbdb;
  background: #fff;
  border-radius: 5px;
}

.blog-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--secondary-color);
  text-align: center;
  padding: 20px 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--primary-font);
  border-left: 1px solid #dbdbdb;
  transition: all 0.2s ease;
}

.blog-tab:hover {
  background: #f5f7ff;
}

.blog-tabs .blog-tab:first-child {
  border-left: none;
}

.blog-tab.active {
  color: #2a7aff;
  font-weight: 600;
}

.blog-tab:focus {
  outline: none;
}

.recent-blogtitle {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #000845;
  display: inline;
}

.BlogSectitleLine {
  position: relative;
  display: inline;
}

.viewallSpan {
  position: absolute;
  right: 0px;
  top: 25px;
  cursor: pointer;
}

.blog-listtitle a {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 15px;
  width: 100%;
  float: left;
  transition: color 0.2s ease;
}

.blog-listtitle a:hover {
  color: var(--blue-color);
}

.blog-listsubtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 15px;
  margin-top: 15px;
  position: relative;
  padding-left: 25px;
  width: 100%;
  float: left;
}

.blog-list {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.blog-card {
  width: calc(25% - 40px);
  margin-top: 30px;
}

.blog-card img {
  width: 100%;
}

.tab-content-blog {
  display: none;
}

.tab-content-blog.active {
  display: block;
}

.blog-listsubtitle::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../images/icon/min-read.svg) no-repeat center;
  background-size: contain;
  left: 0px;
}

.blog-freeDomain {
  display: flex;
  justify-content: center;
}

.blog-freeDomainInn {
  display: flex;
  justify-content: center;
}

.blog-popular {
  display: flex;
  justify-content: center;
}

.blog-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 6px 8px;
  background-color: #def7ea;
  display: inline-block;
  margin-top: 8px;
  border-radius: 4px;
}

.blogSerachInn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  border: none;
}

.blogSerach {
  width: 630px;
  border: 1px solid var(--blue-color);
  padding: 12px;
  border-radius: 10px 0 0 10px;
}

.blogSerachOut {
  display: flex;
  justify-content: center;
}

.blogSerachBut {
  border: 1px solid var(--blue-color);
  padding: 10px 40px;
  background-color: var(--blue-color);
  border-radius: 0px 10px 10px 0;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
}

.categoryblog-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.categoryblog-card {
  width: calc(50% - 21px);
}

.categoryblog-card img {
  width: 100%;
}

.category-sidebar {
  position: absolute;
  top: auto;
  left: auto;
  width: 250px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 99;
  min-width: 220px;
}

.category-sidebar.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pagination-blog {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.pagination-blog a {
  text-decoration: none;
  color: var(--blue-color);
  font-size: 18px;
  padding: 4px 8px;
  transition: 0.2s;
  font-weight: 500;
}

.pagination-blog .page-blog.active {
  font-weight: 700;
}

.pagination-blog a:hover {
  color: #1e2bd8;
}

.pagination-blog .arrow {
  font-size: 20px;
}

.blogSingleOut {
  display: flex;
  justify-content: center;
}

.single-blogInn-img img {
  width: 100%;
}

.single-blogInn-img {
  display: flex;
  justify-content: center;
}

.blogSingletext h2 {
  font-size: 30px;
  color: var(--secondary-color);
  margin-top: 50px;
  font-weight: 600;
}

.blogSingletext p {
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 10px;
  font-weight: 400;
  line-height: 22px;
}

.blogSingletext-blue {
  font-size: 24px;
  color: #3d52ef;
  margin-top: 20px;
  font-weight: 600;
}

.blogSingletext-Bold {
  font-size: 18px;
  color: var(--secondary-color);
  margin-top: 15px;
  font-weight: 600;
}

.category-sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.category-sidebar .sidebar-header h3 {
  font-size: 16px;
  margin: 0;
  color: #102d51;
}

.category-sidebar .close-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #102d51;
}

.category-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.category-sidebar ul li {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.category-sidebar ul li:hover {
  background: #f5f7ff;
  color: #102d51;
}

.category-sidebar li.active {
  background: #f5f7ff;
  color: #102d51;
}

.blogSingletext li {
  list-style-type: disc;
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 10px;
  font-weight: 400;
  line-height: 22px;
}

.blogSingletext li strong {
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 10px;
  font-weight: 600;
  line-height: 22px;
}

.blogSingletext h5 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-top: 12px;
  font-weight: 600;
}

.blogSingletext h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-top: 20px;
  font-weight: 600;
}

.blogSingletext h4 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-top: 25px;
  font-weight: 600;
}

.blogSingletext p a {
  text-decoration: none;
  color: var(--blue-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.blogSingletext li a {
  text-decoration: none;
  color: var(--blue-color);
  font-weight: 500;
  font-size: 16px;
}

.blogSingletext table td b {
  font-size: 18px;
  color: var(--secondary-color);
  margin-top: 12px;
}

.blogSingletext table td span {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 22px;
}

.blogSingletext table td strong {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}

.blogSingletext p strong {
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 10px;
  font-weight: 600;
}

.n8nOut {
  display: flex;
  justify-content: center;
  background-image: url(../images/n8nbackground.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.n8nImgOut {
  display: flex;
  justify-content: center;
}

.n8nbggradient {
  border: 1px solid transparent;
  background: linear-gradient(to right, #01e47b, #03c3f0) border-box, linear-gradient(to right, #01e47b, #03c3f0) padding-box;
}

.n8n-textgradient {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #01e47b, #03c3f0) border-box;
  border: 1px solid transparent;
  color: #fff;
}

.n8n-textInn {
  background: linear-gradient(to right, #01e47b, #03c3f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}

.n8nArchitech {
  display: flex;
  justify-content: center;
}

.n8nArchitechList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.n8nArchitechListInn {
  width: calc(33.33% - 50px);
}

.n8nArchitechListBox {
  position: relative;
  padding-left: 45px;
}

.n8nArchitechListBox::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../images/icon/n-litespeed.svg) no-repeat center;
  background-size: contain;
  left: 0px;
  transform: translate(0px, 50%);
}

.n8nArchitech-txt {
  font-size: 20px;
  font-weight: 600;
  color: #000845;
}

.n8nArchitech-para {
  font-size: 17px;
  font-weight: 400;
  color: #102d51;
  margin-top: 13px;
}

.n8nHosting {
  display: flex;
  justify-content: center;
}

.n8nHostingInn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.n8nHostingList .n8nHostingListWrap {
  width: calc(50% - 10px);
  padding: 50px;
  border-radius: 35px;
  border: 1px solid #acf4e7;
}

.n8nHostingList .n8nHostingListWrap:nth-child(3) {
  width: calc(100% - 10px);
}

.n8nHostingInn-Lft {
  width: calc(35% - 15px);
  border-radius: 35px;
}

.n8nHostingInn-LftInn {
  background-image: url(../images/nhostingbg.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 140px 50px;
}

.n8nHostingInn-Rgt {
  width: calc(65% - 15px);
}

.n8nHostingList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.n8nHostingInn-LftImg {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.n8nHostingInn-RgtIcon {
  display: flex;
  justify-content: center;
}

.n8nHostingTxttitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin: 20px 0;
}

.n8nHostingTxtpara {
  font-size: 15px;
  color: var(--secondary-color);
  text-align: center;
  line-height: 21px;
  font-weight: 400;
}

.n8nAutomatn {
  display: flex;
  justify-content: center;
}

.AutomaionLft {
  background-image: url(../images/migratebg.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 70px 0;
}

.AutomaionLft {
  width: calc(45% - 15px);
  display: flex;
  justify-content: center;
}

.AutomaionRgt {
  width: calc(55% - 15px);
  padding-right: 75px;
}

.n8nAutomatnInn {
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.AutomaionTitle {
  font-size: 30px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 25px;
}

.Automaionsubtitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 25px;
}

.AutomaionPara {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-top: 25px;
}

.n8nhighlight {
  display: flex;
  justify-content: center;
}

.n8nhighlightList {
  display: flex;
  justify-content: center;
}

.n8nborder {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, rgba(1, 228, 123, 0.4), rgba(3, 195, 240, 0.4)) border-box;
}

.n8nbgcolor {
  background: linear-gradient(to right, #e6fff4, #c0f3ff);
}

.n8nlightBgcolor {
  background: linear-gradient(to right, rgba(230, 255, 244, 0.5), rgba(192, 243, 255, 0.5));
  border: 1px solid #acf4e7;
}

.n8nFeature {
  display: flex;
  justify-content: center;
}

.PlanN8nstep-robot {
  position: absolute;
  top: 15%;
  left: 3%;
}

.n8nButn {
  display: flex;
  width: 70%;
  justify-content: end;
  margin-top: 40px;
}

.n8nData-secInn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 35px;
}

.n8nData-sec {
  display: flex;
  justify-content: center;
}

.n8nData-secLft {
  width: calc(40% - 15px);
  display: flex;
  justify-content: center;
  padding: 35px 0;
}

.n8nData-secRgt {
  width: calc(60% - 15px);
  padding-right: 70px;
}

.n8nData-secInn {
  background-image: url(../images/nn-securitybg.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  border-radius: 35px;
}

.datasecTxt-title {
  font-size: 46px;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.datasecTxt-para {
  font-size: 22px;
  color: #102d51;
  font-weight: 400;
  line-height: 34px;
  padding-top: 28px;
}

.n8n-ai-flow-sectionInn {
  background-image: url("../images/bg-grid.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  padding-bottom: 30px;
}

.n8n-ai-flow-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 65px;
  position: relative;
}

.n8n-ai-flow-left {
  position: relative;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.n8n-ai-entry-node {
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(1, 228, 123, 0.7);
  position: relative;
  background: #ffffff8a;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.n8n-ai-entry-node::after {
  content: "";
  position: absolute;
  right: -52px;
  top: 50%;
  width: 51px;
  height: 1px;
  background: linear-gradient(to right, #01e47b, #03c3f0);
  transform: translateY(-50%);
}

.n8n-ai-agent-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 5px;
  border: 1px solid rgba(1, 228, 123, 0.65);
  color: #001845;
  background: #ffffff8a;
}

.n8n-ai-agent-icon {
  font-size: 20px;
}

.n8n-ai-agent-label {
  font-size: 18px;
  font-weight: 500;
  color: #001845;
}

.n8n-ai-agent-pill::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 90px;
  height: 1px;
  background: linear-gradient(to right, #01e47b, #03c3f0);
  transform: translateY(-50%);
}

.n8n-ai-flow-right::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 75px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #03c3f0;
  border-bottom: 1px solid #03c3f0;
  transform: rotate(-45deg);
}

.n8n-ai-flow-right {
  position: relative;
  flex: 1;
}

.n8n-ai-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.n8n-ai-step-connector {
  position: relative;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #01e47b, #03c3f0);
  top: -1px;
}

.n8n-ai-step-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #03c3f0;
  border-bottom: 1px solid #03c3f0;
  transform: translateX(-50%) rotate(45deg);
}

.n8n-ai-step-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(1, 228, 123, 0.25);
  color: #001845;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

.n8n-ai-step-number {
  font-size: 100px;
  line-height: 1;
  font-weight: 600;
  color: #01c689;
  background: linear-gradient(to right, #01e47b, #03c3f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n8n-ai-step-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: #000845;
}

.n8n-ai-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 19px;
  color: #123055;
  margin-top: 12px;
}

.n8n-ai-step-content {
  padding: 30px 0px;
}

.faq_questn_card.n8nfaq::before {
  background-image: url(../images/icon/n8nfaqimg.svg);
}

.description.n8n-faqgradient-text {
  background: linear-gradient(to right, #01e47b, #03c3f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.noborder {
  border: none;
}

.builAI-title .bannerCngC {
  color: #ea4b71;
}

.service-box.hovern8n:hover {
  box-shadow: none;
  border: none;
  transform: translateY(-4px);
  border: none;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.page-numbers {
  padding: 0 8px;
  color: #102d51;
  font-weight: 500;
}

.page-numbers.current {
  color: #3d52ef;
  font-weight: 500;
}

.singleBlogInnerInn {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.singleBlogInner-left {
  width: 150px;
  position: sticky;
  top: 120px;
  flex-shrink: 0;
}

.singleBlogInner-tableCont {
  width: 250px;
  position: sticky;
  top: 120px;
  flex-shrink: 0;
}

.singleBlogInner-Rgt {
  flex: 1;
  min-width: 0;
}

.blogSingletext figure.wp-block-table {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.blogSingletext figure.wp-block-table table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
}

.blogSingletext table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.blogSingletext table th {
  font-weight: 600;
}

.blogSingletext table th,
.blogSingletext table td {
  border: 1px solid #d0d7de;
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.blogSingletext table tr:first-child td {
  background-color: #f5f7fa;
  font-weight: 600;
  text-align: center;
}

.blogSingletext table tr:nth-child(even) td {
  background-color: #fafafa;
}

.table-ofcontent-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 15px;
  color: #2a7aff;
}

.Author-NameInn {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.Author-photo img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.Author-intro {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c0c0c0;
  margin-top: 10px;
}

.Author-introInn {
  font-size: 14px;
  line-height: 20px;
}

.blog-toc {
  background: #eff1ff;
  border: 1px solid #eff1ff;
  padding: 16px 10px;
  border-radius: 10px;
  position: sticky;
  top: 0px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 6px;
  align-self: flex-start;
}

.blog-toc::-webkit-scrollbar {
  width: 4px;
}

.blog-toc::-webkit-scrollbar-thumb {
  background: #2a7aff;
  border-radius: 4px;
}

.blog-toc ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.blog-toc li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}

.blog-toc a {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.blog-toc a:hover {
  text-decoration: underline;
}

.blog-toc a.active {
  color: #2a7aff;
  font-weight: 600;
}

.blog-toc li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.singleBlogStickyLayout {
  position: relative;
  overflow: visible;
}

.singleBlogInner-sidebarWrap {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 0px;
  align-self: flex-start;
}

.BlogSecwrapperInn {
  width: 1100px;
}

.BlogSecwrapper {
  display: flex;
  justify-content: center;
}

.blogMainImg .blogHeadImg {
  height: 450px;
}

.blogMainImg .blogsingleImg {
  width: 100%;
}

.blogHyperlink-word {
  color: #000845;
}

.blogHyperlink-word:hover {
  color: var(--blue-color);
  transition: color 0.2s ease;
}

#tawkchat-container {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 400px;
}

.mt4bg-color {
  background: #eff1ff;
  color: var(--secondary-color);
}

.mt4-table.comparison-table th,
.mt4-table.comparison-table td {
  color: var(--secondary-color);
}

.mt4-table.comparison-table thead tr th {
  color: var(--secondary-color);
}

.step-numberLogo.mt4Number {
  color: var(--blue-color);
}

.Export_Content-changeTil.mt4absolutespace {
  margin-bottom: 0px;
}


.blogMainNewex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.blogMainTextnew {
  width: calc(50% - 25px);
}

.blogMainImgnew {
  width: calc(50% - 25px);
}

.blogMainImgnew .newblofetureimg .blog-featured-img {
  border-radius: 20px;
}

/* h200 page */
.BannerBut_primary.whiteButhundred {
  color: #03142D;
  background-color: #ffffff;
  border: none;
}

.hundredPadding {
  padding: 0 75px;
}

.gpu-2hundredwrapInn {
  display: flex;
  justify-content: center;
}

.gpu-2hundredInn {
  padding-top: 30px;
}

.gpu-2hundredPara {
  color: #DBDBDB;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  padding-top: 18px;
}

.hundred2Span {
  color: #7EBD01;
}

.gpu-2hundredfeature {
  display: flex;
  justify-content: center;
}

.gpu-2hundredfeture-List {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.gpu-2hundredfeture-ListWrap {
  width: calc(33.33% - 45px);
}

.gpu-2hundredfeture-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.gpu-2hundredfeture-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #DBDBDB;
  padding-top: 13px;
  line-height: 21px;
}

.gpu-2hundred_mainTitle {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.gpu-2hundredfeture-ListInn {
  position: relative;
}

.gpu-2hundredfeture-ListInn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  background: url("../images/icon/feature-tick-hundred.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: -38px;
  top: 5px;
}

.Gpu-Primary.h200 {
  background: linear-gradient(to right, #007BEF, #17C1FF);
}

.Gpu-Primary.h200 span {
  background-color: #03142d;
}

.gpu-2hundred {
  background: url("../images/nvidia-hundredhero-new.webp") no-repeat center top;
  height: 700px;
}

.gpu-2hundSecurityWrapOut {
  position: absolute;
}

.gpu-2hundSecurityWrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.gpu-2hundSecurityInn {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  width: 80%;
}

.gpu-2hundSecurityPara {
  color: #DBDBDB;
  font-size: 18px;
  font-weight: 500;
  width: calc(40% - 80px);
}

.LftBanner_heading.hundred-guardian {
  width: calc(60% - 20px);
}

.gpu-2hundSecurity-img {
  display: flex;
  justify-content: center;
}

/* .gpu-2hundSecurity-img img{width: 100%;} */
.gpu-2hundIntellect {
  display: flex;
  justify-content: center;
}

.gpu-2hundIntellectInn {
  display: flex;
  justify-content: center;
  padding: 50px;
  background: linear-gradient(to right, #03244a, #062e4c);
  gap: 80px;
  align-items: center;
  border-radius: 35px;
}

.gpu-2hundIntellectImg {
  width: calc(50% - 35px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gpu-2hundIntellectTxt {
  width: calc(50% - 35px);
}

.gpu-2hundIntellect-title {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.gpu-2hundIntellect-color {
  font-size: 26px;
  font-weight: 600;
  background: linear-gradient(to right, #007BEF, #17C1FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 25px;
}

.gpu-2hundIntellect-para {
  font-size: 16px;
  color: #DBDBDB;
  padding-top: 25px;
  line-height: 21px;
}

.gpu-2hundredfeture-subtitle.center {
  text-align: center;
}

.gpu-2hundred-best {
  display: flex;
  justify-content: center;
}

.gpu-2hundred-bestListWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.gpu-2hundred-bestListInn {
  width: calc(50% - 25px);
  background-color: #102038;
  border-radius: 35px;
  padding: 40px;
  position: relative;
  z-index: 2;
  border: 1px solid transparent;
}

.hundred-bestListTitle {
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  padding-bottom: 18px;
  text-align: center;
}

.hundred-bestListsubtitle {
  font-size: 15px;
  color: #DBDBDB;
  font-weight: 400;
  text-align: center;
  line-height: 21px;
}

.hundred-bestListImg {
  display: flex;
  justify-content: center;
  padding-bottom: 17px;
}

.gpu-2hundred-best {
  background: url("../images/gpu-hundredbestbg.webp") no-repeat center bottom;
  position: relative;
  z-index: 0;
}

.gpu-2hundred-bestListInn:hover {
  background: linear-gradient(to right, #03244a, #062e4c);
  border: 1px solid #062e4c;
}

.BlueLine_stripe.htwohundred {
  background: linear-gradient(to right, #007BEF, #17C1FF);
}

.Gpu-supportfrst {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #102038;
  border-radius: 35px;
  padding: 40px;
  border: 1px solid #EFF1FF42;
}

.Gpuhundred-supor {
  display: flex;
  justify-content: center;
}

.Gpu-supportfrstImg {
  display: flex;
  justify-content: center;
}

.Gpu-supportList-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

.Gpu-supportList-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #DBDBDB;
  padding-top: 18px;
}

.Gpu-supportfrstTxt {
  padding: 0 50px;
}

.Gpu-supportList-title:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  background: url("../images/icon/gpu-support-hundred.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: -20px;
  top: 5px;
}

.Gpu-supportsend {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.Gpu-supportfrstTxt.gpuhundred2nd {
  background: linear-gradient(to right, #03244a, #062e4c);
  border-radius: 35px;
  padding: 50px;
}

.gpuhundred2ndImg {
  padding-bottom: 37px;
}

.gpu-hun2-comparison-card {
  width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  background: #0c2238;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.gpu-hun2-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.gpu-hun2-comparison-table thead th {
  padding: 20px 25px;
  font-weight: 500;
  font-size: 16px;
  background: #0f2a46;
  color: #DBDBDB;
  text-align: left;
}

.gpu-hun2-comparison-table tbody td {
  padding: 20px 25px;
  font-size: 15px;
  border-top: 1px solid #0F2E56;
  color: #DBDBDB;
  font-weight: 500;
}

.gpu-hun2-comparison-table tbody tr:hover {
  background: rgba(23, 193, 255, 0.05);
  transition: 0.3s ease;
}

.gpu-hun2-card-header {
  padding: 22px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #007BEF, #17C1FF);
  color: #ffffff;
}

.gpu-2hundredTable {
  display: flex;
  justify-content: center;
}

.gpu-hun2-comparison-table tbody td:nth-child(2),
.gpu-hun2-comparison-table tbody td:nth-child(2) {
  color: #FFFFFF;
  font-weight: 600;
}

.gpu-hun2-comparison-table tbody td:nth-child(3),
.gpu-hun2-comparison-table tbody td:nth-child(3) {
  color: #DBDBDB;
  font-weight: 400;
}

.gpu-hun2-comparison-table thead th:nth-child(2),
.gpu-hun2-comparison-table thead th:nth-child(2) {
  color: #FFFFFF;
  font-weight: 600;
}

.gpu-hun2-comparison-table thead th:nth-child(3),
.gpu-hun2-comparison-table thead th:nth-child(3) {
  color: #DBDBDB;
  font-weight: 400;
}

@media (max-width:768px) {
  .gpu-hun2-comparison-card {
    width: 100%;
  }

  .gpu-hun2-comparison-table th,
  .gpu-hun2-comparison-table td {
    padding: 12px;
    font-size: 13px;
  }
}

.gpu-2hundred-concern {
  display: flex;
  justify-content: center;
}

.gpu-2hundred-concernInn {
  display: flex;
  justify-content: center;
}

.gpu-2hundred-concernInnwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  background: linear-gradient(to right, #03244a, #062e4c);
  padding: 50px 90px;
  border-radius: 35px;
  gap: 50px;
}

.hundred-concernLft {
  width: calc(40% - 25px);
  display: flex;
  justify-content: center;
}

.hundred-concernRgt {
  width: calc(60% - 25px);
}

.hundred-concernRgtSubtitle {
  font-size: 25px;
  color: #DBDBDB;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-top: 10px;
  text-align: center;
}

.faq_questn_card.gpuhundred::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background-image: url(../images/icon/tick-icon-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.BannerBut_primary.h200MigrateBut {
  background: linear-gradient(to right, #007BEF, #17C1FF);
}

.BannerBut_primary:hover {
  transform: translateY(-4px);
}

.gpu-2hundSecurityExt {
  display: flex;
  justify-content: center;
}

/* sitemap */
.sitemapOut {
  display: flex;
  justify-content: center;
}

.siteMaptitle {
  font-size: 26px;
  font-weight: 600;
  color: #000845;
  margin-bottom: 25px;
  text-align: center;
  padding: 15px 0;
  border-radius: 10px;
}

.siteMapList-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.siteMapList-item {
  width: calc(33% - 20px);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

.siteMapList-item:hover {
  border: 1px solid #2A7FFF;
  color: #2A7FFF;
}

.siteMapList-item-title {
  font-size: 18px;
  font-weight: 500;
  color: #000845;
  text-align: center;
  width: 100%;
  float: left;
  padding: 12px;
}

.siteMapList-item:hover .siteMapList-item-title {
  color: #2A7FFF;
}

.sitemapInner-wrap {
  margin-top: 50px;
}

/* Review Page */
.review-page {
  display: flex;
  justify-content: center;
}

.review-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-pagecustomer {
  display: flex;
  justify-content: center;
}

.review-customervideowrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.review-customervideowrapList {
  width: calc(33% - 20px);
  display: flex;
  align-items: center;
}

.viewAll-video {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  color: #3D52EF;
}

.viewAll-videoOut {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.textreview-page {
  display: flex;
  justify-content: center;
  background-color: #EFF1FF;
}

.textreview-pageimg {
  display: flex;
  justify-content: center;
}

.textreview-pagetitle {
  display: flex;
  justify-content: center;
}

.textreview-pagetitlewrap {
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.textreview-containerInn {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.textreview-cardLrg {
  width: calc(44% - 5px);
}

.textreview-cardsmlOut {
  width: calc(56% - 5px);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.textreview-cardsml {
  width: calc(50% - 5px);
}

.textreview-cardInn {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
}

/* .textreview-avatar{width:40px;height:40px;border-radius:50%;display:inline-block;} */
.textreview-cardnameOut {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.textreview-cardtext {
  font-size: 14px;
  color: #000845;
  line-height: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #dbdbdb;
  height: 180px;
}

.pgreviewStarOut {
  display: flex;
  justify-content: space-between;
}

.stars-inner.green {
  color: #00B67A;
}

.textreview-cardname {
  font-size: 18px;
  font-weight: 600;
  color: #000845;
  font-style: italic;
}

.blue-avatar {
  background-color: #4D94CF;
}

.green-avatar {
  background-color: #4DCBCF;
}

.reviewPgOut {
  display: flex;
  justify-content: center;
}

.reviewPgInn-Img {
  display: flex;
  justify-content: center;
}

.reviewPgInn {
  background-image: url(../images/review-pgherobg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reviewPgInnWrap {
  display: flex;
  justify-content: center;
}

.services-lovedOut {
  display: flex;
  justify-content: center;
}

.services-lovedListWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.services-lovedList {
  width: calc(33% - 20px);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.services-lovedCardhead {
  font-size: 24px;
  font-weight: 600;
  color: #000845;
  text-align: center;
}

.services-lovedCardprice {
  font-size: 18px;
  font-weight: 500;
  color: #102D51;
  text-align: center;
}

.services-lovedList:hover .services-lovedCardprice {
  color: #2A7FFF;
}

.services-lovedList:hover {
  border: 1px solid #2A7FFF;
}

.review-connectOut {
  display: flex;
  justify-content: center;
}

.search-btn.whatsApptrasBg {
  color: #000845;
  background-color: transparent;
  border: 1px solid #000845;
}

.gpu-2hundred.deeplearning-hero {
  background-image: url("../images/deeplearning-hero.webp");
}

.gpu-2hundredfeture-ListInn.deepLearning-feature {
  position: relative;
}

.gpu-2hundredfeture-ListInn.deepLearning-feature::before {
  background: url("../images/icon/feature-tick-deeplearning.svg") no-repeat center center;
}

.gpu-2hundIntellectInn.deeplearning-future {
  background: linear-gradient(to right, #06073e, #0d0c3f);
}

.gpu-2hundred-bestListInn.deeplearning-gpu {
  background-color: #13143a;
}

.gpu-2hundred-bestListInn.deeplearning-gpu:hover {
  background: linear-gradient(to right, #06073e, #0d0c3f);
  border: 1px solid #171391;
}

.BlueLine_stripe.deeplearningstrip {
  background: linear-gradient(to right, #0a14db, #5949e2);
}

.Gpu-supportfrstTxt.deeplearning2nd {
  background: linear-gradient(to right, #06073e, #0d0c3f);
  border-radius: 35px;
  padding: 50px;
  border: 1px solid #171391;
}

.Gpu-supportfrst.deeplearning-first {
  background-color: #13143a;
  border: 1px solid #EFF1FF42;
}

.gpu-hun2-card-header.deeplearningtable {
  background: linear-gradient(to right, #0a14db, #5949e2);
}

.VPS_priceCardList_Wrap .Gpu-Primary.deeplearningBg span {
  color: #FFFFFF;
  background-color: #05062d;
}

.VPS_priceCardList_Wrap:hover .Gpu-Primary.deeplearningBg span {
  background: linear-gradient(to right, #0a14db, #5949e2);
}

.VPS_priceCardList_Wrap .Gpu-Primary.deeplearningBg {
  background: linear-gradient(to right, #0a14db, #5949e2);
  border: none;
}

.gpu-hun2-comparison-card.deeplearning-card {
  background-color: #13143a;
}

.gpu-hun2-comparison-table.deeplearning-table thead th {
  background-color: #13143a;
}

.gpu-hun2-comparison-table.deeplearning-table tbody tr:hover {
  background: #13143a;
  transition: 0.3s ease;
}

.faq_questn_card.deepLearning-faq::before {
  background-image: url(../images/icon/deepfaqicon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.gpu-2hundred-concernInnwrap.deeplearning-concern {
  background: linear-gradient(to right, #06073e, #0d0c3f);
}

.BannerBut_primary.deepMigrateBut {
  background: linear-gradient(to right, #0a14db, #5949e2);
  border: 1px solid #171391;
}

.gpu-2hundIntellect-color.deepAI-future {
  background: linear-gradient(to right, #0a14db, #5949e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dedicaPlanBut-Wrap.deepplanBut::before {
  background: #171391;
}

.Gpu-supportListWrapInn {
  padding-top: 30px;
  padding-left: 20px;
}

.deep-supportList-title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  position: relative;
}

.deep-supportList-title:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  background: url(../images/icon/gpu-support-hundred.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: -25px;
  top: 5px;
}

.Gpu-supportsendInn {
  display: flex;
}

.sliderreviewPlatOut {
  display: flex;
  justify-content: center;
}

.section_two_Title_green {
  color: #00B67A;
  font-size: 26px;
  font-weight: 600;
}

.reviewMailTxt {
  color: #2A7FFF;
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #DBDBDB;
}

.reviewMailInn {
  color: #2A7FFF;
  text-decoration: underline !important;
}

.ai-developinn-wrap {
  border-radius: 25px;
}

.ai-developRgt.reviewpgconnect img {
  border-radius: 0px;
}

.ai-developinn.reviewConnectBox {
  padding: 40px;
}

.pgreviewMigSectionOut {
  display: flex;
  justify-content: center;
}

.pgreviewMigSection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.pgreviewMigContent {
  width: calc(50% - 30px);
}

.pgreviewMigSliderWrap {
  width: calc(50% - 30px);
}

.pgreviewMigSlider {
  position: relative;
  height: 400px;
}

.pgreviewMigCard {
  position: absolute;
  width: 290px;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: .5s;
}

.pgreviewMigCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pgreviewMigCard:nth-child(1) {
  left: 0;
  z-index: 3;
  transform: scale(1);
}

.pgreviewMigCard:nth-child(2) {
  left: 200px;
  z-index: 2;
  transform: scale(.92);
  opacity: .8;
}

.pgreviewMigCard:nth-child(3) {
  left: 350px;
  z-index: 1;
  transform: scale(.85);
  opacity: .6;
}

.pgreviewMigControls {
  margin-top: 80px;
  display: flex;
  gap: 10px;
}

.pgreviewMigArrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: #2a7fff;
  cursor: pointer;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  background: transparent;
}

.pgreviewPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.pgreviewPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pgreviewPopupInner {
  position: relative;
  width: 500px;
  max-width: 95%;
}

.pgreviewPopupInner iframe {
  width: 100%;
  height: 750px;
  border-radius: 10px;
}

.pgreviewClose {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.review-platslider-wrap {
  position: relative;
  height: 260px;
}

.review-platslider-card {
  position: absolute;
  width: 340px;
  height: 240px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  transition: left .45s ease;
}

.review-platslider-controls {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 5px;
}

.sliderreviewPlatInn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-platsliderOut {
  width: calc(58% - 30px);
}

.sliderreviewPlatInn {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.review-plattextLft {
  width: calc(42% - 30px);
}

.review-platslider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.review-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.review-video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.review-video-inner {
  position: relative;
  width: 800px;
  max-width: 90%;
}

.review-video-inner iframe {
  width: 100%;
  height: 450px;
}

.review-video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.review-platslider-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #2a7fff;
  font-size: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.review-platslider-arrow:disabled {
  color: #cfcfcf;
  cursor: not-allowed;
}

/* Remove Client Testimonials */
.video_slider_Out, .testimonial-section { display: none !important; }
